diff --git a/projects/roctracer/script/check_trace.py b/projects/roctracer/script/check_trace.py index 085e5acd61..29baff8ab8 100644 --- a/projects/roctracer/script/check_trace.py +++ b/projects/roctracer/script/check_trace.py @@ -26,16 +26,21 @@ import argparse events_count = {} events_order = {} +events_order_r = {} trace2info = {} trace2info_filename = 'test/tests_trace_cmp_levels.txt' # Parses trace comparison config file and stores the info in a dictionary -def parse_trace_levels(trace_config_filename): +def parse_trace_levels(trace_config_filename, check_trace_flag): + status = 0 f = open(trace_config_filename) trace2info = {} for line in f: - if re.match('^# dummy',line): - return trace2info + if check_trace_flag == 0: + return (trace2info, status) + if (check_trace_flag == None) and re.match('^# dummy',line): + return (trace2info, status) + status = 1 lis = line.split(' ') trace_name = lis[0] comp_level = lis[1] @@ -70,16 +75,81 @@ def parse_trace_levels(trace_config_filename): trace2info[trace_name] = (comp_level,no_events_cnt,events2ignore,events2chkcnt,events2chkord,events2ch) - return trace2info + return (trace2info, status) -# check trace againt golden reference and returns 0 for pass, 1 for fail -def check_trace_status(tracename, verbose): - trace2info = parse_trace_levels(trace2info_filename) +# diff multi lines strings to show events differences +def diff_strings(cnt_r, cnt, metric): + global events_order_r + global events_order + + print ("\nDiffs (if any):\n") + if metric == 'cnt': + evt_ptrn = re.compile(r'(\w+).*$') + #cnt_ptrn = re.compile(r'(\w+): count (\d+)$') + for evt in cnt_r.split('\n'): + mevt_ptrn = evt_ptrn.match(evt) + #mcnt_ptrn = cnt_ptrn.match(evt) + if mevt_ptrn: + if not re.search(mevt_ptrn.group(1), cnt): + print ('+ ' + evt) + elif not re.search(evt, cnt): + print ('>D< ' + evt) + + for evt in cnt.split('\n'): + mevt_ptrn = evt_ptrn.match(evt) + #mcnt_ptrn = cnt_ptrn.match(evt) + if mevt_ptrn: + if not re.search(mevt_ptrn.group(1), cnt_r): + print ('- ' + evt) + if metric == 'or': + cnt_tid_r = 0 + for tid_r in sorted (events_order_r.keys()): + if len(events_order) == 0: + print ("+ " + str(events_order_r[tid_r]) + "\n\n") + continue + cnt_tid = 0 + for tid in sorted (events_order.keys()): + if cnt_tid == cnt_tid_r: + if events_order_r[tid_r] != events_order[tid]: + #print (">D< " + str(events_order_r[tid_r]) + "\n") + #print (">D< " + str(events_order[tid]) + "\n\n") + diff_cnt_r = 0 + found_diff_evt = 0 + for evt in events_order_r[tid_r]: + diff_cnt = 0 + for evt2 in events_order[tid]: + if diff_cnt == diff_cnt_r: + if evt != evt2: + print (">I< Difference starts at index: " + str(diff_cnt_r) + ", tid_r " + str(tid_r) + ", tid " + str(tid) + ", with evts " + evt + " and " + evt2 + "\n") + found_diff_evt = 1 + break + diff_cnt += 1 + diff_cnt_r += 1 + if found_diff_evt: break + if len(events_order_r[tid_r]) != len(events_order[tid]) and found_diff_evt == 0: + print (">I< Difference starts at index: " + str(min(len(events_order_r[tid_r]), len(events_order[tid]))) + ", with missing evts\n") + break + cnt_tid += 1 + cnt_tid_r += 1 + if len(events_order_r) == 0: + for tid in sorted (events_order.keys()): + print ("- " + str(events_order[tid]) + "\n") + +# check trace againt golden reference and returns 0 for pass, 1 for fail +def check_trace_status(tracename, verbose, check_trace_flag): + global events_order_r + global events_order + + (trace2info, status) = parse_trace_levels(trace2info_filename, check_trace_flag) if len(trace2info) == 0: - if verbose: + if status == 1: + print ("Error: no trace comparison info found in config file " + trace2info_filename + "\n") + print('FAILED!') + return 1 + if status == 0: print('PASSED!') - return 0 + return 0 trace = 'test/' + tracename + '.txt' rtrace = tracename + '.txt' @@ -92,7 +162,8 @@ def check_trace_status(tracename, verbose): events2chkord = events2chkord.rstrip('\n') events2ch = events2ch.rstrip('\n') else: - print('Trace ' + os.path.basename(tracename) + ' not found in ' + trace2info_filename + ', defaulting to level 0 i.e. no trace comparison') + print('Trace ' + os.path.basename(tracename) + ' not found in ' + trace2info_filename) + print('FAILED!') return 1 if no_events_cnt == '': @@ -105,34 +176,47 @@ def check_trace_status(tracename, verbose): events2chkord = '' if trace_level == '--check-none': - if verbose: - print('PASSED!') + print('PASSED!') return 0 if trace_level == '--check-diff': if filecmp.cmp(trace,rtrace): - if verbose: - print('PASSED!') + print('PASSED!') return 0 else: print('FAILED!') os.system('/usr/bin/diff --brief ' + trace + ' ' + rtrace) return 1 + metric = '' + if trace_level == '--check-count' or trace_level == '--check-events': + metric = 'cnt' + if trace_level == '--check-order': + metric = 'or' + cnt_r = gen_events_info(rtrace,trace_level,no_events_cnt,events2ignore,events2chkcnt,events2chkord,verbose) + events_order_r = {} + for tid in sorted (events_order.keys()) : + events_order_r[tid] = events_order[tid] cnt = gen_events_info(trace,trace_level,no_events_cnt,events2ignore,events2chkcnt,events2chkord,verbose) + if verbose: + print '\n' + rtrace + ':\n' + print cnt_r + print '\n' + trace + ':\n' + print cnt + diff_strings(cnt_r, cnt, metric) + if cnt_r == cnt: - if verbose: - print('PASSED!') + print('PASSED!') return 0 else: - if verbose: - print('FAILED!') + print('FAILED!') 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, trace_level, no_events_cnt, events2ignore, events2chkcnt, events2chkord, verbose): + global events_order metric = '' if trace_level == '--check-count' or trace_level == '--check-events': metric = 'cnt' @@ -150,18 +234,20 @@ def gen_events_info(tracefile, trace_level, no_events_cnt, events2ignore, events test_act_pattern = re.compile(r'\s*(\w+)\s+.*_id\((\d+)\)$') #' hipSetDevice correlation_id(1) time_ns(1548622357525055:1548622357542015) process_id(126283) thread_id(126283)' #' hcCommandKernel correlation_id(6) time_ns(1548622661443020:1548622662666935) device_id(0) queue_id(0)' - test_api_cb_pattern = re.compile(r'<(\w+)\s+.*tid\((\d+)\)>') + test_api_cb_pattern = re.compile(r'.*<(\w+)\s+.*tid\((\d+)\)>') # # below is roctx pattern # tool_record = re.compile(r'\d+:\d+\s+\d+:(\d+)\s+(\w+)') - # tool_api_record + # tool_api_record # 1822810364769411:1822810364771941 116477:116477 hsa_agent_get_info(, 17, 0x7ffeac015fec) = 0 - # tool_gpu_act_record + # tool_gpu_act_record # 3632773658039902:3632773658046462 0:0 hcCommandMarker:273 with open(tracefile) as f: for line in f: + if re.search("before", line) or re.search("after",line):#roctx before/after not real events + continue line=line.rstrip('\n') event = '' test_act_pattern_match = test_act_pattern.match(line) @@ -206,17 +292,17 @@ def gen_events_info(tracefile, trace_level, no_events_cnt, events2ignore, events if metric == 'or': for tid in sorted (events_order.keys()) : res = res + str(events_order[tid]) - if verbose: - print(res) 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) requiredNamed.add_argument('-v', action='store_true', help='debug info', required=False) +requiredNamed.add_argument('-ck', metavar='N', type=int, help='check trace 0|1', required=False) + args = vars(parser.parse_args()) if __name__ == '__main__': - sys.exit(check_trace_status(args['in'],args['v'])) + sys.exit(check_trace_status(args['in'],args['v'],args['ck'])) diff --git a/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp b/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp index 4a1b5a6e0b..cf91a571dd 100644 --- a/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp +++ b/projects/roctracer/test/MatrixTranspose_test/MatrixTranspose.cpp @@ -36,9 +36,15 @@ using namespace std; // roctracer extension API #include -const size_t msg_size = 512; -char* msg_buf = NULL; -char* message = NULL; +#ifdef __cplusplus +static thread_local const size_t msg_size = 512; +static thread_local char* msg_buf = NULL; +static thread_local char* message = NULL; +#else +static const size_t msg_size = 512; +static char* msg_buf = NULL; +static char* message = NULL; +#endif void SPRINT(const char* fmt, ...) { if (msg_buf == NULL) { msg_buf = (char*) calloc(msg_size, 1); @@ -259,24 +265,24 @@ void api_callback( if (domain == ACTIVITY_DOMAIN_ROCTX) { const roctx_api_data_t* data = (const roctx_api_data_t*)(callback_data); - fprintf(stdout, "\n", data->args.message); + fprintf(stdout, "rocTX <\"%s pid(%d) tid(%d)\">\n", data->args.message, GetPid(), GetTid()); return; } if (domain == ACTIVITY_DOMAIN_KFD_API) { const kfd_api_data_t* data = (const kfd_api_data_t*)(callback_data); - fprintf(stdout, "<%s id(%u)\tcorrelation_id(%lu) %s>\n", + fprintf(stdout, "<%s id(%u)\tcorrelation_id(%lu) %s pid(%d) tid(%d)>\n", 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", GetPid(), GetTid()); return; } const hip_api_data_t* data = (const hip_api_data_t*)(callback_data); - SPRINT("<%s id(%u)\tcorrelation_id(%lu) %s> ", + SPRINT("<%s id(%u)\tcorrelation_id(%lu) %s pid(%d) tid(%d)> ", roctracer_op_string(ACTIVITY_DOMAIN_HIP_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", GetPid(), GetTid()); if (data->phase == ACTIVITY_API_PHASE_ENTER) { switch (cid) { case HIP_API_ID_hipMemcpy: diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_ctest_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_ctest_trace.txt index 833753d134..528caffae3 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_ctest_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_ctest_trace.txt @@ -1,501 +1,502 @@ ++ LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_ctest # INIT ############################# # START (99) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (98) ############################# PASSED! # START (97) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (96) ############################# PASSED! # START (95) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (94) ############################# PASSED! # START (93) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (92) ############################# PASSED! # START (91) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (90) ############################# PASSED! # START (89) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (88) ############################# PASSED! # START (87) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (86) ############################# PASSED! # START (85) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (84) ############################# PASSED! # START (83) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (82) ############################# PASSED! # START (81) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (80) ############################# PASSED! # START (79) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (78) ############################# PASSED! # START (77) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (76) ############################# PASSED! # START (75) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (74) ############################# PASSED! # START (73) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (72) ############################# PASSED! # START (71) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (70) ############################# PASSED! # START (69) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (68) ############################# PASSED! # START (67) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (66) ############################# PASSED! # START (65) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (64) ############################# PASSED! # START (63) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (62) ############################# PASSED! # START (61) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (60) ############################# PASSED! # START (59) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (58) ############################# PASSED! # START (57) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (56) ############################# PASSED! # START (55) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (54) ############################# PASSED! # START (53) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (52) ############################# PASSED! # START (51) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (50) ############################# PASSED! # START (49) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (48) ############################# PASSED! # START (47) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (46) ############################# PASSED! # START (45) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (44) ############################# PASSED! # START (43) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (42) ############################# PASSED! # START (41) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (40) ############################# PASSED! # START (39) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (38) ############################# PASSED! # START (37) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (36) ############################# PASSED! # START (35) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (34) ############################# PASSED! # START (33) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (32) ############################# PASSED! # START (31) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (30) ############################# PASSED! # START (29) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (28) ############################# PASSED! # START (27) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (26) ############################# PASSED! # START (25) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (24) ############################# PASSED! # START (23) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (22) ############################# PASSED! # START (21) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (20) ############################# PASSED! # START (19) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (18) ############################# PASSED! # START (17) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (16) ############################# PASSED! # START (15) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (14) ############################# PASSED! # START (13) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (12) ############################# PASSED! # START (11) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (10) ############################# PASSED! # START (9) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (8) ############################# PASSED! # START (7) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (6) ############################# PASSED! # START (5) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (4) ############################# PASSED! # START (3) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (2) ############################# PASSED! # START (1) ############################# - - - - - - +rocTX <"before hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"after hipLaunchKernel pid(22834) tid(22834)"> +rocTX <"hipMemcpy pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> +rocTX <"(null) pid(22834) tid(22834)"> PASSED! # START (0) ############################# PASSED! diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_hip_flush_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_hip_flush_trace.txt index 5d8a96185b..27ef8e95f8 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_hip_flush_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_hip_flush_trace.txt @@ -1,20 +1,21 @@ -ROCTracer (pid=26066): ++ ROCP_FLUSH_RATE=100000 ./test/MatrixTranspose +ROCTracer (pid=1991): ROCTracer: trace control flush rate(100000us) +3802701299772587 HIP-trace() -ROCTracer (pid=26066): -ROCTracer: trace control flush rate(100000us) - HIP-trace() -Device name Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device name Device 687f ## Iteration (99) ################# -43934932418043:43934932456496 26066:26066 hipGetDeviceProperties() -43934934626423:43934934675542 26066:26066 hipMalloc(ptr(0x902800000) size(0x400000)) -43934934677103:43934934698784 26066:26066 hipMalloc(ptr(0x903000000) size(0x400000)) -43934934708976:43934940336620 26066:26066 hipMemcpy(dst(0x902800000) src(0x1384170) size(0x400000) kind(1)) -43934940338871:43934940338872 26066:26066 MARK(name(before HIP LaunchKernel)) -43935225511780:43935227349863 0:0 hcCommandKernel:6 -43935227358980:43935227395780 0:0 hcCommandMarker:8 +3802701304199730:3802701304207180 1991:1991 hipGetDeviceProperties(props=, device=0) +3802701305255618:3802701305368889 1991:1991 hipMalloc(ptr=0x7fce16e0dec3, size=4194304) +3802701305370969:3802701305429809 1991:1991 hipMalloc(ptr=0x7fffc1295178, size=4194304) PASSED! ## Iteration (98) ################# +3802701580515709:3802701582582904 0:0 CopyHostToDevice:4:1991 +3802701583225872:3802701584425191 0:0 KernelExecution:8:1991 +3802701583217109:3802701586447303 0:0 CopyDeviceToHost:10:1991 +3802701594795564:3802701596533727 0:0 CopyHostToDevice:11:1991 +3802701596646592:3802701597848875 0:0 KernelExecution:15:1991 +3802701596604988:3802701599522360 0:0 CopyDeviceToHost:17:1991 PASSED! ## Iteration (97) ################# PASSED! @@ -23,16 +24,6 @@ PASSED! ## Iteration (95) ################# PASSED! ## Iteration (94) ################# -43935243433550:43935245268113 0:0 hcCommandKernel:11 -43935245270936:43935245302936 0:0 hcCommandMarker:13 -43935261086822:43935262934346 0:0 hcCommandKernel:16 -43935262937310:43935262969310 0:0 hcCommandMarker:18 -43935278843800:43935280686843 0:0 hcCommandKernel:21 -43935280690009:43935280722009 0:0 hcCommandMarker:23 -43935296495925:43935298337528 0:0 hcCommandKernel:26 -43935298340338:43935298371858 0:0 hcCommandMarker:28 -43935314291986:43935316140949 0:0 hcCommandKernel:31 -43935316144062:43935316175422 0:0 hcCommandMarker:33 PASSED! ## Iteration (93) ################# PASSED! @@ -41,22 +32,34 @@ PASSED! ## Iteration (91) ################# PASSED! ## Iteration (90) ################# +3802701606826614:3802701608688328 0:0 CopyHostToDevice:18:1991 +3802701608781496:3802701609988668 0:0 KernelExecution:22:1991 +3802701608758548:3802701611510159 0:0 CopyDeviceToHost:24:1991 +3802701618702082:3802701620571865 0:0 CopyHostToDevice:25:1991 +3802701620675087:3802701621878110 0:0 KernelExecution:29:1991 +3802701620650876:3802701623502597 0:0 CopyDeviceToHost:31:1991 +3802701630690881:3802701632557164 0:0 CopyHostToDevice:32:1991 +3802701632661061:3802701633864973 0:0 KernelExecution:36:1991 +3802701632637885:3802701635182424 0:0 CopyDeviceToHost:38:1991 +3802701642392578:3802701644307152 0:0 CopyHostToDevice:39:1991 +3802701644410516:3802701645608650 0:0 KernelExecution:43:1991 +3802701644387082:3802701647064112 0:0 CopyDeviceToHost:45:1991 +3802701654288485:3802701656163049 0:0 CopyHostToDevice:46:1991 +3802701656267334:3802701657467098 0:0 KernelExecution:50:1991 +3802701656244070:3802701658916870 0:0 CopyDeviceToHost:52:1991 +3802701666450396:3802701668378780 0:0 CopyHostToDevice:53:1991 +3802701668482438:3802701669683832 0:0 KernelExecution:57:1991 +3802701668458481:3802701671148361 0:0 CopyDeviceToHost:59:1991 +3802701678631556:3802701680505490 0:0 CopyHostToDevice:60:1991 +3802701680609945:3802701681806894 0:0 KernelExecution:64:1991 +3802701680586811:3802701683591443 0:0 CopyDeviceToHost:66:1991 +3802701691032768:3802701692918102 0:0 CopyHostToDevice:67:1991 +3802701693021896:3802701694223438 0:0 KernelExecution:71:1991 +3802701692999202:3802701695886464 0:0 CopyDeviceToHost:73:1991 PASSED! ## Iteration (89) ################# -43935332066943:43935333908066 0:0 hcCommandKernel:36 -43935333911153:43935333942513 0:0 hcCommandMarker:38 -43935350038934:43935351880697 0:0 hcCommandKernel:41 -43935351883641:43935351915001 0:0 hcCommandMarker:43 -43935367793257:43935369638700 0:0 hcCommandKernel:46 -43935369641744:43935369673104 0:0 hcCommandMarker:48 -43935385528005:43935387375368 0:0 hcCommandKernel:51 -43935387378362:43935387409722 0:0 hcCommandMarker:53 -43935403309412:43935405152295 0:0 hcCommandKernel:56 -43935405155209:43935405186569 0:0 hcCommandMarker:58 PASSED! ## Iteration (88) ################# -43935421119359:43935422961442 0:0 hcCommandKernel:61 -43935422964474:43935422995834 0:0 hcCommandMarker:63 PASSED! ## Iteration (87) ################# PASSED! @@ -67,22 +70,34 @@ PASSED! ## Iteration (84) ################# PASSED! ## Iteration (83) ################# -43935438844897:43935440686660 0:0 hcCommandKernel:66 -43935440689713:43935440721393 0:0 hcCommandMarker:68 -43935456490502:43935458334505 0:0 hcCommandKernel:71 -43935458337617:43935458368977 0:0 hcCommandMarker:73 -43935474147631:43935475986514 0:0 hcCommandKernel:76 -43935475989587:43935476020947 0:0 hcCommandMarker:78 -43935491854358:43935492341878 0:0 hcCommandKernel:81 -43935492345644:43935492352044 0:0 hcCommandMarker:83 -43935508126004:43935508605044 0:0 hcCommandKernel:86 -43935508608028:43935508614588 0:0 hcCommandMarker:88 PASSED! ## Iteration (82) ################# -43935524418876:43935524907836 0:0 hcCommandKernel:91 -43935524910557:43935524917117 0:0 hcCommandMarker:93 PASSED! ## Iteration (81) ################# +3802701703288299:3802701705170783 0:0 CopyHostToDevice:74:1991 +3802701705274243:3802701706486156 0:0 KernelExecution:78:1991 +3802701705250604:3802701707936074 0:0 CopyDeviceToHost:80:1991 +3802701715184407:3802701716946440 0:0 CopyHostToDevice:81:1991 +3802701717062173:3802701718258234 0:0 KernelExecution:85:1991 +3802701717027281:3802701719895352 0:0 CopyDeviceToHost:87:1991 +3802701727144976:3802701729139460 0:0 CopyHostToDevice:88:1991 +3802701729244175:3802701730445125 0:0 KernelExecution:92:1991 +3802701729220511:3802701732165583 0:0 CopyDeviceToHost:94:1991 +3802701739387037:3802701741142680 0:0 CopyHostToDevice:95:1991 +3802701741249310:3802701742453815 0:0 KernelExecution:99:1991 +3802701741225710:3802701744149042 0:0 CopyDeviceToHost:101:1991 +3802701751388465:3802701753137668 0:0 CopyHostToDevice:102:1991 +3802701753243075:3802701754440321 0:0 KernelExecution:106:1991 +3802701753219589:3802701756153951 0:0 CopyDeviceToHost:108:1991 +3802701763443335:3802701765498080 0:0 CopyHostToDevice:109:1991 +3802701765603802:3802701766820456 0:0 KernelExecution:113:1991 +3802701765580171:3802701768590463 0:0 CopyDeviceToHost:115:1991 +3802701775866137:3802701777758951 0:0 CopyHostToDevice:116:1991 +3802701777862528:3802701779073255 0:0 KernelExecution:120:1991 +3802701777839322:3802701780544442 0:0 CopyDeviceToHost:122:1991 +3802701787979987:3802701790138553 0:0 CopyHostToDevice:123:1991 +3802701790243940:3802701791446371 0:0 KernelExecution:127:1991 +3802701790220103:3802701792896973 0:0 CopyDeviceToHost:129:1991 PASSED! ## Iteration (80) ################# PASSED! @@ -91,44 +106,47 @@ PASSED! ## Iteration (78) ################# PASSED! ## Iteration (77) ################# -43935540719417:43935541208217 0:0 hcCommandKernel:96 -43935541211437:43935541217997 0:0 hcCommandMarker:98 -43935556967811:43935557454211 0:0 hcCommandKernel:101 -43935557457796:43935557464356 0:0 hcCommandMarker:103 -43935573251751:43935573737511 0:0 hcCommandKernel:106 -43935573740418:43935573746978 0:0 hcCommandMarker:108 -43935589528260:43935590013700 0:0 hcCommandKernel:111 -43935590017484:43935590024044 0:0 hcCommandMarker:113 -43935605722549:43935606210549 0:0 hcCommandKernel:116 -43935606213595:43935606220155 0:0 hcCommandMarker:118 PASSED! ## Iteration (76) ################# -43935621981951:43935622472991 0:0 hcCommandKernel:121 -43935622476644:43935622483204 0:0 hcCommandMarker:123 PASSED! ## Iteration (75) ################# PASSED! ## Iteration (74) ################# PASSED! ## Iteration (73) ################# +3802701800291738:3802701802179392 0:0 CopyHostToDevice:130:1991 +3802701802285163:3802701803481223 0:0 KernelExecution:134:1991 +3802701802261733:3802701804931343 0:0 CopyDeviceToHost:136:1991 +3802701812337128:3802701814252581 0:0 CopyHostToDevice:137:1991 +3802701814356366:3802701815565464 0:0 KernelExecution:141:1991 +3802701814332902:3802701817015292 0:0 CopyDeviceToHost:143:1991 +3802701824392847:3802701826310401 0:0 CopyHostToDevice:144:1991 +3802701826415256:3802701827613539 0:0 KernelExecution:148:1991 +3802701826391761:3802701829071431 0:0 CopyDeviceToHost:150:1991 +3802701836291435:3802701838179779 0:0 CopyHostToDevice:151:1991 +3802701838283081:3802701839480623 0:0 KernelExecution:155:1991 +3802701838259290:3802701840931690 0:0 CopyDeviceToHost:157:1991 +3802701848294054:3802701850186618 0:0 CopyHostToDevice:158:1991 +3802701850293201:3802701851487632 0:0 KernelExecution:162:1991 +3802701850269869:3802701852937908 0:0 CopyDeviceToHost:164:1991 +3802701860182332:3802701862143417 0:0 CopyHostToDevice:165:1991 +3802701862248805:3802701863444865 0:0 KernelExecution:169:1991 +3802701862224967:3802701865141909 0:0 CopyDeviceToHost:171:1991 +3802701872353003:3802701874265587 0:0 CopyHostToDevice:172:1991 +3802701874371291:3802701875572092 0:0 KernelExecution:176:1991 +3802701874348307:3802701877019147 0:0 CopyDeviceToHost:178:1991 +3802701884267750:3802701886153054 0:0 CopyHostToDevice:179:1991 +3802701886259179:3802701887463536 0:0 KernelExecution:183:1991 +3802701886235615:3802701888914085 0:0 CopyDeviceToHost:185:1991 +3802701896155929:3802701898142244 0:0 CopyHostToDevice:186:1991 +3802701898246687:3802701899454155 0:0 KernelExecution:190:1991 +3802701898223504:3802701901145246 0:0 CopyDeviceToHost:192:1991 PASSED! ## Iteration (72) ################# PASSED! ## Iteration (71) ################# -43935638193139:43935638675859 0:0 hcCommandKernel:126 -43935638678816:43935638685216 0:0 hcCommandMarker:128 -43935654459215:43935654944496 0:0 hcCommandKernel:131 -43935654952142:43935654958862 0:0 hcCommandMarker:133 -43935670702708:43935671183508 0:0 hcCommandKernel:136 -43935671186548:43935671193108 0:0 hcCommandMarker:138 -43935686939367:43935687417768 0:0 hcCommandKernel:141 -43935687425608:43935687432168 0:0 hcCommandMarker:143 -43935703168285:43935703658045 0:0 hcCommandKernel:146 -43935703661042:43935703667442 0:0 hcCommandMarker:148 PASSED! ## Iteration (70) ################# -43935719453292:43935719944172 0:0 hcCommandKernel:151 -43935719947859:43935719954419 0:0 hcCommandMarker:153 PASSED! ## Iteration (69) ################# PASSED! @@ -139,20 +157,32 @@ PASSED! ## Iteration (66) ################# PASSED! ## Iteration (65) ################# -43935735726735:43935736208335 0:0 hcCommandKernel:156 -43935736212026:43935736218586 0:0 hcCommandMarker:158 -43935751921190:43935752410790 0:0 hcCommandKernel:161 -43935752414441:43935752421001 0:0 hcCommandMarker:163 -43935768118205:43935768606045 0:0 hcCommandKernel:166 -43935768608995:43935768615555 0:0 hcCommandMarker:168 -43935784195088:43935784686608 0:0 hcCommandKernel:171 -43935784689436:43935784695996 0:0 hcCommandMarker:173 -43935800433600:43935800920160 0:0 hcCommandKernel:176 -43935800923246:43935800929646 0:0 hcCommandMarker:178 +3802701908363640:3802701910282004 0:0 CopyHostToDevice:193:1991 +3802701910388686:3802701911593636 0:0 KernelExecution:197:1991 +3802701910364944:3802701913041924 0:0 CopyDeviceToHost:199:1991 +3802701920274197:3802701922171761 0:0 CopyHostToDevice:200:1991 +3802701922278125:3802701923475222 0:0 KernelExecution:204:1991 +3802701922254592:3802701924925132 0:0 CopyDeviceToHost:206:1991 +3802701932168496:3802701934142771 0:0 CopyHostToDevice:207:1991 +3802701934246976:3802701935438295 0:0 KernelExecution:211:1991 +3802701934223551:3802701937141613 0:0 CopyDeviceToHost:213:1991 +3802701944352056:3802701946257570 0:0 CopyHostToDevice:214:1991 +3802701946362997:3802701947574317 0:0 KernelExecution:218:1991 +3802701946339571:3802701949023790 0:0 CopyDeviceToHost:220:1991 +3802701956400665:3802701958316110 0:0 CopyHostToDevice:221:1991 +3802701958422590:3802701959641615 0:0 KernelExecution:225:1991 +3802701958399130:3802701961106280 0:0 CopyDeviceToHost:227:1991 +3802701968320724:3802701970208178 0:0 CopyHostToDevice:228:1991 +3802701970318670:3802701971521693 0:0 KernelExecution:232:1991 +3802701970295529:3802701972971609 0:0 CopyDeviceToHost:234:1991 +3802701980199792:3802701982142436 0:0 CopyHostToDevice:235:1991 +3802701982245928:3802701983440062 0:0 KernelExecution:239:1991 +3802701982222487:3802701985143188 0:0 CopyDeviceToHost:241:1991 +3802701992355642:3802701994267646 0:0 CopyHostToDevice:242:1991 +3802701994371730:3802701995578753 0:0 KernelExecution:246:1991 +3802701994348667:3802701997026937 0:0 CopyDeviceToHost:248:1991 PASSED! ## Iteration (64) ################# -43935816699624:43935817182024 0:0 hcCommandKernel:181 -43935817187808:43935817194368 0:0 hcCommandMarker:183 PASSED! ## Iteration (63) ################# PASSED! @@ -163,44 +193,47 @@ PASSED! ## Iteration (60) ################# PASSED! ## Iteration (59) ################# -43935832969893:43935833459333 0:0 hcCommandKernel:186 -43935833462980:43935833469540 0:0 hcCommandMarker:188 -43935849246062:43935851077905 0:0 hcCommandKernel:191 -43935851080726:43935851112246 0:0 hcCommandMarker:193 -43935866982020:43935868823143 0:0 hcCommandKernel:196 -43935868826123:43935868857483 0:0 hcCommandMarker:198 -43935884647922:43935886487605 0:0 hcCommandKernel:201 -43935886490571:43935886521931 0:0 hcCommandMarker:203 -43935902402549:43935904242232 0:0 hcCommandKernel:206 -43935904245256:43935904276776 0:0 hcCommandMarker:208 PASSED! ## Iteration (58) ################# -43935920062038:43935921897081 0:0 hcCommandKernel:211 -43935921900164:43935921931524 0:0 hcCommandMarker:213 PASSED! ## Iteration (57) ################# PASSED! ## Iteration (56) ################# +3802702004315971:3802702006430907 0:0 CopyHostToDevice:249:1991 +3802702006513343:3802702007718885 0:0 KernelExecution:253:1991 +3802702006490217:3802702009041896 0:0 CopyDeviceToHost:255:1991 +3802702018262184:3802702019943876 0:0 CopyHostToDevice:256:1991 +3802702020050568:3802702021249295 0:0 KernelExecution:260:1991 +3802702020026907:3802702022584386 0:0 CopyDeviceToHost:262:1991 +3802702029541468:3802702031219270 0:0 CopyHostToDevice:263:1991 +3802702031312763:3802702032510305 0:0 KernelExecution:267:1991 +3802702031289161:3802702033843490 0:0 CopyDeviceToHost:269:1991 +3802702040805082:3802702042480244 0:0 CopyHostToDevice:270:1991 +3802702042572785:3802702043776105 0:0 KernelExecution:274:1991 +3802702042549004:3802702045110673 0:0 CopyDeviceToHost:276:1991 +3802702052065204:3802702053741167 0:0 CopyHostToDevice:277:1991 +3802702053835958:3802702055052463 0:0 KernelExecution:281:1991 +3802702053813487:3802702056374447 0:0 CopyDeviceToHost:283:1991 +3802702063333568:3802702065014061 0:0 CopyHostToDevice:284:1991 +3802702065111999:3802702066319615 0:0 KernelExecution:288:1991 +3802702065088771:3802702067654340 0:0 CopyDeviceToHost:290:1991 +3802702074618962:3802702076284625 0:0 CopyHostToDevice:291:1991 +3802702076384443:3802702077569835 0:0 KernelExecution:295:1991 +3802702076360685:3802702078904404 0:0 CopyDeviceToHost:297:1991 +3802702085881125:3802702087555758 0:0 CopyHostToDevice:298:1991 +3802702087649675:3802702088847958 0:0 KernelExecution:302:1991 +3802702087626608:3802702090183277 0:0 CopyDeviceToHost:304:1991 +3802702097151929:3802702098830722 0:0 CopyHostToDevice:305:1991 +3802702098924116:3802702100140473 0:0 KernelExecution:309:1991 +3802702098901192:3802702101472621 0:0 CopyDeviceToHost:311:1991 PASSED! ## Iteration (55) ################# PASSED! ## Iteration (54) ################# PASSED! ## Iteration (53) ################# -43935937812069:43935939657512 0:0 hcCommandKernel:216 -43935939660443:43935939691803 0:0 hcCommandMarker:218 -43935955484682:43935957328525 0:0 hcCommandKernel:221 -43935957331582:43935957362942 0:0 hcCommandMarker:223 -43935973218819:43935975058982 0:0 hcCommandKernel:226 -43935975061799:43935975093159 0:0 hcCommandMarker:228 -43935990920488:43935992758411 0:0 hcCommandKernel:231 -43935992761237:43935992792757 0:0 hcCommandMarker:233 -43936008544679:43936010384682 0:0 hcCommandKernel:236 -43936010389056:43936010420416 0:0 hcCommandMarker:238 PASSED! ## Iteration (52) ################# -43936026228358:43936028068841 0:0 hcCommandKernel:241 -43936028072005:43936028103685 0:0 hcCommandMarker:243 PASSED! ## Iteration (51) ################# PASSED! @@ -211,20 +244,33 @@ PASSED! ## Iteration (48) ################# PASSED! ## Iteration (47) ################# -43936043785925:43936045629448 0:0 hcCommandKernel:246 -43936045632305:43936045663985 0:0 hcCommandMarker:248 -43936061522848:43936063368291 0:0 hcCommandKernel:251 -43936063371344:43936063402864 0:0 hcCommandMarker:253 -43936079184681:43936081031404 0:0 hcCommandKernel:256 -43936081034470:43936081065830 0:0 hcCommandMarker:258 -43936096912019:43936098088660 0:0 hcCommandKernel:261 -43936098091778:43936098098338 0:0 hcCommandMarker:263 -43936113848983:43936114331063 0:0 hcCommandKernel:266 -43936114334738:43936114341298 0:0 hcCommandMarker:268 +3802702108615424:3802702110296796 0:0 CopyHostToDevice:312:1991 +3802702110392443:3802702111600207 0:0 KernelExecution:316:1991 +3802702110368957:3802702112934696 0:0 CopyDeviceToHost:318:1991 +3802702119898217:3802702121579670 0:0 CopyHostToDevice:319:1991 +3802702121673899:3802702122873960 0:0 KernelExecution:323:1991 +3802702121650880:3802702124193909 0:0 CopyDeviceToHost:325:1991 +3802702131156331:3802702132834494 0:0 CopyHostToDevice:326:1991 +3802702132927702:3802702134121984 0:0 KernelExecution:330:1991 +3802702132904324:3802702135456513 0:0 CopyDeviceToHost:332:1991 +3802702142434925:3802702144099207 0:0 CopyHostToDevice:333:1991 +3802702144200141:3802702145401090 0:0 KernelExecution:337:1991 +3802702144175248:3802702146735777 0:0 CopyDeviceToHost:339:1991 +3802702153706898:3802702155385711 0:0 CopyHostToDevice:340:1991 +3802702155488005:3802702156685843 0:0 KernelExecution:344:1991 +3802702155464581:3802702158018890 0:0 CopyDeviceToHost:346:1991 +3802702164987312:3802702166668385 0:0 CopyHostToDevice:347:1991 +3802702166762069:3802702167965537 0:0 KernelExecution:351:1991 +3802702166739105:3802702169298644 0:0 CopyDeviceToHost:353:1991 +3802702176260016:3802702177933188 0:0 CopyHostToDevice:354:1991 +3802702178026430:3802702179223971 0:0 KernelExecution:358:1991 +3802702178002518:3802702180540757 0:0 CopyDeviceToHost:360:1991 +3802702187490789:3802702189167931 0:0 CopyHostToDevice:361:1991 +3802702189262737:3802702190474501 0:0 KernelExecution:365:1991 +3802702189239082:3802702191808141 0:0 CopyDeviceToHost:367:1991 +3802702198761922:3802702200425845 0:0 CopyHostToDevice:368:1991 PASSED! ## Iteration (46) ################# -43936130207157:43936130701557 0:0 hcCommandKernel:271 -43936130704352:43936130710912 0:0 hcCommandMarker:273 PASSED! ## Iteration (45) ################# PASSED! @@ -235,44 +281,47 @@ PASSED! ## Iteration (42) ################# PASSED! ## Iteration (41) ################# -43936146563182:43936147046062 0:0 hcCommandKernel:276 -43936147049151:43936147055711 0:0 hcCommandMarker:278 -43936162894728:43936163374888 0:0 hcCommandKernel:281 -43936163377872:43936163384592 0:0 hcCommandMarker:283 -43936179200342:43936179687382 0:0 hcCommandKernel:286 -43936179691196:43936179697756 0:0 hcCommandMarker:288 -43936195476376:43936195958456 0:0 hcCommandKernel:291 -43936195961532:43936195968092 0:0 hcCommandMarker:293 -43936211754702:43936212238862 0:0 hcCommandKernel:296 -43936212241993:43936212248553 0:0 hcCommandMarker:298 PASSED! ## Iteration (40) ################# -43936228051680:43936228530400 0:0 hcCommandKernel:301 -43936228534046:43936228540606 0:0 hcCommandMarker:303 PASSED! ## Iteration (39) ################# PASSED! ## Iteration (38) ################# +3802702200526879:3802702201738792 0:0 KernelExecution:372:1991 +3802702200502735:3802702203073505 0:0 CopyDeviceToHost:374:1991 +3802702210101096:3802702211781099 0:0 CopyHostToDevice:375:1991 +3802702211874278:3802702213070339 0:0 KernelExecution:379:1991 +3802702211851149:3802702214405528 0:0 CopyDeviceToHost:381:1991 +3802702221371170:3802702223046872 0:0 CopyHostToDevice:382:1991 +3802702223141537:3802702224348264 0:0 KernelExecution:386:1991 +3802702223118273:3802702225680452 0:0 CopyDeviceToHost:388:1991 +3802702232644404:3802702234313936 0:0 CopyHostToDevice:389:1991 +3802702234409358:3802702235607788 0:0 KernelExecution:393:1991 +3802702234385867:3802702236943196 0:0 CopyDeviceToHost:395:1991 +3802702243900787:3802702245580279 0:0 CopyHostToDevice:396:1991 +3802702245674663:3802702246878279 0:0 KernelExecution:400:1991 +3802702245651760:3802702248198969 0:0 CopyDeviceToHost:402:1991 +3802702255168930:3802702256847073 0:0 CopyHostToDevice:403:1991 +3802702256941454:3802702258155589 0:0 KernelExecution:407:1991 +3802702256918733:3802702259489683 0:0 CopyDeviceToHost:409:1991 +3802702266456174:3802702268121957 0:0 CopyHostToDevice:410:1991 +3802702268222984:3802702269419637 0:0 KernelExecution:414:1991 +3802702268198287:3802702270718936 0:0 CopyDeviceToHost:416:1991 +3802702277684438:3802702279355020 0:0 CopyHostToDevice:417:1991 +3802702279449065:3802702280656977 0:0 KernelExecution:421:1991 +3802702279425380:3802702281990519 0:0 CopyDeviceToHost:423:1991 +3802702288963001:3802702290626813 0:0 CopyHostToDevice:424:1991 +3802702290725647:3802702291916077 0:0 KernelExecution:428:1991 +3802702290702274:3802702293249973 0:0 CopyDeviceToHost:430:1991 +3802702300213905:3802702301888607 0:0 CopyHostToDevice:431:1991 PASSED! ## Iteration (37) ################# PASSED! ## Iteration (36) ################# PASSED! ## Iteration (35) ################# -43936244268347:43936244752187 0:0 hcCommandKernel:306 -43936244759707:43936244766107 0:0 hcCommandMarker:308 -43936260465746:43936260949906 0:0 hcCommandKernel:311 -43936260953781:43936260960181 0:0 hcCommandMarker:313 -43936276704103:43936277186183 0:0 hcCommandKernel:316 -43936277189819:43936277196379 0:0 hcCommandMarker:318 -43936292908367:43936293394927 0:0 hcCommandKernel:321 -43936293398665:43936293405065 0:0 hcCommandMarker:323 -43936309159941:43936309655781 0:0 hcCommandKernel:326 -43936309658663:43936309665223 0:0 hcCommandMarker:328 PASSED! ## Iteration (34) ################# -43936325491676:43936325977116 0:0 hcCommandKernel:331 -43936325980102:43936325986662 0:0 hcCommandMarker:333 PASSED! ## Iteration (33) ################# PASSED! @@ -283,20 +332,34 @@ PASSED! ## Iteration (30) ################# PASSED! ## Iteration (29) ################# -43936341856430:43936342339790 0:0 hcCommandKernel:336 -43936342342883:43936342349283 0:0 hcCommandMarker:338 -43936358065666:43936358544706 0:0 hcCommandKernel:341 -43936358548573:43936358554973 0:0 hcCommandMarker:343 -43936374226834:43936374711954 0:0 hcCommandKernel:346 -43936374714957:43936374721517 0:0 hcCommandMarker:348 -43936390393107:43936390876947 0:0 hcCommandKernel:351 -43936390879989:43936390886549 0:0 hcCommandMarker:353 -43936406478567:43936406968327 0:0 hcCommandKernel:356 -43936406971190:43936406977750 0:0 hcCommandMarker:358 +3802702301982442:3802702303186799 0:0 KernelExecution:435:1991 +3802702301959178:3802702304503997 0:0 CopyDeviceToHost:437:1991 +3802702311466108:3802702313146390 0:0 CopyHostToDevice:438:1991 +3802702313238825:3802702314439626 0:0 KernelExecution:442:1991 +3802702313215791:3802702315773720 0:0 CopyDeviceToHost:444:1991 +3802702322736361:3802702324399864 0:0 CopyHostToDevice:445:1991 +3802702324503098:3802702325721085 0:0 KernelExecution:449:1991 +3802702324478794:3802702327055594 0:0 CopyDeviceToHost:451:1991 +3802702334030715:3802702335709388 0:0 CopyHostToDevice:452:1991 +3802702335806620:3802702337014532 0:0 KernelExecution:456:1991 +3802702335783968:3802702338348468 0:0 CopyDeviceToHost:458:1991 +3802702345327399:3802702347004601 0:0 CopyHostToDevice:459:1991 +3802702347117082:3802702348318476 0:0 KernelExecution:463:1991 +3802702347074012:3802702349651691 0:0 CopyDeviceToHost:465:1991 +3802702356616483:3802702358289405 0:0 CopyHostToDevice:466:1991 +3802702358382881:3802702359585164 0:0 KernelExecution:470:1991 +3802702358359406:3802702360920335 0:0 CopyDeviceToHost:472:1991 +3802702367904117:3802702369585909 0:0 CopyHostToDevice:473:1991 +3802702369679903:3802702370875371 0:0 KernelExecution:477:1991 +3802702369656630:3802702372196308 0:0 CopyDeviceToHost:479:1991 +3802702379156600:3802702380837792 0:0 CopyHostToDevice:480:1991 +3802702380930326:3802702382134830 0:0 KernelExecution:484:1991 +3802702380907402:3802702383472292 0:0 CopyDeviceToHost:486:1991 +3802702390441713:3802702392106996 0:0 CopyHostToDevice:487:1991 +3802702392207713:3802702393417847 0:0 KernelExecution:491:1991 +3802702392183556:3802702394752325 0:0 CopyDeviceToHost:493:1991 PASSED! ## Iteration (28) ################# -43936422759883:43936423242603 0:0 hcCommandKernel:361 -43936423245282:43936423251842 0:0 hcCommandMarker:363 PASSED! ## Iteration (27) ################# PASSED! @@ -307,44 +370,47 @@ PASSED! ## Iteration (24) ################# PASSED! ## Iteration (23) ################# -43936439030746:43936439514266 0:0 hcCommandKernel:366 -43936439518052:43936439524612 0:0 hcCommandMarker:368 -43936455234140:43936455719900 0:0 hcCommandKernel:371 -43936455722741:43936455729141 0:0 hcCommandMarker:373 -43936471535617:43936473377220 0:0 hcCommandKernel:376 -43936473379982:43936473411502 0:0 hcCommandMarker:378 -43936489194662:43936491033065 0:0 hcCommandKernel:381 -43936491035944:43936491067304 0:0 hcCommandMarker:383 -43936506844418:43936508676581 0:0 hcCommandKernel:386 -43936508679657:43936508711177 0:0 hcCommandMarker:388 PASSED! ## Iteration (22) ################# -43936524587883:43936526420846 0:0 hcCommandKernel:391 -43936526423835:43936526455195 0:0 hcCommandMarker:393 PASSED! ## Iteration (21) ################# PASSED! ## Iteration (20) ################# +3802702401709737:3802702403387670 0:0 CopyHostToDevice:494:1991 +3802702403489293:3802702404695872 0:0 KernelExecution:498:1991 +3802702403465280:3802702406030229 0:0 CopyDeviceToHost:500:1991 +3802702412982171:3802702414646163 0:0 CopyHostToDevice:501:1991 +3802702414739104:3802702415951461 0:0 KernelExecution:505:1991 +3802702414715973:3802702417282642 0:0 CopyDeviceToHost:507:1991 +3802702424250984:3802702425925207 0:0 CopyHostToDevice:508:1991 +3802702426022614:3802702427240009 0:0 KernelExecution:512:1991 +3802702425999277:3802702428556726 0:0 CopyDeviceToHost:514:1991 +3802702435521608:3802702437497583 0:0 CopyHostToDevice:515:1991 +3802702437591756:3802702438798483 0:0 KernelExecution:519:1991 +3802702437567843:3802702440117692 0:0 CopyDeviceToHost:521:1991 +3802702447076184:3802702448752496 0:0 CopyHostToDevice:522:1991 +3802702448844326:3802702450040979 0:0 KernelExecution:526:1991 +3802702448821457:3802702451374905 0:0 CopyDeviceToHost:528:1991 +3802702458338087:3802702460115460 0:0 CopyHostToDevice:529:1991 +3802702460219046:3802702461421625 0:0 KernelExecution:533:1991 +3802702460192041:3802702462758090 0:0 CopyDeviceToHost:535:1991 +3802702469730872:3802702471408304 0:0 CopyHostToDevice:536:1991 +3802702471502923:3802702472699724 0:0 KernelExecution:540:1991 +3802702471478905:3802702474035724 0:0 CopyDeviceToHost:542:1991 +3802702481000815:3802702482659947 0:0 CopyHostToDevice:543:1991 +3802702482757759:3802702483952190 0:0 KernelExecution:547:1991 +3802702482734898:3802702485283566 0:0 CopyDeviceToHost:549:1991 +3802702492244298:3802702493917401 0:0 CopyHostToDevice:550:1991 +3802702494011385:3802702495222705 0:0 KernelExecution:554:1991 +3802702493988441:3802702496538570 0:0 CopyDeviceToHost:556:1991 PASSED! ## Iteration (19) ################# PASSED! ## Iteration (18) ################# PASSED! ## Iteration (17) ################# -43936542246761:43936544088524 0:0 hcCommandKernel:396 -43936544091588:43936544123268 0:0 hcCommandMarker:398 -43936559948159:43936561794402 0:0 hcCommandKernel:401 -43936561797239:43936561828759 0:0 hcCommandMarker:403 -43936577605213:43936579448896 0:0 hcCommandKernel:406 -43936579451894:43936579483254 0:0 hcCommandMarker:408 -43936595369090:43936597208613 0:0 hcCommandKernel:411 -43936597211572:43936597242932 0:0 hcCommandMarker:413 -43936613017192:43936614856075 0:0 hcCommandKernel:416 -43936614859107:43936614890467 0:0 hcCommandMarker:418 PASSED! ## Iteration (16) ################# -43936630770153:43936632618476 0:0 hcCommandKernel:421 -43936632621411:43936632653091 0:0 hcCommandMarker:423 PASSED! ## Iteration (15) ################# PASSED! @@ -353,18 +419,35 @@ PASSED! ## Iteration (13) ################# PASSED! ## Iteration (12) ################# -43936648421451:43936650272014 0:0 hcCommandKernel:426 -43936650274717:43936650306397 0:0 hcCommandMarker:428 -43936666186176:43936668028259 0:0 hcCommandKernel:431 -43936668031033:43936668062553 0:0 hcCommandMarker:433 -43936683847105:43936685694788 0:0 hcCommandKernel:436 -43936685697850:43936685729530 0:0 hcCommandMarker:438 -43936701611894:43936703454617 0:0 hcCommandKernel:441 -43936703457617:43936703488977 0:0 hcCommandMarker:443 +3802702503514682:3802702505171794 0:0 CopyHostToDevice:557:1991 +3802702505267652:3802702506468157 0:0 KernelExecution:561:1991 +3802702505243905:3802702507802814 0:0 CopyDeviceToHost:563:1991 +3802702514761386:3802702516425008 0:0 CopyHostToDevice:564:1991 +3802702516524080:3802702517731252 0:0 KernelExecution:568:1991 +3802702516500289:3802702519068477 0:0 CopyDeviceToHost:570:1991 +3802702526022439:3802702527700141 0:0 CopyHostToDevice:571:1991 +3802702527794104:3802702528982164 0:0 KernelExecution:575:1991 +3802702527771042:3802702530315231 0:0 CopyDeviceToHost:577:1991 +3802702537274272:3802702538953635 0:0 CopyHostToDevice:578:1991 +3802702539050334:3802702540254987 0:0 KernelExecution:582:1991 +3802702539025425:3802702541587134 0:0 CopyDeviceToHost:584:1991 +3802702548553016:3802702550225609 0:0 CopyHostToDevice:585:1991 +3802702550319337:3802702551518805 0:0 KernelExecution:589:1991 +3802702550295569:3802702552853758 0:0 CopyDeviceToHost:591:1991 +3802702559816479:3802702561495482 0:0 CopyHostToDevice:592:1991 +3802702561589855:3802702562788137 0:0 KernelExecution:596:1991 +3802702561565542:3802702564108601 0:0 CopyDeviceToHost:598:1991 +3802702571069693:3802702572746995 0:0 CopyHostToDevice:599:1991 +3802702572840650:3802702574041747 0:0 KernelExecution:603:1991 +3802702572817856:3802702575375565 0:0 CopyDeviceToHost:605:1991 +3802702582343137:3802702584028249 0:0 CopyHostToDevice:606:1991 +3802702584131111:3802702585314874 0:0 KernelExecution:610:1991 +3802702584098390:3802702586648988 0:0 CopyDeviceToHost:612:1991 +3802702593620890:3802702595300582 0:0 CopyHostToDevice:613:1991 +3802702595394737:3802702596603391 0:0 KernelExecution:617:1991 +3802702595371233:3802702597936882 0:0 CopyDeviceToHost:619:1991 PASSED! ## Iteration (11) ################# -43936719264608:43936719749728 0:0 hcCommandKernel:446 -43936719752843:43936719759403 0:0 hcCommandMarker:448 PASSED! ## Iteration (10) ################# PASSED! @@ -377,36 +460,50 @@ PASSED! ## Iteration (6) ################# PASSED! ## Iteration (5) ################# -43936735528823:43936736005623 0:0 hcCommandKernel:451 -43936736008904:43936736015464 0:0 hcCommandMarker:453 -43936751784154:43936752265434 0:0 hcCommandKernel:456 -43936752268477:43936752274877 0:0 hcCommandMarker:458 -43936768038508:43936768522508 0:0 hcCommandKernel:461 -43936768526347:43936768532907 0:0 hcCommandMarker:463 -43936784289295:43936784779215 0:0 hcCommandKernel:466 -43936784782982:43936784789542 0:0 hcCommandMarker:468 -43936800538297:43936801016857 0:0 hcCommandKernel:471 -43936801019748:43936801026468 0:0 hcCommandMarker:473 PASSED! ## Iteration (4) ################# -43936816815614:43936817294654 0:0 hcCommandKernel:476 -43936817297320:43936817303880 0:0 hcCommandMarker:478 PASSED! ## Iteration (3) ################# +3802702605023015:3802702606699537 0:0 CopyHostToDevice:620:1991 +3802702606793386:3802702607994484 0:0 KernelExecution:624:1991 +3802702606770418:3802702609331847 0:0 CopyDeviceToHost:626:1991 +3802702616295619:3802702617971351 0:0 CopyHostToDevice:627:1991 +3802702618064582:3802702619276198 0:0 KernelExecution:631:1991 +3802702618041252:3802702620593170 0:0 CopyDeviceToHost:633:1991 +3802702627572022:3802702629249514 0:0 CopyHostToDevice:634:1991 +3802702629343204:3802702630550228 0:0 KernelExecution:638:1991 +3802702629319715:3802702631886524 0:0 CopyDeviceToHost:640:1991 +3802702638854896:3802702640514568 0:0 CopyHostToDevice:641:1991 +3802702640601153:3802702641794250 0:0 KernelExecution:645:1991 +3802702640583338:3802702643131137 0:0 CopyDeviceToHost:647:1991 +3802702650106259:3802702651784942 0:0 CopyHostToDevice:648:1991 +3802702651876671:3802702653079250 0:0 KernelExecution:652:1991 +3802702651853582:3802702654414351 0:0 CopyDeviceToHost:654:1991 +3802702661383522:3802702663061155 0:0 CopyHostToDevice:655:1991 +3802702663154356:3802702664347453 0:0 KernelExecution:659:1991 +3802702663130645:3802702665680984 0:0 CopyDeviceToHost:661:1991 +3802702672630496:3802702674303238 0:0 CopyHostToDevice:662:1991 +3802702674398093:3802702675599190 0:0 KernelExecution:666:1991 +3802702674374489:3802702676932868 0:0 CopyDeviceToHost:668:1991 +3802702683898880:3802702685606503 0:0 CopyHostToDevice:669:1991 +3802702685701165:3802702686898410 0:0 KernelExecution:673:1991 +3802702685678193:3802702688219002 0:0 CopyDeviceToHost:675:1991 +3802702695162453:3802702696838515 0:0 CopyHostToDevice:676:1991 +3802702696932444:3802702698137097 0:0 KernelExecution:680:1991 +3802702696909796:3802702699473165 0:0 CopyDeviceToHost:682:1991 PASSED! ## Iteration (2) ################# PASSED! ## Iteration (1) ################# PASSED! ## Iteration (0) ################# -43936833089833:43936833579433 0:0 hcCommandKernel:481 -43936833582286:43936833588846 0:0 hcCommandMarker:483 -43936849646904:43936850132504 0:0 hcCommandKernel:486 -43936850135326:43936850141886 0:0 hcCommandMarker:488 -43936867294430:43936867780350 0:0 hcCommandKernel:491 -43936867783055:43936867789615 0:0 hcCommandMarker:493 -43936884613213:43936885103133 0:0 hcCommandKernel:496 -43936885106028:43936885112748 0:0 hcCommandMarker:498 -43936901844607:43936902331647 0:0 hcCommandKernel:501 -43936902334630:43936902341030 0:0 hcCommandMarker:503 PASSED! +3802702706580728:3802702708245350 0:0 CopyHostToDevice:683:1991 +3802702708346791:3802702709549370 0:0 KernelExecution:687:1991 +3802702708322181:3802702710885410 0:0 CopyDeviceToHost:689:1991 +3802702717849822:3802702719525044 0:0 CopyHostToDevice:690:1991 +3802702719618857:3802702720813139 0:0 KernelExecution:694:1991 +3802702719594825:3802702722149644 0:0 CopyDeviceToHost:696:1991 +3802702729111215:3802702730788167 0:0 CopyHostToDevice:697:1991 +3802702730881622:3802702732076497 0:0 KernelExecution:701:1991 +3802702730858498:3802702733412517 0:0 CopyDeviceToHost:703:1991 diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_hip_period_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_hip_period_trace.txt index 468e672c76..caa2d63885 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_hip_period_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_hip_period_trace.txt @@ -1,10 +1,9 @@ -ROCTracer (pid=26055): ++ ROCP_CTRL_RATE=10:100000:1000000 ./test/MatrixTranspose +ROCTracer (pid=1983): ROCTracer: trace control: delay(10us), length(100000us), rate(1000000us) +3802699747119708 HIP-trace() -ROCTracer (pid=26055): -ROCTracer: trace control: delay(10us), length(100000us), rate(1000000us) - HIP-trace() -Device name Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device name Device 687f ## Iteration (99) ################# PASSED! ## Iteration (98) ################# @@ -205,239 +204,280 @@ PASSED! PASSED! ## Iteration (0) ################# PASSED! -43932016356046:43932016397500 26055:26055 hipGetDeviceProperties() -43932018579649:43932018627633 26055:26055 hipMalloc(ptr(0x903400000) size(0x400000)) -43932018629101:43932018648692 26055:26055 hipMalloc(ptr(0x903c00000) size(0x400000)) -43932018657045:43932024206624 26055:26055 hipMemcpy(dst(0x903400000) src(0x25fd170) size(0x400000) kind(1)) -43932024210084:43932024210085 26055:26055 MARK(name(before HIP LaunchKernel)) -43932309367516:43932309367517 26055:26055 MARK(name(after HIP LaunchKernel)) -43932325768070:43932325768071 26055:26055 MARK(name(before HIP LaunchKernel)) -43932325806211:43932325806212 26055:26055 MARK(name(after HIP LaunchKernel)) -43932342067435:43932342067436 26055:26055 MARK(name(before HIP LaunchKernel)) -43932342101677:43932342101678 26055:26055 MARK(name(after HIP LaunchKernel)) -43932358360160:43932358360161 26055:26055 MARK(name(before HIP LaunchKernel)) -43932358394862:43932358394863 26055:26055 MARK(name(after HIP LaunchKernel)) -43932374818865:43932374818866 26055:26055 MARK(name(before HIP LaunchKernel)) -43932374857099:43932374857100 26055:26055 MARK(name(after HIP LaunchKernel)) -43932392553937:43932392553938 26055:26055 MARK(name(before HIP LaunchKernel)) -43932392587074:43932392587075 26055:26055 MARK(name(after HIP LaunchKernel)) -43932410322278:43932410322279 26055:26055 MARK(name(before HIP LaunchKernel)) -43932410356222:43932410356223 26055:26055 MARK(name(after HIP LaunchKernel)) -43932428013622:43932428013623 26055:26055 MARK(name(before HIP LaunchKernel)) -43932428047370:43932428047371 26055:26055 MARK(name(after HIP LaunchKernel)) -43932445823875:43932445823876 26055:26055 MARK(name(before HIP LaunchKernel)) -43932445858364:43932445858365 26055:26055 MARK(name(after HIP LaunchKernel)) -43932463522521:43932463522522 26055:26055 MARK(name(before HIP LaunchKernel)) -43932463556106:43932463556107 26055:26055 MARK(name(after HIP LaunchKernel)) -43932481264157:43932481264158 26055:26055 MARK(name(before HIP LaunchKernel)) -43932481302264:43932481302265 26055:26055 MARK(name(after HIP LaunchKernel)) -43932498957147:43932498957148 26055:26055 MARK(name(before HIP LaunchKernel)) -43932499007307:43932499007308 26055:26055 MARK(name(after HIP LaunchKernel)) -43932516701532:43932516701533 26055:26055 MARK(name(before HIP LaunchKernel)) -43932516740634:43932516740635 26055:26055 MARK(name(after HIP LaunchKernel)) -43932534396161:43932534396162 26055:26055 MARK(name(before HIP LaunchKernel)) -43932534430109:43932534430110 26055:26055 MARK(name(after HIP LaunchKernel)) -43932552136507:43932552136508 26055:26055 MARK(name(before HIP LaunchKernel)) -43932552174955:43932552174956 26055:26055 MARK(name(after HIP LaunchKernel)) -43932569838372:43932569838373 26055:26055 MARK(name(before HIP LaunchKernel)) -43932569873357:43932569873358 26055:26055 MARK(name(after HIP LaunchKernel)) -43932587582936:43932587582937 26055:26055 MARK(name(before HIP LaunchKernel)) -43932587616530:43932587616531 26055:26055 MARK(name(after HIP LaunchKernel)) -43932605271897:43932605271898 26055:26055 MARK(name(before HIP LaunchKernel)) -43932605306872:43932605306873 26055:26055 MARK(name(after HIP LaunchKernel)) -43932623037986:43932623037987 26055:26055 MARK(name(before HIP LaunchKernel)) -43932623072073:43932623072074 26055:26055 MARK(name(after HIP LaunchKernel)) -43932640747873:43932640747874 26055:26055 MARK(name(before HIP LaunchKernel)) -43932640782515:43932640782516 26055:26055 MARK(name(after HIP LaunchKernel)) -43932657068887:43932657068888 26055:26055 MARK(name(before HIP LaunchKernel)) -43932657102762:43932657102763 26055:26055 MARK(name(after HIP LaunchKernel)) -43932673379533:43932673379534 26055:26055 MARK(name(before HIP LaunchKernel)) -43932673413702:43932673413703 26055:26055 MARK(name(after HIP LaunchKernel)) -43932689650275:43932689650276 26055:26055 MARK(name(before HIP LaunchKernel)) -43932689688120:43932689688121 26055:26055 MARK(name(after HIP LaunchKernel)) -43932706024306:43932706024307 26055:26055 MARK(name(before HIP LaunchKernel)) -43932706061892:43932706061893 26055:26055 MARK(name(after HIP LaunchKernel)) -43932722404114:43932722404115 26055:26055 MARK(name(before HIP LaunchKernel)) -43932722450953:43932722450954 26055:26055 MARK(name(after HIP LaunchKernel)) -43932738747072:43932738747073 26055:26055 MARK(name(before HIP LaunchKernel)) -43932738783895:43932738783896 26055:26055 MARK(name(after HIP LaunchKernel)) -43932755053911:43932755053912 26055:26055 MARK(name(before HIP LaunchKernel)) -43932755086752:43932755086753 26055:26055 MARK(name(after HIP LaunchKernel)) -43932771329207:43932771329208 26055:26055 MARK(name(before HIP LaunchKernel)) -43932771347101:43932771347102 26055:26055 MARK(name(after HIP LaunchKernel)) -43932787609603:43932787609604 26055:26055 MARK(name(before HIP LaunchKernel)) -43932787626372:43932787626373 26055:26055 MARK(name(after HIP LaunchKernel)) -43932803880283:43932803880284 26055:26055 MARK(name(before HIP LaunchKernel)) -43932803913740:43932803913741 26055:26055 MARK(name(after HIP LaunchKernel)) -43932820132122:43932820132123 26055:26055 MARK(name(before HIP LaunchKernel)) -43932820170233:43932820170234 26055:26055 MARK(name(after HIP LaunchKernel)) -43932836497613:43932836497614 26055:26055 MARK(name(before HIP LaunchKernel)) -43932836535605:43932836535606 26055:26055 MARK(name(after HIP LaunchKernel)) -43932852904822:43932852904823 26055:26055 MARK(name(before HIP LaunchKernel)) -43932852942407:43932852942408 26055:26055 MARK(name(after HIP LaunchKernel)) -43932869290524:43932869290525 26055:26055 MARK(name(before HIP LaunchKernel)) -43932869329866:43932869329867 26055:26055 MARK(name(after HIP LaunchKernel)) -43932885635307:43932885635308 26055:26055 MARK(name(before HIP LaunchKernel)) -43932885669256:43932885669257 26055:26055 MARK(name(after HIP LaunchKernel)) -43932901970155:43932901970156 26055:26055 MARK(name(before HIP LaunchKernel)) -43932901989697:43932901989698 26055:26055 MARK(name(after HIP LaunchKernel)) -43932918260839:43932918260840 26055:26055 MARK(name(before HIP LaunchKernel)) -43932918293762:43932918293763 26055:26055 MARK(name(after HIP LaunchKernel)) -43932934545610:43932934545611 26055:26055 MARK(name(before HIP LaunchKernel)) -43932934577595:43932934577596 26055:26055 MARK(name(after HIP LaunchKernel)) -43932950855037:43932950855038 26055:26055 MARK(name(before HIP LaunchKernel)) -43932950906554:43932950906555 26055:26055 MARK(name(after HIP LaunchKernel)) -43932967158140:43932967158141 26055:26055 MARK(name(before HIP LaunchKernel)) -43932967204959:43932967204960 26055:26055 MARK(name(after HIP LaunchKernel)) -43932983443711:43932983443712 26055:26055 MARK(name(before HIP LaunchKernel)) -43932983481045:43932983481046 26055:26055 MARK(name(after HIP LaunchKernel)) -43932998919789:43932999777243 26055:26055 hipMemcpy(dst(0x903400000) src(0x25fd170) size(0x400000) kind(1)) -43932999778933:43932999778934 26055:26055 MARK(name(before HIP LaunchKernel)) -43932999790858:43932999857966 26055:26055 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43932999869719:43932999869720 26055:26055 MARK(name(after HIP LaunchKernel)) -43932999871831:43933002727304 26055:26055 hipMemcpy(dst(0x29fd180) src(0x903c00000) size(0x400000) kind(2)) -43933016724230:43933017583617 26055:26055 hipMemcpy(dst(0x903400000) src(0x25fd170) size(0x400000) kind(1)) -43933017585152:43933017585153 26055:26055 MARK(name(before HIP LaunchKernel)) -43933017597371:43933017637628 26055:26055 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43933017639250:43933017639251 26055:26055 MARK(name(after HIP LaunchKernel)) -43933017641217:43933020520010 26055:26055 hipMemcpy(dst(0x29fd180) src(0x903c00000) size(0x400000) kind(2)) -43933034542756:43933035404131 26055:26055 hipMemcpy(dst(0x903400000) src(0x25fd170) size(0x400000) kind(1)) -43933035405703:43933035405704 26055:26055 MARK(name(before HIP LaunchKernel)) -43933035417664:43933035457991 26055:26055 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43933035459677:43933035459678 26055:26055 MARK(name(after HIP LaunchKernel)) -43933035461554:43933038337624 26055:26055 hipMemcpy(dst(0x29fd180) src(0x903c00000) size(0x400000) kind(2)) -43933052293417:43933053160408 26055:26055 hipMemcpy(dst(0x903400000) src(0x25fd170) size(0x400000) kind(1)) -43933053162015:43933053162016 26055:26055 MARK(name(before HIP LaunchKernel)) -43933053174382:43933053196225 26055:26055 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43933053198167:43933053198168 26055:26055 MARK(name(after HIP LaunchKernel)) -43933053200026:43933056101223 26055:26055 hipMemcpy(dst(0x29fd180) src(0x903c00000) size(0x400000) kind(2)) -43933070121982:43933070978773 26055:26055 hipMemcpy(dst(0x903400000) src(0x25fd170) size(0x400000) kind(1)) -43933070980262:43933070980263 26055:26055 MARK(name(before HIP LaunchKernel)) -43933070997704:43933071038037 26055:26055 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43933071039939:43933071039940 26055:26055 MARK(name(after HIP LaunchKernel)) -43933071041871:43933073922115 26055:26055 hipMemcpy(dst(0x29fd180) src(0x903c00000) size(0x400000) kind(2)) -43933087857070:43933088762523 26055:26055 hipMemcpy(dst(0x903400000) src(0x25fd170) size(0x400000) kind(1)) -43933088764032:43933088764033 26055:26055 MARK(name(before HIP LaunchKernel)) -43933088775969:43933088816379 26055:26055 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43933088818233:43933088818234 26055:26055 MARK(name(after HIP LaunchKernel)) -43933088830023:43933091723027 26055:26055 hipMemcpy(dst(0x29fd180) src(0x903c00000) size(0x400000) kind(2)) -43933106593182:43933106593183 26055:26055 MARK(name(before HIP LaunchKernel)) -43933106631182:43933106631183 26055:26055 MARK(name(after HIP LaunchKernel)) -43933124264790:43933124264791 26055:26055 MARK(name(before HIP LaunchKernel)) -43933124299416:43933124299417 26055:26055 MARK(name(after HIP LaunchKernel)) -43933141986334:43933141986335 26055:26055 MARK(name(before HIP LaunchKernel)) -43933142020652:43933142020653 26055:26055 MARK(name(after HIP LaunchKernel)) -43933159656263:43933159656264 26055:26055 MARK(name(before HIP LaunchKernel)) -43933159689392:43933159689393 26055:26055 MARK(name(after HIP LaunchKernel)) -43933177421632:43933177421633 26055:26055 MARK(name(before HIP LaunchKernel)) -43933177460424:43933177460425 26055:26055 MARK(name(after HIP LaunchKernel)) -43933195118213:43933195118214 26055:26055 MARK(name(before HIP LaunchKernel)) -43933195156305:43933195156306 26055:26055 MARK(name(after HIP LaunchKernel)) -43933212858769:43933212858770 26055:26055 MARK(name(before HIP LaunchKernel)) -43933212892428:43933212892429 26055:26055 MARK(name(after HIP LaunchKernel)) -43933230550599:43933230550600 26055:26055 MARK(name(before HIP LaunchKernel)) -43933230584794:43933230584795 26055:26055 MARK(name(after HIP LaunchKernel)) -43933248275723:43933248275724 26055:26055 MARK(name(before HIP LaunchKernel)) -43933248310176:43933248310177 26055:26055 MARK(name(after HIP LaunchKernel)) -43933264626153:43933264626154 26055:26055 MARK(name(before HIP LaunchKernel)) -43933264665629:43933264665630 26055:26055 MARK(name(after HIP LaunchKernel)) -43933280992560:43933280992561 26055:26055 MARK(name(before HIP LaunchKernel)) -43933281027422:43933281027423 26055:26055 MARK(name(after HIP LaunchKernel)) -43933297321505:43933297321506 26055:26055 MARK(name(before HIP LaunchKernel)) -43933297359452:43933297359453 26055:26055 MARK(name(after HIP LaunchKernel)) -43933313662994:43933313662995 26055:26055 MARK(name(before HIP LaunchKernel)) -43933313700705:43933313700706 26055:26055 MARK(name(after HIP LaunchKernel)) -43933329971419:43933329971420 26055:26055 MARK(name(before HIP LaunchKernel)) -43933330018417:43933330018418 26055:26055 MARK(name(after HIP LaunchKernel)) -43933346273054:43933346273055 26055:26055 MARK(name(before HIP LaunchKernel)) -43933346306837:43933346306838 26055:26055 MARK(name(after HIP LaunchKernel)) -43933362521760:43933362521761 26055:26055 MARK(name(before HIP LaunchKernel)) -43933362540391:43933362540392 26055:26055 MARK(name(after HIP LaunchKernel)) -43933378827233:43933378827234 26055:26055 MARK(name(before HIP LaunchKernel)) -43933378845241:43933378845242 26055:26055 MARK(name(after HIP LaunchKernel)) -43933395183216:43933395183217 26055:26055 MARK(name(before HIP LaunchKernel)) -43933395215386:43933395215387 26055:26055 MARK(name(after HIP LaunchKernel)) -43933411559286:43933411559287 26055:26055 MARK(name(before HIP LaunchKernel)) -43933411596821:43933411596822 26055:26055 MARK(name(after HIP LaunchKernel)) -43933427865512:43933427865513 26055:26055 MARK(name(before HIP LaunchKernel)) -43933427898752:43933427898753 26055:26055 MARK(name(after HIP LaunchKernel)) -43933444147624:43933444147625 26055:26055 MARK(name(before HIP LaunchKernel)) -43933444175808:43933444175809 26055:26055 MARK(name(after HIP LaunchKernel)) -43933460414293:43933460414294 26055:26055 MARK(name(before HIP LaunchKernel)) -43933460446208:43933460446209 26055:26055 MARK(name(after HIP LaunchKernel)) -43933476718044:43933476718045 26055:26055 MARK(name(before HIP LaunchKernel)) -43933476749715:43933476749716 26055:26055 MARK(name(after HIP LaunchKernel)) -43933492989969:43933492989970 26055:26055 MARK(name(before HIP LaunchKernel)) -43933493020764:43933493020765 26055:26055 MARK(name(after HIP LaunchKernel)) -43933509257931:43933509257932 26055:26055 MARK(name(before HIP LaunchKernel)) -43933509289509:43933509289510 26055:26055 MARK(name(after HIP LaunchKernel)) -43933525557224:43933525557225 26055:26055 MARK(name(before HIP LaunchKernel)) -43933525588932:43933525588933 26055:26055 MARK(name(after HIP LaunchKernel)) -43933541884683:43933541884684 26055:26055 MARK(name(before HIP LaunchKernel)) -43933541916037:43933541916038 26055:26055 MARK(name(after HIP LaunchKernel)) -43933558234802:43933558234803 26055:26055 MARK(name(before HIP LaunchKernel)) -43933558266471:43933558266472 26055:26055 MARK(name(after HIP LaunchKernel)) -43933574598996:43933574598997 26055:26055 MARK(name(before HIP LaunchKernel)) -43933574630471:43933574630472 26055:26055 MARK(name(after HIP LaunchKernel)) -43933590916499:43933590916500 26055:26055 MARK(name(before HIP LaunchKernel)) -43933590946901:43933590946902 26055:26055 MARK(name(after HIP LaunchKernel)) -43933607216207:43933607216208 26055:26055 MARK(name(before HIP LaunchKernel)) -43933607247236:43933607247237 26055:26055 MARK(name(after HIP LaunchKernel)) -43933624120350:43933624120351 26055:26055 MARK(name(before HIP LaunchKernel)) -43933624138017:43933624138018 26055:26055 MARK(name(after HIP LaunchKernel)) -43933641790135:43933641790136 26055:26055 MARK(name(before HIP LaunchKernel)) -43933641807143:43933641807144 26055:26055 MARK(name(after HIP LaunchKernel)) -43933659509173:43933659509174 26055:26055 MARK(name(before HIP LaunchKernel)) -43933659526749:43933659526750 26055:26055 MARK(name(after HIP LaunchKernel)) -43933677219727:43933677219728 26055:26055 MARK(name(before HIP LaunchKernel)) -43933677254061:43933677254062 26055:26055 MARK(name(after HIP LaunchKernel)) -43933694974650:43933694974651 26055:26055 MARK(name(before HIP LaunchKernel)) -43933695009347:43933695009348 26055:26055 MARK(name(after HIP LaunchKernel)) -43933712659673:43933712659674 26055:26055 MARK(name(before HIP LaunchKernel)) -43933712708655:43933712708656 26055:26055 MARK(name(after HIP LaunchKernel)) -43933730412868:43933730412869 26055:26055 MARK(name(before HIP LaunchKernel)) -43933730446931:43933730446932 26055:26055 MARK(name(after HIP LaunchKernel)) -43933748101862:43933748101863 26055:26055 MARK(name(before HIP LaunchKernel)) -43933748139940:43933748139941 26055:26055 MARK(name(after HIP LaunchKernel)) -43933765877856:43933765877857 26055:26055 MARK(name(before HIP LaunchKernel)) -43933765916382:43933765916383 26055:26055 MARK(name(after HIP LaunchKernel)) -43933783570361:43933783570362 26055:26055 MARK(name(before HIP LaunchKernel)) -43933783603616:43933783603617 26055:26055 MARK(name(after HIP LaunchKernel)) -43933801334338:43933801334339 26055:26055 MARK(name(before HIP LaunchKernel)) -43933801368467:43933801368468 26055:26055 MARK(name(after HIP LaunchKernel)) -43933819035225:43933819035226 26055:26055 MARK(name(before HIP LaunchKernel)) -43933819068314:43933819068315 26055:26055 MARK(name(after HIP LaunchKernel)) -43933836809157:43933836809158 26055:26055 MARK(name(before HIP LaunchKernel)) -43933836847860:43933836847861 26055:26055 MARK(name(after HIP LaunchKernel)) -43933854512746:43933854512747 26055:26055 MARK(name(before HIP LaunchKernel)) -43933854546024:43933854546025 26055:26055 MARK(name(after HIP LaunchKernel)) -43933872241982:43933872241983 26055:26055 MARK(name(before HIP LaunchKernel)) -43933872276613:43933872276614 26055:26055 MARK(name(after HIP LaunchKernel)) -43933888625718:43933888625719 26055:26055 MARK(name(before HIP LaunchKernel)) -43933888659297:43933888659298 26055:26055 MARK(name(after HIP LaunchKernel)) -43933904989760:43933904989761 26055:26055 MARK(name(before HIP LaunchKernel)) -43933905023554:43933905023555 26055:26055 MARK(name(after HIP LaunchKernel)) -43933921307079:43933921307080 26055:26055 MARK(name(before HIP LaunchKernel)) -43933921344505:43933921344506 26055:26055 MARK(name(after HIP LaunchKernel)) -43933937634499:43933937634500 26055:26055 MARK(name(before HIP LaunchKernel)) -43933937681958:43933937681959 26055:26055 MARK(name(after HIP LaunchKernel)) -43933953935834:43933953935835 26055:26055 MARK(name(before HIP LaunchKernel)) -43933953973608:43933953973609 26055:26055 MARK(name(after HIP LaunchKernel)) -43933970237558:43933970237559 26055:26055 MARK(name(before HIP LaunchKernel)) -43933970274704:43933970274705 26055:26055 MARK(name(after HIP LaunchKernel)) -43933986518798:43933986518799 26055:26055 MARK(name(before HIP LaunchKernel)) -43933986551047:43933986551048 26055:26055 MARK(name(after HIP LaunchKernel)) -43934001936907:43934002013320 26055:26055 hipFree(ptr(0x903400000)) -43934002015215:43934002031122 26055:26055 hipFree(ptr(0x903c00000)) -43932999861577:43933001699020 0:0 hcCommandKernel:89 -43933001702044:43933001733884 0:0 hcCommandMarker:91 -43933017641348:43933019466951 0:0 hcCommandKernel:94 -43933019470002:43933019501362 0:0 hcCommandMarker:96 -43933035461722:43933037295325 0:0 hcCommandKernel:99 -43933037298331:43933037330011 0:0 hcCommandMarker:101 -43933053199946:43933055040429 0:0 hcCommandKernel:104 -43933055043394:43933055075234 0:0 hcCommandMarker:106 -43933071041680:43933072880403 0:0 hcCommandKernel:109 -43933072883281:43933072915281 0:0 hcCommandMarker:111 -43933088820348:43933090670751 0:0 hcCommandKernel:114 -43933090673779:43933090705459 0:0 hcCommandMarker:116 +3802699751533941:3802699751541991 1983:1983 hipGetDeviceProperties(props=, device=0) +3802699752571489:3802699752686289 1983:1983 hipMalloc(ptr=0x7f6c121ff010, size=4194304) +3802699752688639:3802699752749390 1983:1983 hipMalloc(ptr=0x7fffefcadf28, size=4194304) +3802699752763840:3802700027958750 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802700027966800:3802700027966801 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700028567724:3802700028567725 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700041950374:3802700041950375 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700041963674:3802700041963675 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700054151914:3802700054151915 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700054162714:3802700054162715 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700066165433:3802700066165434 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700066176343:3802700066176344 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700078181322:3802700078181323 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700078192012:3802700078192013 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700090220561:3802700090220562 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700090239211:3802700090239212 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700102271721:3802700102271722 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700102282171:3802700102282172 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700114144958:3802700114144959 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700114162049:3802700114162050 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700126128128:3802700126128129 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700126138758:3802700126138759 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700138129156:3802700138129157 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700138139446:3802700138139447 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700150136865:3802700150136866 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700150148016:3802700150148017 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700162246915:3802700162246916 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700162258105:3802700162258106 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700174131823:3802700174131824 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700174149233:3802700174149234 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700186413294:3802700186413295 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700186424475:3802700186424476 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700198692895:3802700198692896 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700198703415:3802700198703416 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700210532173:3802700210532174 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700210542783:3802700210542784 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700222880184:3802700222880185 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700222891274:3802700222891275 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700234962094:3802700234962095 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700234972984:3802700234972985 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700247111934:3802700247111935 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700247122294:3802700247122295 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700259114883:3802700259114884 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700259131593:3802700259131594 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700270919381:3802700270919382 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700270930441:3802700270930442 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700282944209:3802700282944210 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700282954850:3802700282954851 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700294960369:3802700294960370 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700294970439:3802700294970440 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700306951068:3802700306951069 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700306963188:3802700306963189 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700318935636:3802700318935637 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700318952436:3802700318952437 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700330939575:3802700330939576 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700330957096:3802700330957097 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700342957675:3802700342957676 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700342976555:3802700342976556 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700354958353:3802700354958354 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700354969733:3802700354969734 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700367116224:3802700367116225 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700367127874:3802700367127875 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700378910551:3802700378910552 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700378921781:3802700378921782 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700391300403:3802700391300404 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700391311253:3802700391311254 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700403119421:3802700403119422 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700403149901:3802700403149902 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700414928588:3802700414928589 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700414939088:3802700414939089 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700426957197:3802700426957198 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700426969607:3802700426969608 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700438945256:3802700438945257 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700438956156:3802700438956157 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700450955785:3802700450955786 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700450966535:3802700450966536 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700462947734:3802700462947735 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700462958494:3802700462958495 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700475120764:3802700475120765 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700475133244:3802700475133245 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700486943952:3802700486943953 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700486963842:3802700486963843 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700498936501:3802700498936502 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700498947611:3802700498947612 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700510957970:3802700510957971 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700510969340:3802700510969341 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700522956379:3802700522956380 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700522968409:3802700522968410 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700534942538:3802700534942539 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700534953908:3802700534953909 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700546789315:3802700546789316 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700546806236:3802700546806237 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700558559853:3802700558559854 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700558571313:3802700558571314 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700570153708:3802700570153709 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700570176129:3802700570176130 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700581726404:3802700581726405 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700581741565:3802700581741566 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700593057879:3802700593057880 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700593070449:3802700593070450 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700604400132:3802700604400133 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700604413112:3802700604413113 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700615730637:3802700615730638 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700615743157:3802700615743158 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700627079061:3802700627079062 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700627101981:3802700627101982 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700638410875:3802700638410876 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700638425755:3802700638425756 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700649752129:3802700649752130 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700649766079:3802700649766080 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700661088702:3802700661088703 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700661101353:3802700661101354 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700672436427:3802700672436428 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700672449997:3802700672449998 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700683973653:3802700683973654 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700683987193:3802700683987194 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700695366597:3802700695366598 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700695379007:3802700695379008 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700706708861:3802700706708862 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700706735151:3802700706735152 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700718019795:3802700718019796 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700718034725:3802700718034726 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700729346979:3802700729346980 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700729360039:3802700729360040 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700740688063:3802700740688064 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700740702553:3802700740702554 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700752045097:3802700752045098 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700752060217:3802700752060218 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700763470772:3802700763470773 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700763485762:3802700763485763 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700774801006:3802700774801007 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700774813776:3802700774813777 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700786122470:3802700786122471 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700786147830:3802700786147831 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700797490594:3802700797490595 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700797504834:3802700797504835 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700808806748:3802700808806749 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700808822388:3802700808822389 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700820150282:3802700820150283 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700820163482:3802700820163483 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700831687737:3802700831687738 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700831701867:3802700831701868 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700843073042:3802700843073043 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700843096032:3802700843096033 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700854417226:3802700854417227 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700854429236:3802700854429237 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700865753490:3802700865753491 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700865775180:3802700865775181 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700877105074:3802700877105075 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700877120554:3802700877120555 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700888576349:3802700888576350 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700888589579:3802700888589580 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700900086965:3802700900086966 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700900101025:3802700900101026 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700911461388:3802700911461389 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700911474589:3802700911474590 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700922810673:3802700922810674 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700922833153:3802700922833154 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700932447414:3802700934135107 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802700934139057:3802700934139058 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700934143817:3802700934144527 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802700934146607:3802700934147267 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e03f3099) +3802700934158787:3802700934164967 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802700934191267:3802700934191268 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700934192847:3802700936775947 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802700943795998:3802700945501111 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802700945513191:3802700945513192 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700945517031:3802700945517901 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802700945519841:3802700945520521 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e0ecbb86) +3802700945522671:3802700945530171 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802700945531971:3802700945531972 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700945534701:3802700948131020 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802700955136442:3802700956839355 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802700956843375:3802700956843376 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700956847725:3802700956848495 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802700956850235:3802700956850825 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e1999f61) +3802700956860545:3802700956868795 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802700956870695:3802700956870696 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700956872065:3802700959479235 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802700966505397:3802700968203670 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802700968207780:3802700968207781 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700968219030:3802700968219770 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802700968221700:3802700968222280 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e247222e) +3802700968225090:3802700968233560 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802700968235360:3802700968235361 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700968241120:3802700970853059 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802700977859821:3802700979559833 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802700979563253:3802700979563254 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700979567803:3802700979568553 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802700979570433:3802700979571073 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e2f44d18) +3802700979581243:3802700979589274 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802700979590674:3802700979590675 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700979592044:3802700982222943 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802700989239045:3802700990944838 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802700990948338:3802700990948339 1983:1983 MARK(name(before HIP LaunchKernel)) +3802700990960008:3802700990960828 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802700990963068:3802700990963638 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e3a221d9) +3802700990966328:3802700990975628 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802700990977238:3802700990977239 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700990978718:3802700993694078 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802701000919212:3802701002625515 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802701002628745:3802701002628746 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701002633405:3802701002634215 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802701002635935:3802701002636515 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e45440c4) +3802701002649885:3802701002657855 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802701002659335:3802701002659336 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701002660835:3802701005267024 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802701012322026:3802701014008789 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802701014011999:3802701014012000 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701014023469:3802701014024239 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802701014028089:3802701014028669 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e5020cc5) +3802701014031569:3802701014039849 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802701014041409:3802701014041410 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701014042919:3802701016640288 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802701023688501:3802701025398903 1983:1983 hipMemcpy(dst=0x7f6c11400000, src=0x7f6c121ff010, sizeBytes=4194304, kind=1) +3802701025402873:3802701025402874 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701025407454:3802701025408214 1983:1983 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802701025410224:3802701025411104 1983:1983 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140106682958042, stream=0xd8282e5afc125) +3802701025412944:3802701025420534 1983:1983 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802701025429704:3802701025429705 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701025431374:3802701028050563 1983:1983 hipMemcpy(dst=0x7f6c11dfe010, src=0x7f6c10e00000, sizeBytes=4194304, kind=2) +3802701036808678:3802701036808679 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701036822078:3802701036822079 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701048170132:3802701048170133 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701048184912:3802701048184913 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701059593377:3802701059593378 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701059607287:3802701059607288 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701070985111:3802701070985112 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701071008911:3802701071008912 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701082354665:3802701082354666 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701082369396:3802701082369397 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701093751910:3802701093751911 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701093766810:3802701093766811 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701105308045:3802701105308046 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701105323296:3802701105323297 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701116675540:3802701116675541 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701116689570:3802701116689571 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701128156035:3802701128156036 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701128181736:3802701128181737 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701139551739:3802701139551740 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701139565579:3802701139565580 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701150939144:3802701150939145 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701150961354:3802701150961355 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701162295078:3802701162295079 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701162308528:3802701162308529 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701173678182:3802701173678183 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701173692162:3802701173692163 1983:1983 MARK(name(after HIP LaunchKernel)) +3802701185053367:3802701185053368 1983:1983 MARK(name(before HIP LaunchKernel)) +3802701185066667:3802701185066668 1983:1983 MARK(name(after HIP LaunchKernel)) +3802700025923715:3802700027953920 0:0 CopyHostToDevice:4:1983 +3802700932468645:3802700934131397 0:0 CopyHostToDevice:159:1983 +3802700934227596:3802700935424394 0:0 KernelExecution:163:1983 +3802700934202858:3802700936764597 0:0 CopyDeviceToHost:165:1983 +3802700943841248:3802700945497221 0:0 CopyHostToDevice:166:1983 +3802700945593801:3802700946786154 0:0 KernelExecution:170:1983 +3802700945569841:3802700948120440 0:0 CopyDeviceToHost:172:1983 +3802700955175473:3802700956835555 0:0 CopyHostToDevice:173:1983 +3802700956931540:3802700958130412 0:0 KernelExecution:177:1983 +3802700956907066:3802700959467615 0:0 CopyDeviceToHost:179:1983 +3802700966543517:3802700968200020 0:0 CopyHostToDevice:180:1983 +3802700968296336:3802700969501283 0:0 KernelExecution:184:1983 +3802700968270720:3802700970841439 0:0 CopyDeviceToHost:186:1983 +3802700977897221:3802700979556403 0:0 CopyHostToDevice:187:1983 +3802700979653155:3802700980864472 0:0 KernelExecution:191:1983 +3802700979628944:3802700982210583 0:0 CopyDeviceToHost:193:1983 +3802700989276246:3802700990941188 0:0 CopyHostToDevice:194:1983 +3802700991037310:3802700992234553 0:0 KernelExecution:198:1983 +3802700991012848:3802700993682128 0:0 CopyDeviceToHost:200:1983 +3802701000959152:3802701002622075 0:0 CopyHostToDevice:201:1983 +3802701002717521:3802701003911060 0:0 KernelExecution:205:1983 +3802701002693645:3802701005254464 0:0 CopyDeviceToHost:207:1983 +3802701012346926:3802701014005359 0:0 CopyHostToDevice:208:1983 +3802701014102693:3802701015297862 0:0 KernelExecution:212:1983 +3802701014077439:3802701016629358 0:0 CopyDeviceToHost:214:1983 +3802701023726221:3802701025394963 0:0 CopyHostToDevice:215:1983 +3802701025491525:3802701026698101 0:0 KernelExecution:219:1983 +3802701025467214:3802701028039843 0:0 CopyDeviceToHost:221:1983 diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_hipaact_test_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_hipaact_test_trace.txt index 5b77221b62..6d6d9e86e4 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_hipaact_test_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_hipaact_test_trace.txt @@ -1,4102 +1,9539 @@ ++ LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_hipaact_test # INIT ############################# # START (99) ############################# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0xa79c70) size(0x400000) kind(1) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - dst(0xe79c80) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7a200000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e79c00000) + + + + + dst(0x7f2e7a200000) src(0x7f2e7afff010) size(0x400000) kind(1) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> + + +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(6) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(6) on-exit pid(144) tid(144)> + + + + + +<__hipPopCallConfiguration id(171) correlation_id(7) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(7) on-exit pid(144) tid(144)> + + + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x7f2e7abfe010) src(0x7f2e79c00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7a200000) + + + + + + + + + + ptr(0x7f2e79c00000) + + + + + + + # START (98) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (97) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(17) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(17) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(18) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(18) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (96) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (95) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(28) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(28) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(29) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(29) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (94) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (93) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + Activity records: + hipSetDevice correlation_id(1) time_ns(3815034539611796:3815034539624476) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(2) time_ns(3815034539629146:3815034539636026) process_id(144) thread_id(144) + hipMalloc correlation_id(3) time_ns(3815034540645895:3815034540769036) process_id(144) thread_id(144) + hipMalloc correlation_id(4) time_ns(3815034540770976:3815034540838747) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(5) time_ns(3815034813104824:3815034815162682) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(5) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(5) time_ns(3815034540844827:3815034815185393) process_id(144) thread_id(144) + (null) correlation_id(6) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(6) time_ns(3815034815213083:3815034815226883) process_id(144) thread_id(144) + (null) correlation_id(7) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(7) time_ns(3815034815231703:3815034815240263) process_id(144) thread_id(144) + (null) correlation_id(8) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(8) time_ns(3815034815245383:3815034815802118) process_id(144) thread_id(144) + KernelExecution correlation_id(8) time_ns(3815034815828499:3815034817036412) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(9) time_ns(3815034815815348:3815034819079007) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(9) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(9) time_ns(3815034815807268:3815034819102458) process_id(144) thread_id(144) + (null) correlation_id(10) time_ns(0:0) external_id(31) + hipFree correlation_id(10) time_ns(3815034827422882:3815034827538213) process_id(144) thread_id(144) + (null) correlation_id(11) time_ns(0:0) external_id(31) + hipFree correlation_id(11) time_ns(3815034827551013:3815034827585793) process_id(144) thread_id(144) + hipSetDevice correlation_id(12) time_ns(3815034842993991:3815034843019331) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(13) time_ns(3815034843022211:3815034843029401) process_id(144) thread_id(144) + hipMalloc correlation_id(14) time_ns(3815034843920789:3815034844066080) process_id(144) thread_id(144) + hipMalloc correlation_id(15) time_ns(3815034844068120:3815034844146721) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(16) time_ns(3815034844170261:3815034845917477) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(16) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(16) time_ns(3815034844148991:3815034845923247) process_id(144) thread_id(144) + (null) correlation_id(17) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(17) time_ns(3815034845935877:3815034845952237) process_id(144) thread_id(144) + (null) correlation_id(18) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(18) time_ns(3815034845959437:3815034845964287) process_id(144) thread_id(144) + (null) correlation_id(19) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(19) time_ns(3815034845966657:3815034845976567) process_id(144) thread_id(144) + KernelExecution correlation_id(19) time_ns(3815034846027230:3815034847240032) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(20) time_ns(3815034846005407:3815034848941943) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(20) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(20) time_ns(3815034845979677:3815034848959494) process_id(144) thread_id(144) + (null) correlation_id(21) time_ns(0:0) external_id(31) + hipFree correlation_id(21) time_ns(3815034856904715:3815034857006976) process_id(144) thread_id(144) + (null) correlation_id(22) time_ns(0:0) external_id(31) + hipFree correlation_id(22) time_ns(3815034857009286:3815034857043436) process_id(144) thread_id(144) + hipSetDevice correlation_id(23) time_ns(3815034871848968:3815034871874618) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(24) time_ns(3815034871877198:3815034871883678) process_id(144) thread_id(144) + hipMalloc correlation_id(25) time_ns(3815034872780856:3815034872912437) process_id(144) thread_id(144) + hipMalloc correlation_id(26) time_ns(3815034872914247:3815034872995148) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(27) time_ns(3815034873030018:3815034874809784) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(27) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(27) time_ns(3815034872997568:3815034874815484) process_id(144) thread_id(144) + (null) correlation_id(28) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(28) time_ns(3815034874827864:3815034874834004) process_id(144) thread_id(144) + (null) correlation_id(29) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(29) time_ns(3815034874836114:3815034874848805) process_id(144) thread_id(144) + (null) correlation_id(30) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(30) time_ns(3815034874851335:3815034874861255) process_id(144) thread_id(144) + KernelExecution correlation_id(30) time_ns(3815034874918981:3815034876108078) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(31) time_ns(3815034874896745:3815034877537288) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(31) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(31) time_ns(3815034874864155:3815034877562989) process_id(144) thread_id(144) + (null) correlation_id(32) time_ns(0:0) external_id(31) + hipFree correlation_id(32) time_ns(3815034885600771:3815034885698491) process_id(144) thread_id(144) + (null) correlation_id(33) time_ns(0:0) external_id(31) + hipFree correlation_id(33) time_ns(3815034885700781:3815034885730492) process_id(144) thread_id(144) + hipSetDevice correlation_id(34) time_ns(3815034900486273:3815034900511943) process_id(144) thread_id(144) + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(39) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(39) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(40) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(40) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (92) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (91) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(50) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(50) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(51) on-enter pid(144) tid(144)> + +<__hipPopCallConfiguration id(171) correlation_id(51) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (90) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (89) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(61) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(61) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(62) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(62) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (88) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (87) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + Activity records: + hipGetDeviceProperties correlation_id(35) time_ns(3815034900515173:3815034900522384) process_id(144) thread_id(144) + hipMalloc correlation_id(36) time_ns(3815034901561633:3815034901717614) process_id(144) thread_id(144) + hipMalloc correlation_id(37) time_ns(3815034901719824:3815034901792035) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(38) time_ns(3815034901829565:3815034903594331) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(38) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(38) time_ns(3815034901794445:3815034903600101) process_id(144) thread_id(144) + (null) correlation_id(39) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(39) time_ns(3815034903612701:3815034903630851) process_id(144) thread_id(144) + (null) correlation_id(40) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(40) time_ns(3815034903638291:3815034903643211) process_id(144) thread_id(144) + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + (null) correlation_id(43) time_ns(0:0) external_id(31) + hipFree correlation_id(43) time_ns(3815034914432528:3815034914548999) process_id(144) thread_id(144) + (null) correlation_id(44) time_ns(0:0) external_id(31) + hipFree correlation_id(44) time_ns(3815034914551639:3815034914574059) process_id(144) thread_id(144) + hipSetDevice correlation_id(45) time_ns(3815034929379311:3815034929403791) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(46) time_ns(3815034929406661:3815034929413171) process_id(144) thread_id(144) + hipMalloc correlation_id(47) time_ns(3815034930301769:3815034930432990) process_id(144) thread_id(144) + hipMalloc correlation_id(48) time_ns(3815034930434870:3815034930505061) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(49) time_ns(3815034930543551:3815034932291247) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(49) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(49) time_ns(3815034930507111:3815034932308587) process_id(144) thread_id(144) + (null) correlation_id(50) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(50) time_ns(3815034932320047:3815034932326437) process_id(144) thread_id(144) + (null) correlation_id(51) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(51) time_ns(3815034932328547:3815034932335367) process_id(144) thread_id(144) + (null) correlation_id(52) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(52) time_ns(3815034932337627:3815034932353447) process_id(144) thread_id(144) + KernelExecution correlation_id(52) time_ns(3815034932413717:3815034933622519) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(53) time_ns(3815034932390947:3815034935234553) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(53) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(53) time_ns(3815034932356427:3815034935253993) process_id(144) thread_id(144) + (null) correlation_id(54) time_ns(0:0) external_id(31) + hipFree correlation_id(54) time_ns(3815034943233274:3815034943329735) process_id(144) thread_id(144) + (null) correlation_id(55) time_ns(0:0) external_id(31) + hipFree correlation_id(55) time_ns(3815034943332005:3815034943363085) process_id(144) thread_id(144) + hipSetDevice correlation_id(56) time_ns(3815034958065276:3815034958090877) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(57) time_ns(3815034958093567:3815034958100237) process_id(144) thread_id(144) + hipMalloc correlation_id(58) time_ns(3815034958987395:3815034959117006) process_id(144) thread_id(144) + hipMalloc correlation_id(59) time_ns(3815034959118756:3815034959199866) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(60) time_ns(3815034959237427:3815034960974822) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(60) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(60) time_ns(3815034959202197:3815034960988452) process_id(144) thread_id(144) + (null) correlation_id(61) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(61) time_ns(3815034960993662:3815034960999632) process_id(144) thread_id(144) + + + (null) correlation_id(62) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(62) time_ns(3815034961006342:3815034961011363) process_id(144) thread_id(144) + (null) correlation_id(63) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(63) time_ns(3815034961013663:3815034961023563) process_id(144) thread_id(144) + KernelExecution correlation_id(63) time_ns(3815034961076966:3815034962286805) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(64) time_ns(3815034961054503:3815034963937538) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(64) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(64) time_ns(3815034961026593:3815034963958099) process_id(144) thread_id(144) + (null) correlation_id(65) time_ns(0:0) external_id(31) + hipFree correlation_id(65) time_ns(3815034971849279:3815034971945540) process_id(144) thread_id(144) + (null) correlation_id(66) time_ns(0:0) external_id(31) + hipFree correlation_id(66) time_ns(3815034971947820:3815034971981541) process_id(144) thread_id(144) + hipSetDevice correlation_id(67) time_ns(3815034986854033:3815034986880283) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(68) time_ns(3815034986883143:3815034986889523) process_id(144) thread_id(144) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(72) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(72) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(73) on-enter pid(144) tid(144)> + +<__hipPopCallConfiguration id(171) correlation_id(73) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (86) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (85) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(83) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(83) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(84) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(84) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (84) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (83) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(94) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(94) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(95) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(95) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (82) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (81) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + Activity records: + hipMalloc correlation_id(69) time_ns(3815034987779281:3815034987919872) process_id(144) thread_id(144) + hipMalloc correlation_id(70) time_ns(3815034987927643:3815034988023483) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(71) time_ns(3815034988049764:3815034989807949) device_id(0) queue_id(0) bytes(0x0) + + (null) correlation_id(71) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(71) time_ns(3815034988026073:3815034989821609) process_id(144) thread_id(144) + (null) correlation_id(72) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(72) time_ns(3815034989833059:3815034989838919) process_id(144) thread_id(144) + (null) correlation_id(73) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(73) time_ns(3815034989841390:3815034989848420) process_id(144) thread_id(144) + (null) correlation_id(74) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(74) time_ns(3815034989855550:3815034989866400) process_id(144) thread_id(144) + KernelExecution correlation_id(74) time_ns(3815034989922792:3815034991125668) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(75) time_ns(3815034989900490:3815034992539864) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(75) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(75) time_ns(3815034989869630:3815034992560164) process_id(144) thread_id(144) + (null) correlation_id(76) time_ns(0:0) external_id(31) + hipFree correlation_id(76) time_ns(3815035000595486:3815035000706827) process_id(144) thread_id(144) + (null) correlation_id(77) time_ns(0:0) external_id(31) + hipFree correlation_id(77) time_ns(3815035000709377:3815035000741757) process_id(144) thread_id(144) + hipSetDevice correlation_id(78) time_ns(3815035015478038:3815035015503418) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(79) time_ns(3815035015506298:3815035015512569) process_id(144) thread_id(144) + hipMalloc correlation_id(80) time_ns(3815035016411806:3815035016543568) process_id(144) thread_id(144) + hipMalloc correlation_id(81) time_ns(3815035016545738:3815035016625518) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(82) time_ns(3815035016648559:3815035018491865) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(82) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(82) time_ns(3815035016627988:3815035018497735) process_id(144) thread_id(144) + (null) correlation_id(83) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(83) time_ns(3815035018503315:3815035018509175) process_id(144) thread_id(144) + (null) correlation_id(84) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(84) time_ns(3815035018511585:3815035018516365) process_id(144) thread_id(144) + (null) correlation_id(85) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(85) time_ns(3815035018526095:3815035018536295) process_id(144) thread_id(144) + KernelExecution correlation_id(85) time_ns(3815035018594802:3815035019791752) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(86) time_ns(3815035018572356:3815035021203349) device_id(0) queue_id(0) bytes(0x0) + + + (null) correlation_id(86) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(86) time_ns(3815035018539765:3815035021224619) process_id(144) thread_id(144) + (null) correlation_id(87) time_ns(0:0) external_id(31) + hipFree correlation_id(87) time_ns(3815035029224631:3815035029316522) process_id(144) thread_id(144) + (null) correlation_id(88) time_ns(0:0) external_id(31) + hipFree correlation_id(88) time_ns(3815035029319142:3815035029350722) process_id(144) thread_id(144) + hipSetDevice correlation_id(89) time_ns(3815035043905382:3815035043930462) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(90) time_ns(3815035043933122:3815035043939662) process_id(144) thread_id(144) + hipMalloc correlation_id(91) time_ns(3815035044831530:3815035044970501) process_id(144) thread_id(144) + hipMalloc correlation_id(92) time_ns(3815035044972551:3815035045044772) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(93) time_ns(3815035045079792:3815035046819047) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(93) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(93) time_ns(3815035045046912:3815035046824887) process_id(144) thread_id(144) + (null) correlation_id(94) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(94) time_ns(3815035046830378:3815035046835758) process_id(144) thread_id(144) + (null) correlation_id(95) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(95) time_ns(3815035046838208:3815035046843028) process_id(144) thread_id(144) + (null) correlation_id(96) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(96) time_ns(3815035046846678:3815035046857348) process_id(144) thread_id(144) + KernelExecution correlation_id(96) time_ns(3815035046917717:3815035048115704) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(97) time_ns(3815035046895178:3815035049828944) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(97) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(97) time_ns(3815035046860768:3815035049847245) process_id(144) thread_id(144) + (null) correlation_id(98) time_ns(0:0) external_id(31) + hipFree correlation_id(98) time_ns(3815035057823256:3815035057918827) process_id(144) thread_id(144) + (null) correlation_id(99) time_ns(0:0) external_id(31) + hipFree correlation_id(99) time_ns(3815035057921407:3815035057954387) process_id(144) thread_id(144) + hipSetDevice correlation_id(100) time_ns(3815035072826089:3815035072855090) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(101) time_ns(3815035072858230:3815035072876850) process_id(144) thread_id(144) + hipMalloc correlation_id(102) time_ns(3815035073836398:3815035073982670) process_id(144) thread_id(144) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(105) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(105) on-exit pid(144) tid(144)> + + + + + +<__hipPopCallConfiguration id(171) correlation_id(106) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(106) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (80) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (79) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(116) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(116) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(117) on-enter pid(144) tid(144)> + +<__hipPopCallConfiguration id(171) correlation_id(117) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (78) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (77) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(127) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(127) on-exit pid(144) tid(144)> + + + + + +<__hipPopCallConfiguration id(171) correlation_id(128) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(128) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (76) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (75) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(138) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(138) on-exit pid(144) tid(144)> + + + + Activity records: + hipMalloc correlation_id(103) time_ns(3815035073984620:3815035074055860) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(104) time_ns(3815035074099431:3815035075846106) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(104) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(104) time_ns(3815035074064210:3815035075857386) process_id(144) thread_id(144) + (null) correlation_id(105) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(105) time_ns(3815035075869166:3815035075875016) process_id(144) thread_id(144) + (null) correlation_id(106) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(106) time_ns(3815035075877446:3815035075885926) process_id(144) thread_id(144) + (null) correlation_id(107) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(107) time_ns(3815035075893357:3815035075903357) process_id(144) thread_id(144) + KernelExecution correlation_id(107) time_ns(3815035075961917:3815035077165237) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(108) time_ns(3815035075939867:3815035078486890) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(108) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(108) time_ns(3815035075906807:3815035078511440) process_id(144) thread_id(144) + (null) correlation_id(109) time_ns(0:0) external_id(31) + hipFree correlation_id(109) time_ns(3815035086710493:3815035086801894) process_id(144) thread_id(144) + (null) correlation_id(110) time_ns(0:0) external_id(31) + hipFree correlation_id(110) time_ns(3815035086804314:3815035086835304) process_id(144) thread_id(144) + hipSetDevice correlation_id(111) time_ns(3815035101418764:3815035101443524) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(112) time_ns(3815035101446084:3815035101452775) process_id(144) thread_id(144) + hipMalloc correlation_id(113) time_ns(3815035102344222:3815035102474734) process_id(144) thread_id(144) + hipMalloc correlation_id(114) time_ns(3815035102476684:3815035102559074) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(115) time_ns(3815035102596845:3815035104212179) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(115) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(115) time_ns(3815035102561564:3815035104219289) process_id(144) thread_id(144) + (null) correlation_id(116) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(116) time_ns(3815035104224759:3815035104230289) process_id(144) thread_id(144) + (null) correlation_id(117) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(117) time_ns(3815035104232789:3815035104240149) process_id(144) thread_id(144) + (null) correlation_id(118) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(118) time_ns(3815035104243149:3815035104253739) process_id(144) thread_id(144) + KernelExecution correlation_id(118) time_ns(3815035104316182:3815035105520687) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(119) time_ns(3815035104291940:3815035107244837) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(119) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(119) time_ns(3815035104256979:3815035107264887) process_id(144) thread_id(144) + (null) correlation_id(120) time_ns(0:0) external_id(31) + hipFree correlation_id(120) time_ns(3815035115353908:3815035115456889) process_id(144) thread_id(144) + (null) correlation_id(121) time_ns(0:0) external_id(31) + hipFree correlation_id(121) time_ns(3815035115459219:3815035115491640) process_id(144) thread_id(144) + hipSetDevice correlation_id(122) time_ns(3815035130111260:3815035130136820) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(123) time_ns(3815035130139430:3815035130146160) process_id(144) thread_id(144) + hipMalloc correlation_id(124) time_ns(3815035131029998:3815035131172859) process_id(144) thread_id(144) + hipMalloc correlation_id(125) time_ns(3815035131175319:3815035131245940) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(126) time_ns(3815035131282980:3815035133020886) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(126) time_ns(0:0) external_id(32) + + + + hipMemcpy correlation_id(126) time_ns(3815035131248230:3815035133028006) process_id(144) thread_id(144) +<__hipPopCallConfiguration id(171) correlation_id(139) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(139) on-exit pid(144) tid(144)> + +<__hipPopCallConfiguration id(171) correlation_id(139) on + + + __hipPushCallConfiguration correlation_id(127) time_ns(3815035133039656:3815035133045626) process_id(144) thread_id(144) + __hipPushCallConfiguration correlation_id(127) time_ns(3815035133039656: (null) correlation_id(128) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(128) time_ns(3815035133048146 + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + __hipPopCallConfiguration corr + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + (null) correlation_id(129) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(129) time_ns(3815035133063636:3815035133077717) process_id(144) thread_id(144) + KernelExecution correlation_id(129) time_ns(3815035133128777:3815035134324393) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(130) time_ns(3815035133107607:3815035135862972) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(130) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(130) time_ns(3815035133081117:3815035135881262) process_id(144) thread_id(144) + + (null) correlation_id(131) time_ns(0:0) external_id(31) + hipFree correlation_id(131) time_ns(3815035143754912:3815035143859273) process_id(144) thread_id(144) + (null) correlation_id(132) time_ns(0:0) external_id(31) + hipFree correlation_id(132) time_ns(3815035143861633:3815035143893413) process_id(144) thread_id(144) + hipSetDevice correlation_id(133) time_ns(3815035158630364:3815035158664725) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(134) time_ns(3815035158667565:3815035158674005) process_id(144) thread_id(144) + hipMalloc correlation_id(135) time_ns(3815035159563452:3815035159690364) process_id(144) thread_id(144) + hipMalloc correlation_id(136) time_ns(3815035159692464:3815035159763284) process_id(144) thread_id(144) + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (74) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (73) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(149) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(149) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(150) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(150) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (72) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (71) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(160) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(160) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(161) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(161) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (70) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (69) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(171) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(171) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(172) on-enter pid(144) tid(144)> + Activity records: + CopyHostToDevice correlation_id(137) time_ns(3815035159799745: + Activity records: + CopyHostToDevice correlation_id(137) time_ns(3815035159799745: + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + (null) correlation_id(137) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(137) time_ns(3815035159765714:3815035161559040) process_id(144) thread_id(144) + (null) correlation_id(138) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(138) time_ns(3815035161570661:3815035161580311) process_id(144) thread_id(144) + (null) correlation_id(139) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(139) time_ns(3815035161775332:3815035161798133) process_id(144) thread_id(144) + (null) correlation_id(140) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(140) time_ns(3815035161803343:3815035161833353) process_id(144) thread_id(144) + KernelExecution correlation_id(140) time_ns(3815035161916856:3815035163108769) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(141) time_ns(3815035161894164:3815035164882040) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(141) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(141) time_ns(3815035161837323:3815035164909581) process_id(144) thread_id(144) + (null) correlation_id(142) time_ns(0:0) external_id(31) + hipFree correlation_id(142) time_ns(3815035173090463:3815035173190194) process_id(144) thread_id(144) + (null) correlation_id(143) time_ns(0:0) external_id(31) + hipFree correlation_id(143) time_ns(3815035173192704:3815035173225085) process_id(144) thread_id(144) + hipSetDevice correlation_id(144) time_ns(3815035187852245:3815035187877535) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(145) time_ns(3815035187880275:3815035187886535) process_id(144) thread_id(144) + hipMalloc correlation_id(146) time_ns(3815035188817373:3815035188944265) process_id(144) thread_id(144) + hipMalloc correlation_id(147) time_ns(3815035188946065:3815035189026905) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(148) time_ns(3815035189064216:3815035190738111) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(148) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(148) time_ns(3815035189029205:3815035190749401) process_id(144) thread_id(144) + (null) correlation_id(149) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(149) time_ns(3815035190766511:3815035190782261) process_id(144) thread_id(144) + (null) correlation_id(150) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(150) time_ns(3815035190785151:3815035190789771) process_id(144) thread_id(144) + (null) correlation_id(151) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(151) time_ns(3815035190792431:3815035190805001) process_id(144) thread_id(144) + KernelExecution correlation_id(151) time_ns(3815035190839642:3815035192034370) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(152) time_ns(3815035190820112:3815035193501176) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(152) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(152) time_ns(3815035190808131:3815035193528696) process_id(144) thread_id(144) + (null) correlation_id(153) time_ns(0:0) external_id(31) + hipFree correlation_id(153) time_ns(3815035201541217:3815035201637508) process_id(144) thread_id(144) + (null) correlation_id(154) time_ns(0:0) external_id(31) + hipFree correlation_id(154) time_ns(3815035201639948:3815035201673318) process_id(144) thread_id(144) + hipSetDevice correlation_id(155) time_ns(3815035216254908:3815035216280168) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(156) time_ns(3815035216282888:3815035216289398) process_id(144) thread_id(144) + hipMalloc correlation_id(157) time_ns(3815035217185366:3815035217323048) process_id(144) thread_id(144) + hipMalloc correlation_id(158) time_ns(3815035217324958:3815035217395668) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(159) time_ns(3815035217433479:3815035219107484) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(159) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(159) time_ns(3815035217397878:3815035219118554) process_id(144) thread_id(144) + (null) correlation_id(160) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(160) time_ns(3815035219136554:3815035219145994) process_id(144) thread_id(144) + (null) correlation_id(161) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(161) time_ns(3815035219148234:3815035219161854) process_id(144) thread_id(144) + (null) correlation_id(162) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(162) time_ns(3815035219164534:3815035219179774) process_id(144) thread_id(144) + KernelExecution correlation_id(162) time_ns(3815035219221836:3815035220435083) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(163) time_ns(3815035219197055:3815035221846128) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(163) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(163) time_ns(3815035219182734:3815035221874478) process_id(144) thread_id(144) + (null) correlation_id(164) time_ns(0:0) external_id(31) + hipFree correlation_id(164) time_ns(3815035229835209:3815035229935220) process_id(144) thread_id(144) + (null) correlation_id(165) time_ns(0:0) external_id(31) + hipFree correlation_id(165) time_ns(3815035229937770:3815035229970851) process_id(144) thread_id(144) + hipSetDevice correlation_id(166) time_ns(3815035244489550:3815035244515420) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(167) time_ns(3815035244518410:3815035244536050) process_id(144) thread_id(144) + hipMalloc correlation_id(168) time_ns(3815035245431908:3815035245560149) process_id(144) thread_id(144) + hipMalloc correlation_id(169) time_ns(3815035245562069:3815035245634180) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(170) time_ns(3815035245672410:3815035247346356) device_id(0) queue_id(0) bytes(0x0) + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (68) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (67) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(182) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(182) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(183) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(183) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (66) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (65) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + +<__hipPushCallConfiguration id(46) correlation_id(193) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(193) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(194) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(194) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (64) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (63) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(204) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(204) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(205) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(205) on-exit pid(144) tid(144)> + + + + + + + + Activity records: + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + (null) correlation_id(170) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(170) time_ns(3815035245636840:3815035247357816) process_id(144) thread_id(144) + (null) correlation_id(171) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(171) time_ns(3815035247367546:3815035247372966) process_id(144) thread_id(144) + (null) correlation_id(172) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(172) time_ns(3815035247375386:3815035247402046) process_id(144) thread_id(144) + (null) correlation_id(173) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(173) time_ns(3815035247417866:3815035247432026) process_id(144) thread_id(144) + KernelExecution correlation_id(173) time_ns(3815035247472290:3815035248664351) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(174) time_ns(3815035247451306:3815035250182971) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(174) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(174) time_ns(3815035247435076:3815035250215941) process_id(144) thread_id(144) + (null) correlation_id(175) time_ns(0:0) external_id(31) + hipFree correlation_id(175) time_ns(3815035258290843:3815035258402324) process_id(144) thread_id(144) + (null) correlation_id(176) time_ns(0:0) external_id(31) + hipFree correlation_id(176) time_ns(3815035258404654:3815035258440454) process_id(144) thread_id(144) + + hipSetDevice correlation_id(177) time_ns(3815035273112135:3815035273137495) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(178) time_ns(3815035273140405:3815035273146915) process_id(144) thread_id(144) + hipMalloc correlation_id(179) time_ns(3815035274055453:3815035274187385) process_id(144) thread_id(144) + hipMalloc correlation_id(180) time_ns(3815035274189245:3815035274269535) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(181) time_ns(3815035274307406:3815035275979211) device_id(0) queue_id(0) bytes(0x0) + + (null) correlation_id(181) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(181) time_ns(3815035274271975:3815035275989611) process_id(144) thread_id(144) + (null) correlation_id(182) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(182) time_ns(3815035276016551:3815035276032451) process_id(144) thread_id(144) + (null) correlation_id(183) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(183) time_ns(3815035276034721:3815035276038851) process_id(144) thread_id(144) + (null) correlation_id(184) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(184) time_ns(3815035276041241:3815035276054032) process_id(144) thread_id(144) + KernelExecution correlation_id(184) time_ns(3815035276088024:3815035277298456) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(185) time_ns(3815035276088022:3815035278772746) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(185) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(185) time_ns(3815035276057112:3815035278800576) process_id(144) thread_id(144) + (null) correlation_id(186) time_ns(0:0) external_id(31) + hipFree correlation_id(186) time_ns(3815035286759027:3815035286855228) process_id(144) thread_id(144) + (null) correlation_id(187) time_ns(0:0) external_id(31) + hipFree correlation_id(187) time_ns(3815035286857548:3815035286892608) process_id(144) thread_id(144) + hipSetDevice correlation_id(188) time_ns(3815035301586579:3815035301611789) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(189) time_ns(3815035301614849:3815035301621149) process_id(144) thread_id(144) + hipMalloc correlation_id(190) time_ns(3815035302534447:3815035302672259) process_id(144) thread_id(144) + hipMalloc correlation_id(191) time_ns(3815035302674139:3815035302746959) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(192) time_ns(3815035302783730:3815035304450155) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(192) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(192) time_ns(3815035302749079:3815035304460755) process_id(144) thread_id(144) + (null) correlation_id(193) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(193) time_ns(3815035304466775:3815035304472595) process_id(144) thread_id(144) + (null) correlation_id(194) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(194) time_ns(3815035304474985:3815035304479095) process_id(144) thread_id(144) + (null) correlation_id(195) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(195) time_ns(3815035304485835:3815035304499755) process_id(144) thread_id(144) + KernelExecution correlation_id(195) time_ns(3815035304556863:3815035305767296) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(196) time_ns(3815035304535595:3815035307136828) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(196) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(196) time_ns(3815035304503505:3815035307165169) process_id(144) thread_id(144) + (null) correlation_id(197) time_ns(0:0) external_id(31) + hipFree correlation_id(197) time_ns(3815035315091749:3815035315194160) process_id(144) thread_id(144) + (null) correlation_id(198) time_ns(0:0) external_id(31) + hipFree correlation_id(198) time_ns(3815035315196910:3815035315233090) process_id(144) thread_id(144) + hipSetDevice correlation_id(199) time_ns(3815035337361748:3815035337388168) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(200) time_ns(3815035337390918:3815035337397468) process_id(144) thread_id(144) + hipMalloc correlation_id(201) time_ns(3815035338303756:3815035338463808) process_id(144) thread_id(144) + hipMalloc correlation_id(202) time_ns(3815035338465658:3815035338537128) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(203) time_ns(3815035338579969:3815035340238403) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(203) time_ns(0:0) external_id(32) + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (62) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (61) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(215) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(215) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(216) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(216) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (60) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (59) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(226) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(226) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(227) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(227) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (58) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (57) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(237) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(237) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(238) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(238) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + Activity records: + hipMemcpy correlation_id(203) time_ns(3815035338539468:3815035340260513) process_id(144) thread_id(144) + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + (null) correlation_id(204) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(204) time_ns(3815035340270004:3815035340275194) process_id(144) thread_id(144) + + (null) correlation_id(205) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(205) time_ns(3815035340277494:3815035340281744) process_id(144) thread_id(144) + (null) correlation_id(206) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(206) time_ns(3815035340284024:3815035340305674) process_id(144) thread_id(144) + KernelExecution correlation_id(206) time_ns(3815035340438955:3815035341653832) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(207) time_ns(3815035340417725:3815035342944707) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(207) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(207) time_ns(3815035340308704:3815035342969227) process_id(144) thread_id(144) + (null) correlation_id(208) time_ns(0:0) external_id(31) + hipFree correlation_id(208) time_ns(3815035350802098:3815035350910049) process_id(144) thread_id(144) + (null) correlation_id(209) time_ns(0:0) external_id(31) + hipFree correlation_id(209) time_ns(3815035350912529:3815035350934999) process_id(144) thread_id(144) + hipSetDevice correlation_id(210) time_ns(3815035365292797:3815035365317857) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(211) time_ns(3815035365320557:3815035365327097) process_id(144) thread_id(144) + hipMalloc correlation_id(212) time_ns(3815035366224885:3815035366382596) process_id(144) thread_id(144) + hipMalloc correlation_id(213) time_ns(3815035366386677:3815035366508938) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(214) time_ns(3815035366550508:3815035368233973) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(214) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(214) time_ns(3815035366512888:3815035368247273) process_id(144) thread_id(144) + (null) correlation_id(215) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(215) time_ns(3815035368255273:3815035368264983) process_id(144) thread_id(144) + (null) correlation_id(216) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(216) time_ns(3815035368269423:3815035368278003) process_id(144) thread_id(144) + (null) correlation_id(217) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(217) time_ns(3815035368282243:3815035368297313) process_id(144) thread_id(144) + KernelExecution correlation_id(217) time_ns(3815035368342997:3815035369535799) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(218) time_ns(3815035368320024:3815035371210599) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(218) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(218) time_ns(3815035368302623:3815035371259370) process_id(144) thread_id(144) + (null) correlation_id(219) time_ns(0:0) external_id(31) + hipFree correlation_id(219) time_ns(3815035382839563:3815035382938384) process_id(144) thread_id(144) + (null) correlation_id(220) time_ns(0:0) external_id(31) + hipFree correlation_id(220) time_ns(3815035382940624:3815035382975374) process_id(144) thread_id(144) + hipSetDevice correlation_id(221) time_ns(3815035398204020:3815035398229530) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(222) time_ns(3815035398232170:3815035398238960) process_id(144) thread_id(144) + hipMalloc correlation_id(223) time_ns(3815035399148098:3815035399288130) process_id(144) thread_id(144) + hipMalloc correlation_id(224) time_ns(3815035399290100:3815035399362860) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(225) time_ns(3815035399400781:3815035401021675) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(225) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(225) time_ns(3815035399365140:3815035401028655) process_id(144) thread_id(144) + (null) correlation_id(226) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(226) time_ns(3815035401039945:3815035401045625) process_id(144) thread_id(144) + (null) correlation_id(227) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(227) time_ns(3815035401047715:3815035401059995) process_id(144) thread_id(144) + (null) correlation_id(228) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(228) time_ns(3815035401062795:3815035401073386) process_id(144) thread_id(144) + KernelExecution correlation_id(228) time_ns(3815035401130658:3815035402341682) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(229) time_ns(3815035401108776:3815035403866711) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(229) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(229) time_ns(3815035401076406:3815035403884231) process_id(144) thread_id(144) + (null) correlation_id(230) time_ns(0:0) external_id(31) + hipFree correlation_id(230) time_ns(3815035411924792:3815035412033163) process_id(144) thread_id(144) + (null) correlation_id(231) time_ns(0:0) external_id(31) + hipFree correlation_id(231) time_ns(3815035412035473:3815035412068204) process_id(144) thread_id(144) + hipSetDevice correlation_id(232) time_ns(3815035427024697:3815035427060777) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(233) time_ns(3815035427063897:3815035427070467) process_id(144) thread_id(144) + hipMalloc correlation_id(234) time_ns(3815035427966985:3815035428122017) process_id(144) thread_id(144) + hipMalloc correlation_id(235) time_ns(3815035428124097:3815035428196177) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(236) time_ns(3815035428220997:3815035429963253) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(236) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(236) time_ns(3815035428198457:3815035429969113) process_id(144) thread_id(144) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (56) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (55) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(248) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(248) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(249) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(249) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (54) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (53) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(259) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(259) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(260) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(260) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (52) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (51) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(270) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(270) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(271) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(271) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + Activity records: + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + (null) correlation_id(237) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(237) time_ns(3815035429982203:3815035429987923) process_id(144) thread_id(144) + (null) correlation_id(238) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(238) time_ns(3815035429993834:3815035430002894) process_id(144) thread_id(144) + (null) correlation_id(239) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(239) time_ns(3815035430005494:3815035430016084) process_id(144) thread_id(144) + KernelExecution correlation_id(239) time_ns(3815035430066246:3815035431264826) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(240) time_ns(3815035430048634:3815035432760508) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(240) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(240) time_ns(3815035430021504:3815035432783359) process_id(144) thread_id(144) + (null) correlation_id(241) time_ns(0:0) external_id(31) + hipFree correlation_id(241) time_ns(3815035440921121:3815035441011422) process_id(144) thread_id(144) + (null) correlation_id(242) time_ns(0:0) external_id(31) + hipFree correlation_id(242) time_ns(3815035441013802:3815035441042782) process_id(144) thread_id(144) + hipSetDevice correlation_id(243) time_ns(3815035455978945:3815035456014725) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(244) time_ns(3815035456017335:3815035456023925) process_id(144) thread_id(144) + hipMalloc correlation_id(245) time_ns(3815035456991984:3815035457136505) process_id(144) thread_id(144) + hipMalloc correlation_id(246) time_ns(3815035457138785:3815035457215056) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(247) time_ns(3815035457253226:3815035459008992) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(247) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(247) time_ns(3815035457217466:3815035459014602) process_id(144) thread_id(144) + (null) correlation_id(248) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(248) time_ns(3815035459020102:3815035459025873) process_id(144) thread_id(144) + (null) correlation_id(249) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(249) time_ns(3815035459028273:3815035459033013) process_id(144) thread_id(144) + (null) correlation_id(250) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(250) time_ns(3815035459036683:3815035459047113) process_id(144) thread_id(144) + KernelExecution correlation_id(250) time_ns(3815035459108149:3815035460309988) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(251) time_ns(3815035459085973:3815035461862678) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(251) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(251) time_ns(3815035459050403:3815035461880638) process_id(144) thread_id(144) + (null) correlation_id(252) time_ns(0:0) external_id(31) + hipFree correlation_id(252) time_ns(3815035469790528:3815035469885829) process_id(144) thread_id(144) + (null) correlation_id(253) time_ns(0:0) external_id(31) + hipFree correlation_id(253) time_ns(3815035469888149:3815035469916990) process_id(144) thread_id(144) + hipSetDevice correlation_id(254) time_ns(3815035484810212:3815035484836382) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(255) time_ns(3815035484839062:3815035484855472) process_id(144) thread_id(144) + hipMalloc correlation_id(256) time_ns(3815035485768781:3815035485891802) process_id(144) thread_id(144) + hipMalloc correlation_id(257) time_ns(3815035485893822:3815035485965103) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(258) time_ns(3815035486002233:3815035487812259) device_id(0) queue_id(0) bytes(0x0) + + (null) correlation_id(258) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(258) time_ns(3815035485967403:3815035487817759) process_id(144) thread_id(144) + + (null) correlation_id(259) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(259) time_ns(3815035487823379:3815035487828919) process_id(144) thread_id(144) + (null) correlation_id(260) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(260) time_ns(3815035487831339:3815035487835959) process_id(144) thread_id(144) + (null) correlation_id(261) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(261) time_ns(3815035487845510:3815035487860340) process_id(144) thread_id(144) + KernelExecution correlation_id(261) time_ns(3815035487916285:3815035489108938) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(262) time_ns(3815035487893650:3815035490535133) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(262) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(262) time_ns(3815035487863810:3815035490553164) process_id(144) thread_id(144) + (null) correlation_id(263) time_ns(0:0) external_id(31) + hipFree correlation_id(263) time_ns(3815035498536904:3815035498629515) process_id(144) thread_id(144) + (null) correlation_id(264) time_ns(0:0) external_id(31) + hipFree correlation_id(264) time_ns(3815035498631955:3815035498676186) process_id(144) thread_id(144) + hipSetDevice correlation_id(265) time_ns(3815035513446077:3815035513470468) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(266) time_ns(3815035513473128:3815035513479438) process_id(144) thread_id(144) + hipMalloc correlation_id(267) time_ns(3815035514370736:3815035514501247) process_id(144) thread_id(144) + hipMalloc correlation_id(268) time_ns(3815035514503087:3815035514574968) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(269) time_ns(3815035514613128:3815035516353554) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(269) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(269) time_ns(3815035514577398:3815035516366314) process_id(144) thread_id(144) + (null) correlation_id(270) time_ns(0:0) external_id(33) + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (50) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (49) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(281) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(281) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(282) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(282) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (48) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (47) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(292) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(292) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(293) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(293) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> + + +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (46) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (45) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(303) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(303) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(304) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(304) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + Activity records: + __hipPushCallConfiguration correlation_id(270) time_ns(3815035516372134:3815035516388034) process_id(144) thread_id(144) + + + (null) correlation_id(271) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(271) time_ns(3815035516394224:3815035516399244) process_id(144) thread_id(144) + (null) correlation_id(272) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(272) time_ns(3815035516401844:3815035516412514) process_id(144) thread_id(144) + KernelExecution correlation_id(272) time_ns(3815035516627725:3815035517818156) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(273) time_ns(3815035516605206:3815035519279280) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(273) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(273) time_ns(3815035516416604:3815035519312710) process_id(144) thread_id(144) + (null) correlation_id(274) time_ns(0:0) external_id(31) + hipFree correlation_id(274) time_ns(3815035527280311:3815035527377241) process_id(144) thread_id(144) + (null) correlation_id(275) time_ns(0:0) external_id(31) + hipFree correlation_id(275) time_ns(3815035527379661:3815035527413442) process_id(144) thread_id(144) + hipSetDevice correlation_id(276) time_ns(3815035542376516:3815035542402216) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(277) time_ns(3815035542405146:3815035542411746) process_id(144) thread_id(144) + hipMalloc correlation_id(278) time_ns(3815035543311474:3815035543448065) process_id(144) thread_id(144) + hipMalloc correlation_id(279) time_ns(3815035543449985:3815035543523616) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(280) time_ns(3815035543562106:3815035545247031) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(280) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(280) time_ns(3815035543526156:3815035545266321) process_id(144) thread_id(144) + (null) correlation_id(281) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(281) time_ns(3815035545272821:3815035545289562) process_id(144) thread_id(144) + (null) correlation_id(282) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(282) time_ns(3815035545291822:3815035545296042) process_id(144) thread_id(144) + (null) correlation_id(283) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(283) time_ns(3815035545298392:3815035545309792) process_id(144) thread_id(144) + KernelExecution correlation_id(283) time_ns(3815035545360281:3815035546550861) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(284) time_ns(3815035545338632:3815035547962925) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(284) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(284) time_ns(3815035545313492:3815035547989116) process_id(144) thread_id(144) + + (null) correlation_id(285) time_ns(0:0) external_id(31) + hipFree correlation_id(285) time_ns(3815035555930186:3815035556063327) process_id(144) thread_id(144) + (null) correlation_id(286) time_ns(0:0) external_id(31) + hipFree correlation_id(286) time_ns(3815035556065877:3815035556091597) process_id(144) thread_id(144) + hipSetDevice correlation_id(287) time_ns(3815035570695258:3815035570720518) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(288) time_ns(3815035570723318:3815035570739988) process_id(144) thread_id(144) + hipMalloc correlation_id(289) time_ns(3815035571639207:3815035571765768) process_id(144) thread_id(144) + hipMalloc correlation_id(290) time_ns(3815035571767618:3815035571839558) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(291) time_ns(3815035571876299:3815035573559264) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(291) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(291) time_ns(3815035571842238:3815035573569594) process_id(144) thread_id(144) + (null) correlation_id(292) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(292) time_ns(3815035573587044:3815035573601464) process_id(144) thread_id(144) + (null) correlation_id(293) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(293) time_ns(3815035573604104:3815035573613894) process_id(144) thread_id(144) + (null) correlation_id(294) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(294) time_ns(3815035573616554:3815035573630134) process_id(144) thread_id(144) + KernelExecution correlation_id(294) time_ns(3815035573663457:3815035574854926) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(295) time_ns(3815035573662395:3815035576374869) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(295) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(295) time_ns(3815035573632904:3815035576400909) process_id(144) thread_id(144) + (null) correlation_id(296) time_ns(0:0) external_id(31) + hipFree correlation_id(296) time_ns(3815035584443700:3815035584539951) process_id(144) thread_id(144) + (null) correlation_id(297) time_ns(0:0) external_id(31) + hipFree correlation_id(297) time_ns(3815035584542241:3815035584574181) process_id(144) thread_id(144) + hipSetDevice correlation_id(298) time_ns(3815035598805459:3815035598844119) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(299) time_ns(3815035598847279:3815035598853499) process_id(144) thread_id(144) + hipMalloc correlation_id(300) time_ns(3815035599221582:3815035599374914) process_id(144) thread_id(144) + hipMalloc correlation_id(301) time_ns(3815035599376724:3815035599448704) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(302) time_ns(3815035599472075:3815035601088179) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(302) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(302) time_ns(3815035599451014:3815035601099139) process_id(144) thread_id(144) + (null) correlation_id(303) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(303) time_ns(3815035601117089:3815035601129809) process_id(144) thread_id(144) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (44) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (43) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> + +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(314) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(314) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(315) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(315) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (42) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (41) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(325) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(325) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(326) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(326) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (40) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (39) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(336) on-enter pid(144) tid(144)> + + +<__hipPushCallConfiguration id(46) correlation_id(336) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(337) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(337) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + Activity records: + (null) correlation_id(304) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(304) time_ns(3815035601132109:3815035601139340) process_id(144) thread_id(144) + (null) correlation_id(305) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(305) time_ns(3815035601146680:3815035601160120) process_id(144) thread_id(144) + KernelExecution correlation_id(305) time_ns(3815035601204978:3815035602397039) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(306) time_ns(3815035601183220:3815035603735433) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(306) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(306) time_ns(3815035601163220:3815035603756663) process_id(144) thread_id(144) + (null) correlation_id(307) time_ns(0:0) external_id(31) + hipFree correlation_id(307) time_ns(3815035611044047:3815035611136168) process_id(144) thread_id(144) + (null) correlation_id(308) time_ns(0:0) external_id(31) + hipFree correlation_id(308) time_ns(3815035611138458:3815035611168978) process_id(144) thread_id(144) + hipSetDevice correlation_id(309) time_ns(3815035623510379:3815035623534719) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(310) time_ns(3815035623537459:3815035623544079) process_id(144) thread_id(144) + hipMalloc correlation_id(311) time_ns(3815035623910852:3815035624075624) process_id(144) thread_id(144) + hipMalloc correlation_id(312) time_ns(3815035624077654:3815035624152844) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(313) time_ns(3815035624177274:3815035625798499) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(313) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(313) time_ns(3815035624155344:3815035625809849) process_id(144) thread_id(144) + (null) correlation_id(314) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(314) time_ns(3815035625826629:3815035625832539) process_id(144) thread_id(144) + (null) correlation_id(315) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(315) time_ns(3815035625844590:3815035625849230) process_id(144) thread_id(144) + (null) correlation_id(316) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(316) time_ns(3815035625851550:3815035625868650) process_id(144) thread_id(144) + KernelExecution correlation_id(316) time_ns(3815035625909920:3815035627105981) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(317) time_ns(3815035625887210:3815035628419983) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(317) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(317) time_ns(3815035625876900:3815035628443993) process_id(144) thread_id(144) + (null) correlation_id(318) time_ns(0:0) external_id(31) + hipFree correlation_id(318) time_ns(3815035635741518:3815035635831828) process_id(144) thread_id(144) + (null) correlation_id(319) time_ns(0:0) external_id(31) + hipFree correlation_id(319) time_ns(3815035635834358:3815035635867719) process_id(144) thread_id(144) + hipSetDevice correlation_id(320) time_ns(3815035648186829:3815035648223509) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(321) time_ns(3815035648226259:3815035648232699) process_id(144) thread_id(144) + hipMalloc correlation_id(322) time_ns(3815035648600212:3815035648737774) process_id(144) thread_id(144) + hipMalloc correlation_id(323) time_ns(3815035648739824:3815035648812534) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(324) time_ns(3815035648835594:3815035650450779) device_id(0) queue_id(0) bytes(0x0) + + (null) correlation_id(324) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(324) time_ns(3815035648814934:3815035650468869) process_id(144) thread_id(144) + (null) correlation_id(325) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(325) time_ns(3815035650475459:3815035650494489) process_id(144) thread_id(144) + (null) correlation_id(326) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(326) time_ns(3815035650496699:3815035650500929) process_id(144) thread_id(144) + (null) correlation_id(327) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(327) time_ns(3815035650503269:3815035650518109) process_id(144) thread_id(144) + KernelExecution correlation_id(327) time_ns(3815035650542927:3815035651743581) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(328) time_ns(3815035650540900:3815035653090022) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(328) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(328) time_ns(3815035650522329:3815035653108983) process_id(144) thread_id(144) + (null) correlation_id(329) time_ns(0:0) external_id(31) + hipFree correlation_id(329) time_ns(3815035660396638:3815035660480218) process_id(144) thread_id(144) + (null) correlation_id(330) time_ns(0:0) external_id(31) + hipFree correlation_id(330) time_ns(3815035660482498:3815035660527799) process_id(144) thread_id(144) + hipSetDevice correlation_id(331) time_ns(3815035672838179:3815035672863519) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(332) time_ns(3815035672866229:3815035672872639) process_id(144) thread_id(144) + hipMalloc correlation_id(333) time_ns(3815035673234682:3815035673384063) process_id(144) thread_id(144) + hipMalloc correlation_id(334) time_ns(3815035673385924:3815035673456544) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(335) time_ns(3815035673480414:3815035675088289) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(335) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(335) time_ns(3815035673458864:3815035675109529) process_id(144) thread_id(144) + (null) correlation_id(336) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(336) time_ns(3815035675127859:3815035675144029) process_id(144) thread_id(144) + (null) correlation_id(337) time_ns(0:0) external_id(33) + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (38) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (37) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(347) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(347) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(348) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(348) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> + +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (36) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (35) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - Activity records: - hcCommandKernel correlation_id(6) time_ns(3051994929755290:3051994931586009) device_id(0) queue_id(0) - hcCommandMarker correlation_id(7) time_ns(3051994931595421:3051994931637661) device_id(0) queue_id(0) - - hcCommandKernel correlation_id(15) time_ns(3051994970605799:3051994972439399) device_id(0) queue_id(0) - hcCommandMarker correlation_id(16) time_ns(3051994972447020:3051994972479020) device_id(0) queue_id(0) - - hcCommandKernel correlation_id(24) time_ns(3051995011454870:3051995013281590) device_id(0) queue_id(0) - hcCommandMarker correlation_id(25) time_ns(3051995013284576:3051995013316256) device_id(0) queue_id(0) - hcCommandKernel correlation_id(33) time_ns(3051995052312323:3051995054157763) device_id(0) queue_id(0) - - - hcCommandMarker correlation_id(34) time_ns(3051995054160520:3051995054192360) device_id(0) queue_id(0) - hcCommandKernel correlation_id(42) time_ns(3051995093063311:3051995094901711) device_id(0) queue_id(0) - hcCommandMarker correlation_id(43) time_ns(3051995094910626:3051995094941986) device_id(0) queue_id(0) - - - - hcCommandKernel correlation_id(51) time_ns(3051995133877884:3051995135715164) device_id(0) queue_id(0) - - hcCommandMarker correlation_id(52) time_ns(3051995135718177:3051995135750497) device_id(0) queue_id(0) - hcCommandKernel correlation_id(60) time_ns(3051995174693921:3051995176538721) device_id(0) queue_id(0) - hcCommandMarker correlation_id(61) time_ns(3051995176541555:3051995176572915) device_id(0) queue_id(0) - hcCommandKernel correlation_id(69) time_ns(3051995215425091:3051995215918051) device_id(0) queue_id(0) - hcCommandMarker correlation_id(70) time_ns(3051995215920970:3051995215927370) device_id(0) queue_id(0) - hcCommandKernel correlation_id(78) time_ns(3051995253485758:3051995253977278) device_id(0) queue_id(0) - hcCommandMarker correlation_id(79) time_ns(3051995253980028:3051995253986428) device_id(0) queue_id(0) - hcCommandKernel correlation_id(87) time_ns(3051995291578220:3051995292061900) device_id(0) queue_id(0) - hcCommandMarker correlation_id(88) time_ns(3051995292064818:3051995292071538) device_id(0) queue_id(0) - hcCommandKernel correlation_id(96) time_ns(3051995329792439:3051995330279159) device_id(0) queue_id(0) - hcCommandMarker correlation_id(97) time_ns(3051995330282091:3051995330288491) device_id(0) queue_id(0) - hcCommandKernel correlation_id(105) time_ns(3051995368089121:3051995368583841) device_id(0) queue_id(0) - hcCommandMarker correlation_id(106) time_ns(3051995368586937:3051995368593657) device_id(0) queue_id(0) - hcCommandKernel correlation_id(114) time_ns(3051995406278647:3051995406774807) device_id(0) queue_id(0) - hcCommandMarker correlation_id(115) time_ns(3051995406777804:3051995406784204) device_id(0) queue_id(0) - hcCommandKernel correlation_id(123) time_ns(3051995444525759:3051995445013759) device_id(0) queue_id(0) - hcCommandMarker correlation_id(124) time_ns(3051995445016683:3051995445023083) device_id(0) queue_id(0) - hcCommandKernel correlation_id(132) time_ns(3051995482516908:3051995482999788) device_id(0) queue_id(0) - hcCommandMarker correlation_id(133) time_ns(3051995483002717:3051995483009277) device_id(0) queue_id(0) - hcCommandKernel correlation_id(141) time_ns(3051995520353724:3051995520840124) device_id(0) queue_id(0) - hcCommandMarker correlation_id(142) time_ns(3051995520843000:3051995520849720) device_id(0) queue_id(0) - hcCommandKernel correlation_id(150) time_ns(3051995558681077:3051995559173397) device_id(0) queue_id(0) - hcCommandMarker correlation_id(151) time_ns(3051995559176298:3051995559183018) device_id(0) queue_id(0) - hcCommandKernel correlation_id(159) time_ns(3051995598161021:3051995599999270) device_id(0) queue_id(0) - hcCommandMarker correlation_id(160) time_ns(3051995599998080:3051995600029920) device_id(0) queue_id(0) - hcCommandKernel correlation_id(168) time_ns(3051995639011719:3051995640852360) device_id(0) queue_id(0) - hcCommandMarker correlation_id(169) time_ns(3051995640855187:3051995640886867) device_id(0) queue_id(0) - hcCommandKernel correlation_id(177) time_ns(3051995679941557:3051995681785238) device_id(0) queue_id(0) - hcCommandMarker correlation_id(178) time_ns(3051995681788292:3051995681819972) device_id(0) queue_id(0) - hcCommandKernel correlation_id(186) time_ns(3051995721085517:3051995722924878) device_id(0) queue_id(0) - hcCommandMarker correlation_id(187) time_ns(3051995722927822:3051995722959342) device_id(0) queue_id(0) - hcCommandKernel correlation_id(195) time_ns(3051995762128535:3051995763968696) device_id(0) queue_id(0) - hcCommandMarker correlation_id(196) time_ns(3051995763971639:3051995764003159) device_id(0) queue_id(0) - hcCommandKernel correlation_id(204) time_ns(3051995803055257:3051995804899418) device_id(0) queue_id(0) - hcCommandMarker correlation_id(205) time_ns(3051995804902347:3051995804934827) device_id(0) queue_id(0) - hcCommandKernel correlation_id(213) time_ns(3051995842381359:3051995842870959) device_id(0) queue_id(0) - hcCommandMarker correlation_id(214) time_ns(3051995842873870:3051995842880430) device_id(0) queue_id(0) - hcCommandKernel correlation_id(222) time_ns(3051995880207358:3051995880696478) device_id(0) queue_id(0) - hcCommandMarker correlation_id(223) time_ns(3051995880699398:3051995880706278) device_id(0) queue_id(0) - hcCommandKernel correlation_id(231) time_ns(3051995918437245:3051995918923485) device_id(0) queue_id(0) - hcCommandMarker correlation_id(232) time_ns(3051995918926557:3051995918933277) device_id(0) queue_id(0) - hcCommandKernel correlation_id(240) time_ns(3051995956678885:3051995957170885) device_id(0) queue_id(0) - hcCommandMarker correlation_id(241) time_ns(3051995957176377:3051995957182777) device_id(0) queue_id(0) - hcCommandKernel correlation_id(249) time_ns(3051995994483556:3051995994968356) device_id(0) queue_id(0) - hcCommandMarker correlation_id(250) time_ns(3051995994971379:3051995994977779) device_id(0) queue_id(0) - hcCommandKernel correlation_id(258) time_ns(3051996032527294:3051996033016734) device_id(0) queue_id(0) - hcCommandMarker correlation_id(259) time_ns(3051996033019573:3051996033026133) device_id(0) queue_id(0) - hcCommandKernel correlation_id(267) time_ns(3051996070648820:3051996071137460) device_id(0) queue_id(0) - hcCommandMarker correlation_id(268) time_ns(3051996071140280:3051996071146840) device_id(0) queue_id(0) - hcCommandKernel correlation_id(276) time_ns(3051996108581519:3051996109066639) device_id(0) queue_id(0) - hcCommandMarker correlation_id(277) time_ns(3051996109069492:3051996109075892) device_id(0) queue_id(0) - hcCommandKernel correlation_id(285) time_ns(3051996146393040:3051996146877360) device_id(0) queue_id(0) - hcCommandMarker correlation_id(286) time_ns(3051996146880508:3051996146887068) device_id(0) queue_id(0) - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(358) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(358) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(359) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(359) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (34) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (33) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(369) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(369) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(370) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(370) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + Activity records: + __hipPopCallConfiguration correlation_id(337) time_ns(3815035675146289:3815035675150889) process_id(144) thread_id(144) + (null) correlation_id(338) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(338) time_ns(3815035675156539:3815035675170219) process_id(144) thread_id(144) + KernelExecution correlation_id(338) time_ns(3815035675202506:3815035676402864) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(339) time_ns(3815035675202990:3815035677725462) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(339) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(339) time_ns(3815035675187709:3815035677745702) process_id(144) thread_id(144) + + (null) correlation_id(340) time_ns(0:0) external_id(31) + hipFree correlation_id(340) time_ns(3815035685084257:3815035685169828) process_id(144) thread_id(144) + (null) correlation_id(341) time_ns(0:0) external_id(31) + hipFree correlation_id(341) time_ns(3815035685172398:3815035685204868) process_id(144) thread_id(144) + hipSetDevice correlation_id(342) time_ns(3815035697526088:3815035697550419) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(343) time_ns(3815035697552949:3815035697573239) process_id(144) thread_id(144) + hipMalloc correlation_id(344) time_ns(3815035697936502:3815035698401016) process_id(144) thread_id(144) + hipMalloc correlation_id(345) time_ns(3815035698403046:3815035698477257) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(346) time_ns(3815035698514307:3815035700111672) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(346) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(346) time_ns(3815035698479757:3815035700129632) process_id(144) thread_id(144) + (null) correlation_id(347) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(347) time_ns(3815035700136422:3815035700151522) process_id(144) thread_id(144) + (null) correlation_id(348) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(348) time_ns(3815035700153912:3815035700161992) process_id(144) thread_id(144) + (null) correlation_id(349) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(349) time_ns(3815035700164412:3815035700183212) process_id(144) thread_id(144) + KernelExecution correlation_id(349) time_ns(3815035700203178:3815035701393905) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(350) time_ns(3815035700204033:3815035702729335) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(350) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(350) time_ns(3815035700187763:3815035702747295) process_id(144) thread_id(144) + (null) correlation_id(351) time_ns(0:0) external_id(31) + hipFree correlation_id(351) time_ns(3815035710043430:3815035710134521) process_id(144) thread_id(144) + (null) correlation_id(352) time_ns(0:0) external_id(31) + hipFree correlation_id(352) time_ns(3815035710136861:3815035710179011) process_id(144) thread_id(144) + hipSetDevice correlation_id(353) time_ns(3815035722508841:3815035722533201) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(354) time_ns(3815035722535801:3815035722542451) process_id(144) thread_id(144) + hipMalloc correlation_id(355) time_ns(3815035722910825:3815035723060136) process_id(144) thread_id(144) + hipMalloc correlation_id(356) time_ns(3815035723062026:3815035723134617) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(357) time_ns(3815035723157917:3815035724771191) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(357) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(357) time_ns(3815035723136857:3815035724789611) process_id(144) thread_id(144) + (null) correlation_id(358) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(358) time_ns(3815035724795871:3815035724823592) process_id(144) thread_id(144) + (null) correlation_id(359) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(359) time_ns(3815035724825832:3815035724830492) process_id(144) thread_id(144) + (null) correlation_id(360) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(360) time_ns(3815035724832742:3815035724861362) process_id(144) thread_id(144) + KernelExecution correlation_id(360) time_ns(3815035724890747:3815035726095550) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(361) time_ns(3815035724879472:3815035727430595) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(361) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(361) time_ns(3815035724866192:3815035727457946) process_id(144) thread_id(144) + (null) correlation_id(362) time_ns(0:0) external_id(31) + hipFree correlation_id(362) time_ns(3815035734746390:3815035734848181) process_id(144) thread_id(144) + (null) correlation_id(363) time_ns(0:0) external_id(31) + hipFree correlation_id(363) time_ns(3815035734850601:3815035734882171) process_id(144) thread_id(144) + hipSetDevice correlation_id(364) time_ns(3815035747207171:3815035747231802) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(365) time_ns(3815035747234342:3815035747240572) process_id(144) thread_id(144) + hipMalloc correlation_id(366) time_ns(3815035747606845:3815035747753186) process_id(144) thread_id(144) + hipMalloc correlation_id(367) time_ns(3815035747755336:3815035747826627) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(368) time_ns(3815035747863867:3815035749485122) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(368) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(368) time_ns(3815035747829257:3815035749497642) process_id(144) thread_id(144) + (null) correlation_id(369) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(369) time_ns(3815035749518412:3815035749535012) process_id(144) thread_id(144) + + + (null) correlation_id(370) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(370) time_ns(3815035749537422:3815035749541542) process_id(144) thread_id(144) + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (32) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (31) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(380) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(380) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(381) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(381) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (30) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (29) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> + +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(391) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(391) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(392) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(392) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (28) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (27) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(402) on-enter pid(144) tid(144)> + +<__hipPushCallConfiguration id(46) correlation_id(402) on-exit pid(144) tid(144)> + + + + + +<__hipPopCallConfiguration id(171) correlation_id(403) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(403) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + Activity records: + (null) correlation_id(371) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(371) time_ns(3815035749543902:3815035749557672) process_id(144) thread_id(144) + KernelExecution correlation_id(371) time_ns(3815035749591479:3815035750788281) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(372) time_ns(3815035749596023:3815035752124425) device_id(0) queue_id(0) bytes(0x0) + + (null) correlation_id(372) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(372) time_ns(3815035749581092:3815035752152925) process_id(144) thread_id(144) + (null) correlation_id(373) time_ns(0:0) external_id(31) + hipFree correlation_id(373) time_ns(3815035759439811:3815035759529631) process_id(144) thread_id(144) + (null) correlation_id(374) time_ns(0:0) external_id(31) + hipFree correlation_id(374) time_ns(3815035759531911:3815035759564882) process_id(144) thread_id(144) + hipSetDevice correlation_id(375) time_ns(3815035771887192:3815035771926302) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(376) time_ns(3815035771928942:3815035771935042) process_id(144) thread_id(144) + hipMalloc correlation_id(377) time_ns(3815035772333196:3815035772465327) process_id(144) thread_id(144) + hipMalloc correlation_id(378) time_ns(3815035772467297:3815035772539557) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(379) time_ns(3815035772562638:3815035774177492) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(379) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(379) time_ns(3815035772542057:3815035774195182) process_id(144) thread_id(144) + (null) correlation_id(380) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(380) time_ns(3815035774201752:3815035774221152) process_id(144) thread_id(144) + (null) correlation_id(381) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(381) time_ns(3815035774223382:3815035774227662) process_id(144) thread_id(144) + (null) correlation_id(382) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(382) time_ns(3815035774229992:3815035774244262) process_id(144) thread_id(144) + KernelExecution correlation_id(382) time_ns(3815035774268251:3815035775466683) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(383) time_ns(3815035774262123:3815035776810135) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(383) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(383) time_ns(3815035774248453:3815035776827535) process_id(144) thread_id(144) + (null) correlation_id(384) time_ns(0:0) external_id(31) + hipFree correlation_id(384) time_ns(3815035784115331:3815035784226832) process_id(144) thread_id(144) + (null) correlation_id(385) time_ns(0:0) external_id(31) + hipFree correlation_id(385) time_ns(3815035784229362:3815035784252832) process_id(144) thread_id(144) + hipSetDevice correlation_id(386) time_ns(3815035796571291:3815035796595621) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(387) time_ns(3815035796598121:3815035796604451) process_id(144) thread_id(144) + hipMalloc correlation_id(388) time_ns(3815035796970515:3815035797117736) process_id(144) thread_id(144) + hipMalloc correlation_id(389) time_ns(3815035797119716:3815035797193637) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(390) time_ns(3815035797216827:3815035798825552) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(390) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(390) time_ns(3815035797196047:3815035798848112) process_id(144) thread_id(144) + (null) correlation_id(391) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(391) time_ns(3815035798864262:3815035798870442) process_id(144) thread_id(144) + (null) correlation_id(392) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(392) time_ns(3815035798882992:3815035798887612) process_id(144) thread_id(144) + (null) correlation_id(393) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(393) time_ns(3815035798889682:3815035798903692) process_id(144) thread_id(144) + KernelExecution correlation_id(393) time_ns(3815035798946959:3815035800141390) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(394) time_ns(3815035798924702:3815035801486305) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(394) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(394) time_ns(3815035798907132:3815035801512756) process_id(144) thread_id(144) + (null) correlation_id(395) time_ns(0:0) external_id(31) + hipFree correlation_id(395) time_ns(3815035808787680:3815035808888881) process_id(144) thread_id(144) + (null) correlation_id(396) time_ns(0:0) external_id(31) + hipFree correlation_id(396) time_ns(3815035808891401:3815035808922321) process_id(144) thread_id(144) + hipSetDevice correlation_id(397) time_ns(3815035821242361:3815035821266901) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(398) time_ns(3815035821269461:3815035821275851) process_id(144) thread_id(144) + hipMalloc correlation_id(399) time_ns(3815035821645985:3815035821791156) process_id(144) thread_id(144) + hipMalloc correlation_id(400) time_ns(3815035821793116:3815035821873747) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(401) time_ns(3815035821897527:3815035823522191) device_id(0) queue_id(0) bytes(0x0) + + + (null) correlation_id(401) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(401) time_ns(3815035821875967:3815035823541342) process_id(144) thread_id(144) + (null) correlation_id(402) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(402) time_ns(3815035823547172:3815035823559502) process_id(144) thread_id(144) + (null) correlation_id(403) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(403) time_ns(3815035823562342:3815035823569042) process_id(144) thread_id(144) + (null) correlation_id(404) time_ns(0:0) external_id(33) + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (26) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (25) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> + +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(413) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(413) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(414) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(414) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (24) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (23) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + +<__hipPushCallConfiguration id(46) correlation_id(424) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(424) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(425) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(425) on-exit pid(144) tid(144)> + + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (22) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (21) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(435) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(435) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(436) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(436) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + Activity records: + hipLaunchKernel correlation_id(404) time_ns(3815035823571242:3815035823584542) process_id(144) thread_id(144) + KernelExecution correlation_id(404) time_ns(3815035823632582:3815035824831903) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(405) time_ns(3815035823610222:3815035826172255) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(405) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(405) time_ns(3815035823591122:3815035826192895) process_id(144) thread_id(144) + (null) correlation_id(406) time_ns(0:0) external_id(31) + hipFree correlation_id(406) time_ns(3815035833485200:3815035833572271) process_id(144) thread_id(144) + (null) correlation_id(407) time_ns(0:0) external_id(31) + hipFree correlation_id(407) time_ns(3815035833574591:3815035833621222) process_id(144) thread_id(144) + hipSetDevice correlation_id(408) time_ns(3815035845917711:3815035845942772) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(409) time_ns(3815035845945292:3815035845951602) process_id(144) thread_id(144) + hipMalloc correlation_id(410) time_ns(3815035846316325:3815035846463056) process_id(144) thread_id(144) + hipMalloc correlation_id(411) time_ns(3815035846465016:3815035846536067) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(412) time_ns(3815035846560197:3815035848164651) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(412) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(412) time_ns(3815035846538617:3815035848186381) process_id(144) thread_id(144) + (null) correlation_id(413) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(413) time_ns(3815035848194282:3815035848200062) process_id(144) thread_id(144) + (null) correlation_id(414) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(414) time_ns(3815035848202372:3815035848219872) process_id(144) thread_id(144) + (null) correlation_id(415) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(415) time_ns(3815035848222222:3815035848235402) process_id(144) thread_id(144) + KernelExecution correlation_id(415) time_ns(3815035848278155:3815035849469327) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(416) time_ns(3815035848252162:3815035850805565) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(416) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(416) time_ns(3815035848238662:3815035850823875) process_id(144) thread_id(144) + (null) correlation_id(417) time_ns(0:0) external_id(31) + hipFree correlation_id(417) time_ns(3815035858108770:3815035858218691) process_id(144) thread_id(144) + (null) correlation_id(418) time_ns(0:0) external_id(31) + hipFree correlation_id(418) time_ns(3815035858221021:3815035858252581) process_id(144) thread_id(144) + hipSetDevice correlation_id(419) time_ns(3815035870755283:3815035870780943) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(420) time_ns(3815035870783683:3815035870789763) process_id(144) thread_id(144) + hipMalloc correlation_id(421) time_ns(3815035871155766:3815035871319708) process_id(144) thread_id(144) + hipMalloc correlation_id(422) time_ns(3815035871321618:3815035871393279) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(423) time_ns(3815035871430109:3815035873049163) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(423) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(423) time_ns(3815035871395549:3815035873060233) process_id(144) thread_id(144) + (null) correlation_id(424) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(424) time_ns(3815035873067663:3815035873073314) process_id(144) thread_id(144) + (null) correlation_id(425) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(425) time_ns(3815035873075534:3815035873092324) process_id(144) thread_id(144) + (null) correlation_id(426) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(426) time_ns(3815035873095074:3815035873108804) process_id(144) thread_id(144) + KernelExecution correlation_id(426) time_ns(3815035873149228:3815035874347067) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(427) time_ns(3815035873126784:3815035875683277) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(427) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(427) time_ns(3815035873111734:3815035875711977) process_id(144) thread_id(144) + (null) correlation_id(428) time_ns(0:0) external_id(31) + hipFree correlation_id(428) time_ns(3815035883001232:3815035883093923) process_id(144) thread_id(144) + (null) correlation_id(429) time_ns(0:0) external_id(31) + hipFree correlation_id(429) time_ns(3815035883096413:3815035883127403) process_id(144) thread_id(144) + hipSetDevice correlation_id(430) time_ns(3815035895473513:3815035895498523) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(431) time_ns(3815035895501173:3815035895507443) process_id(144) thread_id(144) + hipMalloc correlation_id(432) time_ns(3815035895870996:3815035896039728) process_id(144) thread_id(144) + hipMalloc correlation_id(433) time_ns(3815035896042028:3815035896118728) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(434) time_ns(3815035896142489:3815035897768423) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(434) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(434) time_ns(3815035896121148:3815035897786664) process_id(144) thread_id(144) + (null) correlation_id(435) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(435) time_ns(3815035897792874:3815035897804574) process_id(144) thread_id(144) + (null) correlation_id(436) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(436) time_ns(3815035897817504:3815035897822154) process_id(144) thread_id(144) + (null) correlation_id(437) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(437) time_ns(3815035897824284:3815035897837944) process_id(144) thread_id(144) PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (20) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (19) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(446) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(446) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(447) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(447) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (18) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (17) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> + +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(457) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(457) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(458) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(458) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (16) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (15) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(468) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(468) on-exit pid(144) tid(144)> + + + + + +<__hipPopCallConfiguration id(171) correlation_id(469) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(469) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + Activity records: + KernelExecution correlation_id(437) time_ns(3815035897887275:3815035899093411) device_id(0) queue_id(0) + + CopyDeviceToHost correlation_id(438) time_ns(3815035897865044:3815035900405727) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(438) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(438) time_ns(3815035897841624:3815035900448898) process_id(144) thread_id(144) + + (null) correlation_id(439) time_ns(0:0) external_id(31) + hipFree correlation_id(439) time_ns(3815035907902984:3815035908043635) process_id(144) thread_id(144) + (null) correlation_id(440) time_ns(0:0) external_id(31) + hipFree correlation_id(440) time_ns(3815035908046365:3815035908071515) process_id(144) thread_id(144) + hipSetDevice correlation_id(441) time_ns(3815035920396485:3815035920421425) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(442) time_ns(3815035920424335:3815035920430615) process_id(144) thread_id(144) + hipMalloc correlation_id(443) time_ns(3815035920787939:3815035921466595) process_id(144) thread_id(144) + hipMalloc correlation_id(444) time_ns(3815035921468605:3815035921540465) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(445) time_ns(3815035921591766:3815035923193830) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(445) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(445) time_ns(3815035921542895:3815035923212340) process_id(144) thread_id(144) + (null) correlation_id(446) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(446) time_ns(3815035923218820:3815035923235060) process_id(144) thread_id(144) + (null) correlation_id(447) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(447) time_ns(3815035923237260:3815035923241580) process_id(144) thread_id(144) + (null) correlation_id(448) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(448) time_ns(3815035923243910:3815035923256190) process_id(144) thread_id(144) + KernelExecution correlation_id(448) time_ns(3815035923288892:3815035924499028) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(449) time_ns(3815035923293341:3815035925822004) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(449) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(449) time_ns(3815035923268481:3815035925850884) process_id(144) thread_id(144) + (null) correlation_id(450) time_ns(0:0) external_id(31) + hipFree correlation_id(450) time_ns(3815035933135509:3815035933222070) process_id(144) thread_id(144) + (null) correlation_id(451) time_ns(0:0) external_id(31) + hipFree correlation_id(451) time_ns(3815035933224220:3815035933258910) process_id(144) thread_id(144) + hipSetDevice correlation_id(452) time_ns(3815035945550760:3815035945574940) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(453) time_ns(3815035945577550:3815035945584270) process_id(144) thread_id(144) + hipMalloc correlation_id(454) time_ns(3815035945947513:3815035946094564) process_id(144) thread_id(144) + hipMalloc correlation_id(455) time_ns(3815035946096494:3815035946184135) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(456) time_ns(3815035946207875:3815035947827770) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(456) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(456) time_ns(3815035946186535:3815035947838450) process_id(144) thread_id(144) + (null) correlation_id(457) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(457) time_ns(3815035947855160:3815035947871040) process_id(144) thread_id(144) + (null) correlation_id(458) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(458) time_ns(3815035947873910:3815035947878570) process_id(144) thread_id(144) + (null) correlation_id(459) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(459) time_ns(3815035947881070:3815035947894690) process_id(144) thread_id(144) + KernelExecution correlation_id(459) time_ns(3815035947937253:3815035949145463) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(460) time_ns(3815035947915020:3815035950498573) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(460) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(460) time_ns(3815035947897550:3815035950528854) process_id(144) thread_id(144) + (null) correlation_id(461) time_ns(0:0) external_id(31) + hipFree correlation_id(461) time_ns(3815035957831419:3815035957922980) process_id(144) thread_id(144) + (null) correlation_id(462) time_ns(0:0) external_id(31) + hipFree correlation_id(462) time_ns(3815035957925800:3815035957955560) process_id(144) thread_id(144) + hipSetDevice correlation_id(463) time_ns(3815035970276870:3815035970302750) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(464) time_ns(3815035970305760:3815035970312270) process_id(144) thread_id(144) + hipMalloc correlation_id(465) time_ns(3815035970678084:3815035970838935) process_id(144) thread_id(144) + hipMalloc correlation_id(466) time_ns(3815035970841005:3815035970911586) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(467) time_ns(3815035970935546:3815035972548860) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(467) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(467) time_ns(3815035970914266:3815035972558260) process_id(144) thread_id(144) + (null) correlation_id(468) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(468) time_ns(3815035972575360:3815035972583971) process_id(144) thread_id(144) + (null) correlation_id(469) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(469) time_ns(3815035972586821:3815035972604171) process_id(144) thread_id(144) + (null) correlation_id(470) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(470) time_ns(3815035972607161:3815035972623501) process_id(144) thread_id(144) + KernelExecution correlation_id(470) time_ns(3815035972659314:3815035973852264) device_id(0) queue_id(0) PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (14) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (13) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> + +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(479) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(479) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(480) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(480) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (12) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (11) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(490) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(490) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(491) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(491) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (10) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (9) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(501) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(501) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(502) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(502) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + Activity records: + CopyDeviceToHost correlation_id(471) time_ns(3815035972636531:3815035975190334) device_id(0) queue_id(0) bytes(0x0) + + (null) correlation_id(471) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(471) time_ns(3815035972626961:3815035975205514) process_id(144) thread_id(144) + (null) correlation_id(472) time_ns(0:0) external_id(31) + hipFree correlation_id(472) time_ns(3815035982504039:3815035982606820) process_id(144) thread_id(144) + (null) correlation_id(473) time_ns(0:0) external_id(31) + hipFree correlation_id(473) time_ns(3815035982618290:3815035982641850) process_id(144) thread_id(144) + hipSetDevice correlation_id(474) time_ns(3815035994953250:3815035994979340) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(475) time_ns(3815035994982030:3815035994988280) process_id(144) thread_id(144) + hipMalloc correlation_id(476) time_ns(3815035995354204:3815035995501015) process_id(144) thread_id(144) + hipMalloc correlation_id(477) time_ns(3815035995503045:3815035995587746) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(478) time_ns(3815035995610926:3815035997220080) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(478) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(478) time_ns(3815035995590126:3815035997231821) process_id(144) thread_id(144) + (null) correlation_id(479) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(479) time_ns(3815035997248361:3815035997254591) process_id(144) thread_id(144) + (null) correlation_id(480) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(480) time_ns(3815035997266421:3815035997271341) process_id(144) thread_id(144) + (null) correlation_id(481) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(481) time_ns(3815035997274101:3815035997287001) process_id(144) thread_id(144) + KernelExecution correlation_id(481) time_ns(3815035997321363:3815035998498164) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(482) time_ns(3815035997299681:3815035999834534) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(482) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(482) time_ns(3815035997290421:3815035999861284) process_id(144) thread_id(144) + (null) correlation_id(483) time_ns(0:0) external_id(31) + hipFree correlation_id(483) time_ns(3815036007136258:3815036007226569) process_id(144) thread_id(144) + (null) correlation_id(484) time_ns(0:0) external_id(31) + hipFree correlation_id(484) time_ns(3815036007229029:3815036007260299) process_id(144) thread_id(144) + hipSetDevice correlation_id(485) time_ns(3815036019568149:3815036019592529) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(486) time_ns(3815036019595139:3815036019601759) process_id(144) thread_id(144) + hipMalloc correlation_id(487) time_ns(3815036019966983:3815036020145094) process_id(144) thread_id(144) + hipMalloc correlation_id(488) time_ns(3815036020147234:3815036020221425) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(489) time_ns(3815036020245445:3815036021868760) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(489) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(489) time_ns(3815036020224045:3815036021880560) process_id(144) thread_id(144) + (null) correlation_id(490) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(490) time_ns(3815036021898800:3815036021910070) process_id(144) thread_id(144) + (null) correlation_id(491) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(491) time_ns(3815036021912290:3815036021925780) process_id(144) thread_id(144) + (null) correlation_id(492) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(492) time_ns(3815036021928430:3815036021940341) process_id(144) thread_id(144) + KernelExecution correlation_id(492) time_ns(3815036021980099:3815036023189939) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(493) time_ns(3815036021957941:3815036024505314) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(493) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(493) time_ns(3815036021943261:3815036024530254) process_id(144) thread_id(144) + (null) correlation_id(494) time_ns(0:0) external_id(31) + hipFree correlation_id(494) time_ns(3815036031792188:3815036031883219) process_id(144) thread_id(144) + (null) correlation_id(495) time_ns(0:0) external_id(31) + hipFree correlation_id(495) time_ns(3815036031885709:3815036031920079) process_id(144) thread_id(144) + hipSetDevice correlation_id(496) time_ns(3815036044291390:3815036044316640) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(497) time_ns(3815036044319410:3815036044340110) process_id(144) thread_id(144) + hipMalloc correlation_id(498) time_ns(3815036044702103:3815036044835195) process_id(144) thread_id(144) + hipMalloc correlation_id(499) time_ns(3815036044837225:3815036044906505) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(500) time_ns(3815036044929055:3815036046543050) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(500) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(500) time_ns(3815036044908975:3815036046561460) process_id(144) thread_id(144) + (null) correlation_id(501) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(501) time_ns(3815036046567520:3815036046582870) process_id(144) thread_id(144) + (null) correlation_id(502) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(502) time_ns(3815036046585120:3815036046592780) process_id(144) thread_id(144) + (null) correlation_id(503) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(503) time_ns(3815036046594980:3815036046616760) process_id(144) thread_id(144) + KernelExecution correlation_id(503) time_ns(3815036046637357:3815036047828085) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(504) time_ns(3815036046639271:3815036049164323) device_id(0) queue_id(0) bytes(0x0) PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (8) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (7) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(512) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(512) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(513) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(513) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (6) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (5) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + + + +<__hipPushCallConfiguration id(46) correlation_id(523) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(523) on-exit pid(144) tid(144)> + + + + +<__hipPopCallConfiguration id(171) correlation_id(524) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(524) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (4) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (3) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(534) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(534) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(535) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(535) on-exit pid(144) tid(144)> + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + Activity records: + (null) correlation_id(504) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(504) time_ns(3815036046625250:3815036049182923) process_id(144) thread_id(144) + + (null) correlation_id(505) time_ns(0:0) external_id(31) + hipFree correlation_id(505) time_ns(3815036056473418:3815036056565639) process_id(144) thread_id(144) + (null) correlation_id(506) time_ns(0:0) external_id(31) + hipFree correlation_id(506) time_ns(3815036056567929:3815036056598690) process_id(144) thread_id(144) + hipSetDevice correlation_id(507) time_ns(3815036068912469:3815036068937580) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(508) time_ns(3815036068940250:3815036068946510) process_id(144) thread_id(144) + hipMalloc correlation_id(509) time_ns(3815036069314723:3815036069463214) process_id(144) thread_id(144) + hipMalloc correlation_id(510) time_ns(3815036069465214:3815036069550295) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(511) time_ns(3815036069574635:3815036071190080) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(511) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(511) time_ns(3815036069552885:3815036071208420) process_id(144) thread_id(144) + (null) correlation_id(512) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(512) time_ns(3815036071213940:3815036071229220) process_id(144) thread_id(144) + (null) correlation_id(513) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(513) time_ns(3815036071231500:3815036071235850) process_id(144) thread_id(144) + (null) correlation_id(514) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(514) time_ns(3815036071238060:3815036071251050) process_id(144) thread_id(144) + KernelExecution correlation_id(514) time_ns(3815036071297148:3815036072499284) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(515) time_ns(3815036071291341:3815036073825393) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(515) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(515) time_ns(3815036071264080:3815036073844373) process_id(144) thread_id(144) + (null) correlation_id(516) time_ns(0:0) external_id(31) + hipFree correlation_id(516) time_ns(3815036081125628:3815036081211679) process_id(144) thread_id(144) + (null) correlation_id(517) time_ns(0:0) external_id(31) + hipFree correlation_id(517) time_ns(3815036081214249:3815036081244899) process_id(144) thread_id(144) + hipSetDevice correlation_id(518) time_ns(3815036093546159:3815036093571219) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(519) time_ns(3815036093573759:3815036093592309) process_id(144) thread_id(144) + hipMalloc correlation_id(520) time_ns(3815036093959743:3815036094108654) process_id(144) thread_id(144) + hipMalloc correlation_id(521) time_ns(3815036094110494:3815036094182175) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(522) time_ns(3815036094205995:3815036095828529) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(522) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(522) time_ns(3815036094184515:3815036095847300) process_id(144) thread_id(144) + (null) correlation_id(523) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(523) time_ns(3815036095853490:3815036095868410) process_id(144) thread_id(144) + (null) correlation_id(524) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(524) time_ns(3815036095870640:3815036095875120) process_id(144) thread_id(144) + (null) correlation_id(525) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(525) time_ns(3815036095877730:3815036095896330) process_id(144) thread_id(144) + KernelExecution correlation_id(525) time_ns(3815036095920741:3815036097116802) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(526) time_ns(3815036095919000:3815036098452223) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(526) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(526) time_ns(3815036095900120:3815036098469623) process_id(144) thread_id(144) + (null) correlation_id(527) time_ns(0:0) external_id(31) + hipFree correlation_id(527) time_ns(3815036105755527:3815036105844978) process_id(144) thread_id(144) + (null) correlation_id(528) time_ns(0:0) external_id(31) + hipFree correlation_id(528) time_ns(3815036105847448:3815036105876338) process_id(144) thread_id(144) + hipSetDevice correlation_id(529) time_ns(3815036118201588:3815036118239839) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(530) time_ns(3815036118242369:3815036118248409) process_id(144) thread_id(144) + hipMalloc correlation_id(531) time_ns(3815036118611112:3815036119064706) process_id(144) thread_id(144) + hipMalloc correlation_id(532) time_ns(3815036119066826:3815036119138937) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(533) time_ns(3815036119175937:3815036120782961) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(533) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(533) time_ns(3815036119141267:3815036120793202) process_id(144) thread_id(144) + (null) correlation_id(534) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(534) time_ns(3815036120809852:3815036120820852) process_id(144) thread_id(144) + (null) correlation_id(535) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(535) time_ns(3815036120823102:3815036120838312) process_id(144) thread_id(144) + (null) correlation_id(536) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(536) time_ns(3815036120840772:3815036120853162) process_id(144) thread_id(144) + KernelExecution correlation_id(536) time_ns(3815036120891727:3815036122084084) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(537) time_ns(3815036120869332:3815036123418455) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(537) time_ns(0:0) external_id(32) PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (2) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (1) ############################# - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - ptr(0x7fff85b97a98) size(0x400000) - - - - - *ptr(0x0x902000000) - ptr(0x7fff85b97a90) size(0x400000) - - - - - *ptr(0x0x902800000) - dst(0x902000000) src(0x7fd3c6c21010) size(0x400000) kind(1) - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - dst(0x7fd3d4d37010) src(0x902800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + +Device 0 name: Device 687f + + + ptr(0x7ffe270aa780) size(0x400000) + + + + + *ptr(0x0x7f2e7ae00000) + + + + + ptr(0x7ffe270aa778) size(0x400000) + + + + + *ptr(0x0x7f2e7a800000) + + + + + dst(0x7f2e7ae00000) src(0x266df00) size(0x400000) kind(1) + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipLaunchKernel pid(144) tid(144)"> + + +<__hipPushCallConfiguration id(46) correlation_id(545) on-enter pid(144) tid(144)> +<__hipPushCallConfiguration id(46) correlation_id(545) on-exit pid(144) tid(144)> + + + + + + +<__hipPopCallConfiguration id(171) correlation_id(546) on-enter pid(144) tid(144)> +<__hipPopCallConfiguration id(171) correlation_id(546) on-exit pid(144) tid(144)> + + + + + + + + + +rocTX <"after hipLaunchKernel pid(144) tid(144)"> +rocTX <"hipMemcpy pid(144) tid(144)"> + + + dst(0x2a6df10) src(0x7f2e7a800000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(144) tid(144)"> +rocTX <"(null) pid(144) tid(144)"> + + + PASSED! - ptr(0x902000000) - - - - - - ptr(0x902800000) - - - - - + + + ptr(0x7f2e7ae00000) + + + + + + + + + + ptr(0x7f2e7a800000) + + + + + + + # START (0) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! Activity records: - hcCommandKernel correlation_id(294) time_ns(3051996184308280:3051996186150682) device_id(0) queue_id(0) - hcCommandMarker correlation_id(295) time_ns(3051996186153598:3051996186185598) device_id(0) queue_id(0) - hcCommandKernel correlation_id(303) time_ns(3051996225060095:3051996226893857) device_id(0) queue_id(0) - hcCommandMarker correlation_id(304) time_ns(3051996226896741:3051996226929221) device_id(0) queue_id(0) - hcCommandKernel correlation_id(312) time_ns(3051996266004624:3051996267839186) device_id(0) queue_id(0) - hcCommandMarker correlation_id(313) time_ns(3051996267842262:3051996267873622) device_id(0) queue_id(0) - hcCommandKernel correlation_id(321) time_ns(3051996306667810:3051996308511172) device_id(0) queue_id(0) - hcCommandMarker correlation_id(322) time_ns(3051996308514189:3051996308546509) device_id(0) queue_id(0) - hcCommandKernel correlation_id(330) time_ns(3051996347490041:3051996349327803) device_id(0) queue_id(0) - hcCommandMarker correlation_id(331) time_ns(3051996349330698:3051996349362378) device_id(0) queue_id(0) - hcCommandKernel correlation_id(339) time_ns(3051996388335493:3051996390179655) device_id(0) queue_id(0) - hcCommandMarker correlation_id(340) time_ns(3051996390182748:3051996390214908) device_id(0) queue_id(0) - hcCommandKernel correlation_id(348) time_ns(3051996429304336:3051996431155538) device_id(0) queue_id(0) - hcCommandMarker correlation_id(349) time_ns(3051996431158720:3051996431190080) device_id(0) queue_id(0) - hcCommandKernel correlation_id(357) time_ns(3051996468763730:3051996469253010) device_id(0) queue_id(0) - hcCommandMarker correlation_id(358) time_ns(3051996469255974:3051996469262694) device_id(0) queue_id(0) - hcCommandKernel correlation_id(366) time_ns(3051996506831264:3051996507319744) device_id(0) queue_id(0) - hcCommandMarker correlation_id(367) time_ns(3051996507322758:3051996507329638) device_id(0) queue_id(0) - hcCommandKernel correlation_id(375) time_ns(3051996544783270:3051996545264070) device_id(0) queue_id(0) - hcCommandMarker correlation_id(376) time_ns(3051996545267287:3051996545274007) device_id(0) queue_id(0) - hcCommandKernel correlation_id(384) time_ns(3051996583007702:3051996583501142) device_id(0) queue_id(0) - hcCommandMarker correlation_id(385) time_ns(3051996583504090:3051996583510810) device_id(0) queue_id(0) - hcCommandKernel correlation_id(393) time_ns(3051996621035144:3051996621520104) device_id(0) queue_id(0) - hcCommandMarker correlation_id(394) time_ns(3051996621522965:3051996621529525) device_id(0) queue_id(0) - hcCommandKernel correlation_id(402) time_ns(3051996659024927:3051996659511327) device_id(0) queue_id(0) - hcCommandMarker correlation_id(403) time_ns(3051996659514133:3051996659520693) device_id(0) queue_id(0) - hcCommandKernel correlation_id(411) time_ns(3051996696776640:3051996697261120) device_id(0) queue_id(0) - hcCommandMarker correlation_id(412) time_ns(3051996697264004:3051996697270564) device_id(0) queue_id(0) - hcCommandKernel correlation_id(420) time_ns(3051996735008284:3051996735507164) device_id(0) queue_id(0) - hcCommandMarker correlation_id(421) time_ns(3051996735510106:3051996735516826) device_id(0) queue_id(0) - hcCommandKernel correlation_id(429) time_ns(3051996772845718:3051996773331958) device_id(0) queue_id(0) - hcCommandMarker correlation_id(430) time_ns(3051996773334854:3051996773341254) device_id(0) queue_id(0) - hcCommandKernel correlation_id(438) time_ns(3051996811089785:3051996812940667) device_id(0) queue_id(0) - hcCommandMarker correlation_id(439) time_ns(3051996812943536:3051996812975376) device_id(0) queue_id(0) - hcCommandKernel correlation_id(447) time_ns(3051996852002198:3051996853849400) device_id(0) queue_id(0) - hcCommandMarker correlation_id(448) time_ns(3051996853852333:3051996853884653) device_id(0) queue_id(0) + hipMemcpy correlation_id(537) time_ns(3815036120856432:3815036123437026) process_id(144) thread_id(144) + (null) correlation_id(538) time_ns(0:0) external_id(31) + hipFree correlation_id(538) time_ns(3815036130722150:3815036130810701) process_id(144) thread_id(144) + (null) correlation_id(539) time_ns(0:0) external_id(31) + hipFree correlation_id(539) time_ns(3815036130812901:3815036130847951) process_id(144) thread_id(144) + hipSetDevice correlation_id(540) time_ns(3815036143160341:3815036143184391) process_id(144) thread_id(144) + hipGetDeviceProperties correlation_id(541) time_ns(3815036143187041:3815036143193641) process_id(144) thread_id(144) + hipMalloc correlation_id(542) time_ns(3815036143557975:3815036143718166) process_id(144) thread_id(144) + hipMalloc correlation_id(543) time_ns(3815036143720206:3815036143791157) process_id(144) thread_id(144) + CopyHostToDevice correlation_id(544) time_ns(3815036143814317:3815036145435511) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(544) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(544) time_ns(3815036143793697:3815036145447301) process_id(144) thread_id(144) + (null) correlation_id(545) time_ns(0:0) external_id(33) + __hipPushCallConfiguration correlation_id(545) time_ns(3815036145463922:3815036145481102) process_id(144) thread_id(144) + (null) correlation_id(546) time_ns(0:0) external_id(33) + __hipPopCallConfiguration correlation_id(546) time_ns(3815036145483422:3815036145488132) process_id(144) thread_id(144) + (null) correlation_id(547) time_ns(0:0) external_id(33) + hipLaunchKernel correlation_id(547) time_ns(3815036145490412:3815036145506322) process_id(144) thread_id(144) + KernelExecution correlation_id(547) time_ns(3815036145539810:3815036146741501) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(548) time_ns(3815036145537902:3815036148077515) device_id(0) queue_id(0) bytes(0x0) + (null) correlation_id(548) time_ns(0:0) external_id(32) + hipMemcpy correlation_id(548) time_ns(3815036145523682:3815036148102905) process_id(144) thread_id(144) + (null) correlation_id(549) time_ns(0:0) external_id(31) + hipFree correlation_id(549) time_ns(3815036155377150:3815036155466301) process_id(144) thread_id(144) + (null) correlation_id(550) time_ns(0:0) external_id(31) + hipFree correlation_id(550) time_ns(3815036155468681:3815036155500411) process_id(144) thread_id(144) # STOP ############################# - diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_kfd_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_kfd_trace.txt index 3116d214e2..c66a0e6ea5 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_kfd_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_kfd_trace.txt @@ -1,1209 +1,2839 @@ -ROCTracer (pid=14428): ++ LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose +ROCTracer (pid=1963): KFD-trace() -1711656274683283:1711656274688056 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711656274705718:1711656274710339 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711656274713261:1711656274722541 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711656274725424:1711656274728029 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711656274729886:1711656274735482 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711656274742034:1711656274744305 14428:14428 hsaKmtSetEvent() = 0 -1711656274809211:1711656274811129 14428:14428 hsaKmtDestroyEvent() = 0 -1711656274816568:1711656274821175 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711656274823354:1711656274834528 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711656274837339:1711656274838199 14428:14428 hsaKmtDestroyEvent() = 0 -ROCTracer (pid=14428): - KFD-trace() -1711656290453097:1711656290523908 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656290537326:1711656290538147 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656290541399:1711656290550239 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656290565327:1711656291046996 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656291051511:1711656291052178 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656291054575:1711656291077326 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656291082185:1711656291083612 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656291087552:1711656291088453 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656291090542:1711656291564577 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656291568119:1711656291568666 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656291570701:1711656291590288 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656291593364:1711656291594542 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656291596549:1711656291597524 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656291601574:1711656292083059 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656292086825:1711656292087354 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656292089305:1711656292109580 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656292112482:1711656292113580 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656292115562:1711656292116410 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656292118335:1711656292591935 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656292595443:1711656292595945 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656292597821:1711656292617813 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656292620669:1711656292621745 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656292623703:1711656292624504 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656292634500:1711656292640319 14428:14428 hsaKmtRegisterMemoryWithFlags(, , ) = 0 -1711656292642705:1711656292654960 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656292714317:1711656292716163 14428:14428 hsaKmtGetTileConfig(, ) = 0 -Device name Ellesmere [Radeon RX 470/480/570/570X/580/580X] -1711656294972765:1711656294991098 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656294996100:1711656295013418 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656295020532:1711656295026578 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656295029067:1711656295042840 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 +3802694735152486:3802694735153246 1963:1963 hsaKmtGetClockCounters(, ) = 0 +3802694735152956 +3802694738539001:3802694738541771 1963:1963 hsaKmtGetTileConfig(, ) = 0 +3802694738601732:3802694738640002 1963:1963 hsaKmtAllocMemory(, , ) = 0 +3802694738646482:3802694738647342 1963:1963 hsaKmtQueryPointerInfo(0x7f7207ad6000, ) = 0 +3802694738652032:3802694738968704 1963:1963 hsaKmtMapMemoryToGPUNodes(0x7f7207ad6000, , , , , ) = 0 +3802694738974514:3802694739171556 1963:1963 hsaKmtAllocMemory(, , ) = 0 +3802694739175046:3802694739175616 1963:1963 hsaKmtQueryPointerInfo(0x7f706ab00000, ) = 0 +3802694739177546:3802694739300147 1963:1963 hsaKmtMapMemoryToGPUNodes(0x7f706ab00000, , , , , ) = 0 +3802694739305547:3802694739497408 1963:1963 hsaKmtAllocMemory(, , ) = 0 +3802694739500718:3802694739501248 1963:1963 hsaKmtQueryPointerInfo(0x7f706a900000, ) = 0 +3802694739503338:3802694739603359 1963:1963 hsaKmtMapMemoryToGPUNodes(0x7f706a900000, , , , , ) = 0 +3802694739610209:3802694739613579 1963:1963 hsaKmtCreateEvent(, , , ) = 0 +Device name Device 687f +3802694740730717:3802694740752708 1963:1963 hsaKmtAllocMemory(, , ) = 0 +3802694740756768:3802694740842988 1963:1963 hsaKmtMapMemoryToGPUNodes(0x7f7069800000, , , , , ) = 0 +3802694740848718:3802694740858388 1963:1963 hsaKmtAllocMemory(, , ) = 0 +3802694740860548:3802694740911209 1963:1963 hsaKmtMapMemoryToGPUNodes(0x7f7069200000, , , , , ) = 0 ## Iteration (99) ################# -1711656295061933:1711656295062724 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656295065460:1711656295066077 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656295083138:1711656295567582 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656295570915:1711656295587199 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656295593109:1711656295594779 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656295988404:1711656296036734 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656296040894:1711656296049163 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656296052882:1711656296091449 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656296094246:1711656296103224 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656296116104:1711656296125207 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656296129076:1711656296130227 14428:14428 hsaKmtRegisterMemoryToNodes(, , , ) = 0 -1711656296132544:1711656296140026 14428:14428 hsaKmtMapMemoryToGPU(, , ) = 0 -1711656296143006:1711656296143878 14428:14428 hsaKmtGetNodeProperties(, ) = 0 -1711656296146211:1711656296152930 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656296155159:1711656296155796 14428:14428 hsaKmtRegisterMemoryToNodes(, , , ) = 0 -1711656296157762:1711656296165465 14428:14428 hsaKmtMapMemoryToGPU(, , ) = 0 -1711656296167526:1711656296168074 14428:14428 hsaKmtGetNodeProperties(, ) = 0 -1711656296169868:1711656297649482 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656297657999:1711656297659158 14428:14428 hsaKmtRegisterMemoryToNodes(, , , ) = 0 -1711656297661692:1711656297697930 14428:14428 hsaKmtMapMemoryToGPU(, , ) = 0 -1711656297661692:1711656300911064 14428:14428 hsaKmtCreateQueue(, , , , , , , ) = 0 -1711656300915605:1711656300917993 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656300922125:1711656300925758 14428:14428 hsaKmtSetEvent() = 0 -1711656300927823:1711656300941191 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656300943856:1711656300951408 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656300957132:1711656300958166 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656300960252:1711656301011563 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656301013892:1711656301021348 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656301026653:1711656301034568 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656301036945:1711656301043796 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656301051804:1711656301059230 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656301061612:1711656301068651 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656301072443:1711656301079861 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656301082194:1711656301089098 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564014284:1711656564043702 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564050880:1711656564071487 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564082714:1711656564103006 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564106100:1711656564124492 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564265860:1711656564279550 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564283178:1711656564291456 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564385556:1711656564406999 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564410415:1711656564418395 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564503051:1711656564515001 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564518393:1711656564526285 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564609932:1711656564621286 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564624539:1711656564632394 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564716364:1711656564727716 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564731059:1711656564739665 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564822840:1711656564834116 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564837414:1711656564845351 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564914976:1711656564927027 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656564930376:1711656564938392 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656564998464:1711656565010382 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565013907:1711656565021915 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565092755:1711656565106165 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565109513:1711656565117425 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565196706:1711656565209126 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565212623:1711656565220600 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565280911:1711656565292143 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565295537:1711656565303354 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565365962:1711656565378091 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565381352:1711656565389132 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565454869:1711656565467356 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565470687:1711656565478965 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565540719:1711656565553029 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565556486:1711656565564360 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565625743:1711656565637389 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565640584:1711656565648858 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565709322:1711656565720540 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565726865:1711656565737924 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565819379:1711656565831332 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565834934:1711656565842997 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565903796:1711656565915232 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656565918510:1711656565926230 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656565986763:1711656565998761 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656566002065:1711656566009935 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656566110666:1711656566124112 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656566127574:1711656566135844 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656566206607:1711656566219650 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656566223133:1711656566231463 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656603923279:1711656603961129 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656603973620:1711656603987633 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656603992940:1711656604252068 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656604255381:1711656604276479 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656604353651:1711656604364230 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656604367240:1711656604368329 14428:14428 hsaKmtRegisterMemoryToNodes(, , , ) = 0 -1711656604370657:1711656604378580 14428:14428 hsaKmtMapMemoryToGPU(, , ) = 0 -1711656604380987:1711656604381926 14428:14428 hsaKmtGetNodeProperties(, ) = 0 -1711656604384401:1711656604393699 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656604395953:1711656604396620 14428:14428 hsaKmtRegisterMemoryToNodes(, , , ) = 0 -1711656604398576:1711656604406194 14428:14428 hsaKmtMapMemoryToGPU(, , ) = 0 -1711656604408234:1711656604408756 14428:14428 hsaKmtGetNodeProperties(, ) = 0 -1711656604410520:1711656605878306 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656605886748:1711656605887837 14428:14428 hsaKmtRegisterMemoryToNodes(, , , ) = 0 -1711656605890527:1711656605930390 14428:14428 hsaKmtMapMemoryToGPU(, , ) = 0 -1711656605890527:1711656605956882 14428:14428 hsaKmtCreateQueue(, , , , , , , ) = 0 -1711656605962088:1711656605969009 14428:14428 hsaKmtSetEvent() = 0 -1711656301152359:1711656605983168 14428:14432 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656605971287:1711656605993810 14428:14428 hsaKmtAllocMemory(, , ) = 0 -1711656605996398:1711656606004482 14428:14428 hsaKmtMapMemoryToGPUNodes(, , , , , ) = 0 -1711656606022609:1711656606024645 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656606043400:1711656606044449 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656606250624:1711656606586276 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656606250624:1711656606600291 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656606611383:1711656606612958 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656606626848:1711656606627566 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802694741543903:3802694741582814 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694741609864:3802694741689195 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207ad4000, , , , , ) = 0 +3802694741697785:3802694741763945 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694741766955:3802694741820396 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a00000, , , , , ) = 0 +3802694741831176:3802694741846006 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694741849946:3802694741850686 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f7207ad2000, , , ) = 0 +3802694741852886:3802694741904076 1963:1966 hsaKmtMapMemoryToGPU(0x7f7207ad2000, , ) = 0 +3802694741907576:3802694741908436 1963:1966 hsaKmtGetNodeProperties(, ) = 0 +3802694741910266:3802694741921686 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694741923706:3802694741924276 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f7207ad0000, , , ) = 0 +3802694741926126:3802694741975137 1963:1966 hsaKmtMapMemoryToGPU(0x7f7207ad0000, , ) = 0 +3802694741977157:3802694741977627 1963:1966 hsaKmtGetNodeProperties(, ) = 0 +3802694741979167:3802694745546513 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694745565343:3802694745567153 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f7062a00000, , , ) = 0 +3802694745570933:3802694746189938 1963:1966 hsaKmtMapMemoryToGPU(0x7f7062a00000, , ) = 0 +3802694745570933:3802694746693502 1963:1966 hsaKmtCreateQueue(, , , , 0x7f7207a00000, , , ) = 0 +3802694746700712:3802694746704312 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694746713442:3802694746716772 1963:1966 hsaKmtSetEvent() = 0 +3802694746719092:3802694746736732 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694746739212:3802694746790603 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207aca000, , , , , ) = 0 +3802694746795163:3802694746807113 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694746809233:3802694746859223 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207ac8000, , , , , ) = 0 +3802694746865713:3802694746889583 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694746891843:3802694746943174 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a60000, , , , , ) = 0 +3802694746948224:3802694746959264 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694746962184:3802694746963194 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f7207a76000, , , ) = 0 +3802694746965224:3802694747017314 1963:1966 hsaKmtMapMemoryToGPU(0x7f7207a76000, , ) = 0 +3802694747019674:3802694747020654 1963:1966 hsaKmtGetNodeProperties(, ) = 0 +3802694747022354:3802694747034174 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694747036154:3802694747036714 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f7207a74000, , , ) = 0 +3802694747038534:3802694747088595 1963:1966 hsaKmtMapMemoryToGPU(0x7f7207a74000, , ) = 0 +3802694747090655:3802694747091115 1963:1966 hsaKmtGetNodeProperties(, ) = 0 +3802694747092675:3802694750609130 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694750626811:3802694750628201 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f7061400000, , , ) = 0 +3802694750631551:3802694751072424 1963:1966 hsaKmtMapMemoryToGPU(0x7f7061400000, , ) = 0 +3802694750631551:3802694751241245 1963:1966 hsaKmtCreateQueue(, , , , 0x7f7207a60000, , , ) = 0 +3802694751249705:3802694751254855 1963:1966 hsaKmtSetEvent() = 0 +3802694751257425:3802694751292685 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694746963204:3802694751286465 1963:1964 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802694751295645:3802694751359416 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a72000, , , , , ) = 0 +3802694751377856:3802694751477337 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694751481997:3802694751482737 1963:1966 hsaKmtQueryPointerInfo(0x7f7207900000, ) = 0 +3802694751485637:3802694751586337 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207900000, , , , , ) = 0 +3802694751598518:3802694751601368 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751604048:3802694751604758 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751606748:3802694751607728 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751609728:3802694751610628 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751612688:3802694751613548 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751615598:3802694751616488 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751618408:3802694751619278 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751621188:3802694751621948 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751623868:3802694751624608 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751626408:3802694751627078 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751628878:3802694751629568 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751631358:3802694751633318 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751635238:3802694751636148 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751638108:3802694751639018 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751640888:3802694751641748 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751643638:3802694751644298 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751646178:3802694751646838 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751648698:3802694751649458 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751651278:3802694751651958 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751653748:3802694751654518 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751656508:3802694751657228 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751659158:3802694751659928 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751661778:3802694751662648 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751664778:3802694751665618 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751667488:3802694751668288 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751670098:3802694751683348 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694751685558:3802694751742969 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a5c000, , , , , ) = 0 +3802694751747559:3802694751748559 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751750569:3802694751751259 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751753029:3802694751753759 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751755619:3802694751756269 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751758169:3802694751758859 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751767309:3802694751768039 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751769899:3802694751770579 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751772349:3802694751773029 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751774859:3802694751775529 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751778839:3802694751779549 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751781329:3802694751781989 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751783739:3802694751784399 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751786169:3802694751786969 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751788739:3802694751789409 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751791189:3802694751791919 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751793659:3802694751794319 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751796089:3802694751796749 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751798499:3802694751799229 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751800989:3802694751801649 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751803409:3802694751804069 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751805859:3802694751806529 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751808259:3802694751808919 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751810679:3802694751811339 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751813119:3802694751813779 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751815509:3802694751816169 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751817919:3802694751818579 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751820359:3802694751821009 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751822759:3802694751823419 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751825159:3802694751825969 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751827709:3802694751828379 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751830119:3802694751831129 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751832889:3802694751833719 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751835489:3802694751836149 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751837939:3802694751838599 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751840349:3802694751841009 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751842759:3802694751843509 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751845249:3802694751846539 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751848289:3802694751849959 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751851709:3802694751852399 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751854159:3802694751854859 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751856599:3802694751857269 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751858999:3802694751859659 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751861409:3802694751862069 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751863809:3802694751864479 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751866219:3802694751866959 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751868699:3802694751869370 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751871120:3802694751871790 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751873540:3802694751874210 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751876000:3802694751876660 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751881660:3802694751882390 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751884210:3802694751884900 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751886650:3802694751887710 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751889480:3802694751890540 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751892280:3802694751893060 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751894790:3802694751895730 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751897460:3802694751898340 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751900060:3802694751900730 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751902450:3802694751903120 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751904860:3802694751905520 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751907230:3802694751907930 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751909650:3802694751910450 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751912200:3802694751912860 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751914580:3802694751915310 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751917100:3802694751917870 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694751919650:3802694751935850 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694751938200:3802694751999620 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a54000, , , , , ) = 0 +3802694752014141:3802694752015201 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752017461:3802694752018141 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752019941:3802694752020621 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752022371:3802694752023061 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752024801:3802694752025611 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752027361:3802694752028361 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752030131:3802694752030941 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752032711:3802694752033511 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752035351:3802694752036121 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752037841:3802694752038531 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752040281:3802694752041051 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752042801:3802694752043831 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752045571:3802694752046311 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752048041:3802694752048711 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752050471:3802694752051141 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752052881:3802694752053541 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752055281:3802694752055951 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752057671:3802694752058341 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752060101:3802694752060781 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752062491:3802694752063151 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752066191:3802694752067141 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752068941:3802694752069611 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752071341:3802694752072011 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752073761:3802694752074441 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752076161:3802694752076831 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752078551:3802694752079221 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752086881:3802694752087611 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752089581:3802694752090251 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752091991:3802694752092661 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752094401:3802694752095081 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752096831:3802694752097521 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752099251:3802694752100331 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752102081:3802694752102971 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752104711:3802694752105521 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752107271:3802694752108081 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752109821:3802694752110901 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752112651:3802694752113671 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752115461:3802694752116151 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752117911:3802694752118581 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752120331:3802694752121001 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752122731:3802694752123401 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752125141:3802694752125951 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752127671:3802694752128341 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752130071:3802694752130751 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752132491:3802694752133151 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752134871:3802694752135551 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752137291:3802694752137951 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752139691:3802694752140361 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752142092:3802694752143652 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752145422:3802694752146092 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752147822:3802694752148492 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752150232:3802694752150892 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752152622:3802694752153292 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752155032:3802694752155712 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752157442:3802694752158112 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752159852:3802694752160522 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752162292:3802694752162962 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752164692:3802694752165352 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752167092:3802694752167772 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752169522:3802694752170192 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752171922:3802694752172592 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752174322:3802694752174992 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752176722:3802694752177452 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752179232:3802694752179892 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752181632:3802694752182292 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752184022:3802694752184682 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752186422:3802694752187092 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752188852:3802694752189532 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752191242:3802694752191912 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752197142:3802694752198032 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752199852:3802694752200782 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752202512:3802694752203242 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752204982:3802694752205682 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752207402:3802694752208122 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752209872:3802694752210672 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752212442:3802694752213102 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752214872:3802694752215532 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752218222:3802694752218902 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752220662:3802694752221392 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752223142:3802694752223802 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752225572:3802694752226252 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752227982:3802694752228652 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752230392:3802694752231122 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752232882:3802694752233622 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752235342:3802694752236002 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752237882:3802694752238622 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752240402:3802694752241072 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752242812:3802694752243472 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752245202:3802694752245872 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752247612:3802694752248272 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752249992:3802694752250672 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752252402:3802694752253072 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752254832:3802694752255492 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752257242:3802694752257902 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752259652:3802694752260312 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752262052:3802694752262712 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752264452:3802694752265112 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752266852:3802694752267522 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752269262:3802694752269922 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752271682:3802694752272502 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752274232:3802694752275002 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752276753:3802694752277433 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752279213:3802694752279883 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752281613:3802694752282273 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752284013:3802694752284673 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752286413:3802694752287883 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752289643:3802694752290313 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752292063:3802694752292743 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752294473:3802694752295163 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752296893:3802694752298033 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752299763:3802694752300643 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752302383:3802694752303143 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752304863:3802694752305703 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752310933:3802694752311643 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752313493:3802694752314163 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752315983:3802694752316663 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752318453:3802694752319123 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752320863:3802694752321523 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752323263:3802694752324023 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752325763:3802694752326433 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752328173:3802694752328843 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752330573:3802694752331373 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752333113:3802694752333783 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752335523:3802694752336183 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752337923:3802694752338653 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752340373:3802694752341043 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752342773:3802694752343473 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752345223:3802694752345903 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752347693:3802694752366613 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694752368993:3802694752431654 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a48000, , , , , ) = 0 +3802694752437234:3802694752438594 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752440584:3802694752441474 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752443244:3802694752444014 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752445784:3802694752446434 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752448174:3802694752448894 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752450664:3802694752451384 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752453144:3802694752453814 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752455584:3802694752456384 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752458134:3802694752458914 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752460664:3802694752461394 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752463134:3802694752463914 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752465654:3802694752466334 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752468074:3802694752468814 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752470564:3802694752471374 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752473104:3802694752473784 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752475524:3802694752476184 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752477964:3802694752478634 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752480354:3802694752481164 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752483874:3802694752484574 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752486354:3802694752487024 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752488774:3802694752489454 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752491194:3802694752491874 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752493624:3802694752494314 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752496064:3802694752496744 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752498504:3802694752499184 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752506054:3802694752506864 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752508734:3802694752509424 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752511154:3802694752511834 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752513564:3802694752514234 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752515964:3802694752516644 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752518374:3802694752519054 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752520804:3802694752521484 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752523204:3802694752523884 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752525624:3802694752526294 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752528084:3802694752528764 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752530494:3802694752531164 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752532894:3802694752533744 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752535494:3802694752536194 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752537924:3802694752538614 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752540354:3802694752541444 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752543184:3802694752544004 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752545735:3802694752546405 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752548125:3802694752548805 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752550525:3802694752551305 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752553025:3802694752553835 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752555555:3802694752556295 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752558975:3802694752559655 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752561405:3802694752562115 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752563855:3802694752564575 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752566315:3802694752566975 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752568705:3802694752569475 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752571205:3802694752571965 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752573715:3802694752574385 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752576115:3802694752576785 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752578555:3802694752579285 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752581015:3802694752581695 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752583475:3802694752584145 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752585885:3802694752586555 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752588305:3802694752588975 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752590705:3802694752591385 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752593135:3802694752594255 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752595975:3802694752596785 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752598525:3802694752599295 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752601025:3802694752601695 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752603435:3802694752604105 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752605825:3802694752606495 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752608225:3802694752608955 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752610675:3802694752611345 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752613085:3802694752613745 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752618945:3802694752619645 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752621485:3802694752622145 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752623895:3802694752624555 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752626295:3802694752626955 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752628705:3802694752629365 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752631095:3802694752633555 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752635365:3802694752636025 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752637775:3802694752638435 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752640185:3802694752640845 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752642575:3802694752643245 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752644985:3802694752645655 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752647385:3802694752648045 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752649785:3802694752650455 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752652195:3802694752652925 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752654655:3802694752655455 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752657185:3802694752657845 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752659585:3802694752660245 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752662015:3802694752662675 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752664405:3802694752665065 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752666805:3802694752667475 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752669205:3802694752669865 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752671595:3802694752672265 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752674005:3802694752674675 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752676415:3802694752677135 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752678885:3802694752679546 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752681266:3802694752681926 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752683666:3802694752684336 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752686076:3802694752686736 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752688466:3802694752689126 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752690866:3802694752691536 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752693276:3802694752694106 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752695866:3802694752697056 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752698786:3802694752699616 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752701356:3802694752702156 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752704776:3802694752705656 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752707406:3802694752708286 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752710036:3802694752710746 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752712486:3802694752713146 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752714876:3802694752715646 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752717366:3802694752718366 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752720096:3802694752720766 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752722486:3802694752723286 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752725006:3802694752725676 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752727396:3802694752728066 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752733426:3802694752734136 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752735956:3802694752736626 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752738356:3802694752739016 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752740796:3802694752741466 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752743196:3802694752743866 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752745606:3802694752746416 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752748146:3802694752748806 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752750546:3802694752751276 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752753026:3802694752753896 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752755646:3802694752756316 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752758036:3802694752759126 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752760886:3802694752761816 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752763556:3802694752764326 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752766076:3802694752766866 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752768606:3802694752769446 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752771166:3802694752772016 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752773746:3802694752774426 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752776146:3802694752776986 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752778696:3802694752780526 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752782296:3802694752783026 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752784776:3802694752785616 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752787336:3802694752788156 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752789886:3802694752790716 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752792466:3802694752793136 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752794866:3802694752795706 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752797436:3802694752798106 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752799836:3802694752800506 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752802256:3802694752803096 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752804826:3802694752805666 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752807396:3802694752808226 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752809956:3802694752810766 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752812486:3802694752813276 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752815007:3802694752815687 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752817417:3802694752818317 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752820057:3802694752820847 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752822577:3802694752823247 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752824977:3802694752825757 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752827477:3802694752828147 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752829957:3802694752830657 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752832377:3802694752833117 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752834847:3802694752835507 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752837247:3802694752837987 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752839707:3802694752840527 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752845487:3802694752846197 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752847987:3802694752848667 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752850397:3802694752851077 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752852807:3802694752853477 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752856097:3802694752856777 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752858547:3802694752859207 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752860927:3802694752861727 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752863467:3802694752864157 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752865867:3802694752866707 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752868437:3802694752869107 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752870827:3802694752871497 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752873217:3802694752873877 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752875597:3802694752876327 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752878047:3802694752878717 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752880447:3802694752881117 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752882837:3802694752883507 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752885227:3802694752885907 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752887627:3802694752888287 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752890017:3802694752890677 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752892407:3802694752893087 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752894807:3802694752895477 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752897207:3802694752897877 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752899607:3802694752900277 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752902007:3802694752902667 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752904407:3802694752905077 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752906797:3802694752907457 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752909197:3802694752909857 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752911737:3802694752912407 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752914147:3802694752914817 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752916537:3802694752917227 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752918957:3802694752919627 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752921367:3802694752922167 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752923897:3802694752925717 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752927487:3802694752928227 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752929947:3802694752930617 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752932357:3802694752933027 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752934757:3802694752935427 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752937167:3802694752937837 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752939557:3802694752940217 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752941947:3802694752942717 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752944467:3802694752945127 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752946837:3802694752947507 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752949238:3802694752949908 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752951628:3802694752952288 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752957518:3802694752958338 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752960198:3802694752960878 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752962628:3802694752963318 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752965078:3802694752965748 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752967488:3802694752968148 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752969898:3802694752970568 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752972318:3802694752972978 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752974718:3802694752975398 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752977118:3802694752977788 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752979518:3802694752980188 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752981938:3802694752982738 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752984488:3802694752985158 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752986898:3802694752987568 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752989298:3802694752989958 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752991708:3802694752992378 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752994118:3802694752994778 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694752996518:3802694752997188 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753000028:3802694753000718 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753002468:3802694753003198 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753004918:3802694753005588 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753007338:3802694753008008 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753009728:3802694753010688 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753012428:3802694753013088 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753014818:3802694753015498 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753017218:3802694753017958 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753019688:3802694753020358 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753022098:3802694753022788 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753024518:3802694753025208 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753026938:3802694753027918 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753029648:3802694753030578 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753032338:3802694753033138 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753034878:3802694753035538 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753037278:3802694753037948 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753039688:3802694753040478 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753042218:3802694753042878 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753044608:3802694753045278 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753047098:3802694753047758 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753049488:3802694753050158 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753052018:3802694753052718 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753054448:3802694753055118 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753056848:3802694753057518 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753059248:3802694753059988 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753061718:3802694753062388 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753067038:3802694753067748 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753069568:3802694753070248 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753071988:3802694753073558 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753075308:3802694753076018 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753077758:3802694753078428 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753080268:3802694753080948 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753082719:3802694753083379 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753085119:3802694753086059 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753087789:3802694753088829 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753090569:3802694753091419 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753093149:3802694753093829 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753095559:3802694753096229 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753097979:3802694753098959 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753100759:3802694753125359 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694753127799:3802694753207579 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f72079e0000, , , , , ) = 0 +3802694753213459:3802694753214799 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753216789:3802694753217630 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753219390:3802694753220210 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753221960:3802694753222660 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753224440:3802694753225120 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753226870:3802694753227620 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753229370:3802694753230120 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753231890:3802694753232690 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753234450:3802694753235270 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753237010:3802694753237830 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753239660:3802694753240410 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753242260:3802694753242950 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753244810:3802694753245630 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753247420:3802694753248100 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753249850:3802694753250530 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753252490:3802694753253180 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753254960:3802694753255660 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753257400:3802694753258080 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753259830:3802694753260510 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753262250:3802694753262940 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753264690:3802694753265470 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753267200:3802694753267880 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753269700:3802694753270380 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753272100:3802694753272850 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753274570:3802694753275250 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753277010:3802694753277700 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753279460:3802694753280130 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753281900:3802694753282580 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753289780:3802694753290510 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753292420:3802694753293100 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753295870:3802694753297110 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753298890:3802694753299840 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753301590:3802694753302380 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753304110:3802694753304790 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753306520:3802694753307190 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753308930:3802694753309630 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753311390:3802694753312320 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753314060:3802694753314750 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753316490:3802694753317170 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753318900:3802694753319750 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753321500:3802694753322320 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753324040:3802694753324770 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753326500:3802694753327170 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753328900:3802694753329580 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753331340:3802694753332010 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753333750:3802694753334420 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753336170:3802694753337100 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753338820:3802694753339550 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753341270:3802694753341950 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753343690:3802694753344350 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753346100:3802694753346770 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753348500:3802694753349290 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753351020:3802694753351801 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753353531:3802694753354261 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753356241:3802694753356921 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753358681:3802694753359471 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753361221:3802694753362011 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753363751:3802694753364421 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753366151:3802694753367811 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753369561:3802694753370221 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753371971:3802694753372641 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753374361:3802694753375041 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753376771:3802694753377581 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753379311:3802694753379991 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753381741:3802694753382501 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753384221:3802694753384891 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753386631:3802694753387291 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753389001:3802694753389681 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753391421:3802694753392211 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753393931:3802694753394591 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753396341:3802694753397011 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753398741:3802694753399401 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753404541:3802694753405251 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753407051:3802694753407731 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753409481:3802694753410151 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753411901:3802694753412571 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753414321:3802694753415001 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753416731:3802694753417401 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753419141:3802694753420091 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753421831:3802694753422641 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753424371:3802694753425381 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753427111:3802694753427981 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753429731:3802694753430551 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753432271:3802694753433001 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753434731:3802694753435391 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753437111:3802694753437771 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753439501:3802694753440171 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753442831:3802694753443611 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753445371:3802694753446031 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753447761:3802694753448441 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753450191:3802694753450871 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753452601:3802694753453271 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753455011:3802694753455801 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753457521:3802694753458201 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753459951:3802694753460621 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753462331:3802694753463011 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753464741:3802694753465411 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753467141:3802694753467811 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753469551:3802694753470281 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753472021:3802694753472721 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753474461:3802694753475281 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753477021:3802694753477681 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753479431:3802694753480111 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753481841:3802694753482511 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753484251:3802694753485021 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753486772:3802694753487432 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753489172:3802694753489842 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753491582:3802694753492252 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753493962:3802694753494642 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753496362:3802694753497022 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753498752:3802694753499562 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753501292:3802694753501962 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753503692:3802694753504352 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753506092:3802694753506772 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753508512:3802694753509172 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753514392:3802694753516182 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753518072:3802694753518742 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753520472:3802694753521162 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753522892:3802694753523562 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753525282:3802694753526102 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753527832:3802694753528662 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753530382:3802694753531202 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753532942:3802694753533642 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753535532:3802694753536212 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753537972:3802694753538702 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753540422:3802694753541082 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753542832:3802694753543502 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753545242:3802694753545942 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753547662:3802694753548332 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753550052:3802694753550722 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753552442:3802694753553402 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753555122:3802694753555802 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753557532:3802694753558192 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753559902:3802694753560572 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753562292:3802694753562962 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753564682:3802694753565352 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753567072:3802694753567732 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753569442:3802694753570252 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753571982:3802694753572652 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753574372:3802694753575032 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753576772:3802694753577542 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753579272:3802694753579932 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753581672:3802694753582412 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753584162:3802694753584832 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753587692:3802694753588372 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753590132:3802694753590792 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753592542:3802694753593202 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753594932:3802694753595592 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753597322:3802694753597992 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753599732:3802694753600532 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753602242:3802694753603272 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753604992:3802694753605962 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753607682:3802694753608462 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753610192:3802694753610862 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753612612:3802694753613292 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753615032:3802694753615892 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753617632:3802694753618352 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753620082:3802694753620753 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753622473:3802694753623213 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753627923:3802694753628633 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753630463:3802694753631133 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753632873:3802694753633553 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753635273:3802694753635943 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753637653:3802694753638333 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753640073:3802694753640903 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753642613:3802694753643283 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753645033:3802694753645703 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753647423:3802694753648093 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753649813:3802694753650483 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753652203:3802694753652883 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753654613:3802694753655273 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753656993:3802694753657863 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753660963:3802694753661653 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753663403:3802694753664073 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753665823:3802694753666483 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753668203:3802694753668863 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753670603:3802694753671343 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753673053:3802694753673723 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753675443:3802694753676113 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753677843:3802694753678513 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753680233:3802694753680913 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753682633:3802694753683333 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753685083:3802694753685753 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753687483:3802694753688513 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753690263:3802694753691133 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753692873:3802694753693543 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753695253:3802694753695923 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753697663:3802694753698593 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753700333:3802694753701553 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753703293:3802694753704063 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753705793:3802694753706463 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753708203:3802694753708883 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753710633:3802694753711303 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753713043:3802694753713823 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753715563:3802694753716223 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753717953:3802694753718633 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753720353:3802694753721023 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753722733:3802694753723403 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753725143:3802694753725803 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753727513:3802694753728273 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753730013:3802694753732293 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753734073:3802694753734733 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753740033:3802694753740733 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753742563:3802694753743243 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753744973:3802694753745663 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753747393:3802694753748063 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753749803:3802694753750463 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753752213:3802694753752933 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753754663:3802694753755334 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753757074:3802694753757734 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753759454:3802694753760124 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753761844:3802694753762504 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753764254:3802694753764914 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753766634:3802694753767314 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753769044:3802694753769704 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753771454:3802694753772314 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753774044:3802694753774854 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753776574:3802694753777334 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753779074:3802694753779734 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753781474:3802694753782144 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753783884:3802694753784684 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753786414:3802694753787114 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753788884:3802694753789554 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753791284:3802694753791954 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753793704:3802694753794434 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753796164:3802694753796894 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753798634:3802694753799294 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753801014:3802694753801704 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753803424:3802694753804424 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753811154:3802694753811864 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753813664:3802694753814334 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753816084:3802694753816764 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753818494:3802694753819164 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753820904:3802694753821664 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753823404:3802694753824074 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753825814:3802694753826484 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753828204:3802694753828874 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753830604:3802694753831274 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753833004:3802694753833664 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753835394:3802694753836054 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753837794:3802694753838464 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753840214:3802694753840884 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753842634:3802694753843304 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753845024:3802694753845694 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753847424:3802694753848154 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753849874:3802694753850534 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753855454:3802694753856174 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753857964:3802694753858644 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753860394:3802694753861074 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753862804:3802694753863474 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753865214:3802694753865884 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753867604:3802694753868274 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753870044:3802694753870714 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753872434:3802694753873094 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753874844:3802694753875524 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753877264:3802694753877944 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753879674:3802694753880784 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753882534:3802694753885104 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753886894:3802694753887564 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753889315:3802694753890045 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753891785:3802694753892445 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753894185:3802694753894855 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753896605:3802694753897385 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753899125:3802694753899795 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753901525:3802694753902195 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753903935:3802694753904605 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753906345:3802694753907005 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753908735:3802694753909415 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753911155:3802694753911815 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753913545:3802694753914215 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753915965:3802694753916625 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753918365:3802694753919055 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753920795:3802694753921455 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753923195:3802694753923865 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753925605:3802694753926265 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753928005:3802694753928665 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753930405:3802694753931095 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753932825:3802694753933495 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753935245:3802694753936225 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753937955:3802694753938765 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753940505:3802694753941165 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753942915:3802694753943585 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753945315:3802694753945985 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753947715:3802694753948425 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753950165:3802694753950865 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753952625:3802694753953295 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753957465:3802694753958185 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753959945:3802694753960595 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753962325:3802694753963055 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753964775:3802694753965445 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753970925:3802694753971635 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753973475:3802694753974235 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753975955:3802694753976845 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753978575:3802694753979245 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753980995:3802694753981655 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753983395:3802694753984075 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753985815:3802694753986485 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753988235:3802694753988905 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753990655:3802694753991325 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753993055:3802694753993725 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753995455:3802694753996135 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694753997875:3802694753998545 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754000285:3802694754000945 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754002685:3802694754003355 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754005075:3802694754005745 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754007485:3802694754008155 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754009895:3802694754010555 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754012295:3802694754012975 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754014725:3802694754015395 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754017125:3802694754017795 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754019535:3802694754020195 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754021945:3802694754022615 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754024356:3802694754025026 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754026786:3802694754027456 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754029186:3802694754032116 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754033936:3802694754034586 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754036326:3802694754036986 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754038716:3802694754039406 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754041156:3802694754041826 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754043566:3802694754044696 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754046426:3802694754047306 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754049046:3802694754049866 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754051586:3802694754052256 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754053996:3802694754054776 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754056496:3802694754057166 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754058916:3802694754059606 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754061336:3802694754062066 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754063796:3802694754064466 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754066206:3802694754067026 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754068756:3802694754069426 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754071166:3802694754071986 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754073746:3802694754074416 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754076136:3802694754076806 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754082236:3802694754082956 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754084786:3802694754085476 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754087216:3802694754087896 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754089636:3802694754090306 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754092046:3802694754092726 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754094466:3802694754095126 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754096876:3802694754097546 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754099306:3802694754099976 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754101716:3802694754102386 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754104136:3802694754104806 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754108586:3802694754109276 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754111066:3802694754111716 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754113546:3802694754114216 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754115956:3802694754116626 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754118376:3802694754119056 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754120876:3802694754121546 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754123276:3802694754123966 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754125726:3802694754126466 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754128196:3802694754128886 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754130606:3802694754131286 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754133026:3802694754133706 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754135426:3802694754136426 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754138136:3802694754139016 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754140756:3802694754141686 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754143406:3802694754144126 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754145866:3802694754146546 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754148296:3802694754148956 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754150686:3802694754151356 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754153086:3802694754153776 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754155516:3802694754156186 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754157946:3802694754158617 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754160357:3802694754161027 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754162777:3802694754163447 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754165187:3802694754165857 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754167587:3802694754168277 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754170007:3802694754170767 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754172507:3802694754173177 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754174927:3802694754175607 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754177827:3802694754179317 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754181097:3802694754181817 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754183527:3802694754184207 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754185957:3802694754186627 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754188357:3802694754189027 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754190757:3802694754191457 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754197007:3802694754197737 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754199587:3802694754200267 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754202067:3802694754202757 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754204497:3802694754205177 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754206917:3802694754207657 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754209377:3802694754210037 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754211787:3802694754212457 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754214197:3802694754214877 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754216617:3802694754217357 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754219097:3802694754220007 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754221737:3802694754222537 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754224277:3802694754225047 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754226777:3802694754227437 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754229187:3802694754229867 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754231597:3802694754232267 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754234017:3802694754234757 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754236477:3802694754237367 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754239097:3802694754239837 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754241567:3802694754242237 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754243967:3802694754244647 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754246377:3802694754247047 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754248767:3802694754249437 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754251187:3802694754252487 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754255417:3802694754256077 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754257837:3802694754258507 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754260237:3802694754260917 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754262657:3802694754263327 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754265077:3802694754265747 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754267487:3802694754268157 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754269917:3802694754270587 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754272317:3802694754272987 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754274727:3802694754275397 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754277127:3802694754277807 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754279557:3802694754280227 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754281967:3802694754282637 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754284387:3802694754285067 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754286817:3802694754287487 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754289227:3802694754289907 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754292017:3802694754292698 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754294438:3802694754295168 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754296878:3802694754297548 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754299298:3802694754299968 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754301698:3802694754302398 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754307708:3802694754308498 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754310328:3802694754311438 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754313198:3802694754314088 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754315828:3802694754316568 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754318298:3802694754319108 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754320968:3802694754321668 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754323398:3802694754324078 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754325798:3802694754326638 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754333518:3802694754334398 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754336228:3802694754336978 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754338728:3802694754339398 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754341118:3802694754341788 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754343518:3802694754344198 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754345928:3802694754346598 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754348338:3802694754349008 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754350758:3802694754351448 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754353188:3802694754354008 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754355748:3802694754356558 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754358298:3802694754358968 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754360718:3802694754361528 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754363278:3802694754363948 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754365688:3802694754366378 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754368118:3802694754368788 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754370538:3802694754371218 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754372938:3802694754373618 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754375348:3802694754376038 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754377768:3802694754378448 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754380178:3802694754380858 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754382588:3802694754383278 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754385028:3802694754385698 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754387438:3802694754388108 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754389838:3802694754390518 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754392248:3802694754392938 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754394668:3802694754395338 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754397078:3802694754397748 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754399498:3802694754400188 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754401898:3802694754403848 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754405658:3802694754406328 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754408058:3802694754408728 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754410498:3802694754411178 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754412918:3802694754413608 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754415378:3802694754416048 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754417768:3802694754418738 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754420498:3802694754421388 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754426778:3802694754427539 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754429379:3802694754430119 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754431849:3802694754432519 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754434249:3802694754434919 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754436659:3802694754437329 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754439049:3802694754439719 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754441489:3802694754442159 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754443879:3802694754444549 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754446279:3802694754447099 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754448849:3802694754449509 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754451239:3802694754451909 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754453639:3802694754454299 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754456069:3802694754456799 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754458509:3802694754459299 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754461049:3802694754461719 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754463449:3802694754464109 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754465849:3802694754466509 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754468229:3802694754468889 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754470609:3802694754471269 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754472989:3802694754473669 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754475389:3802694754476179 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754479559:3802694754480249 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754482079:3802694754482739 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754484479:3802694754485149 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754486899:3802694754487559 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754489279:3802694754490079 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754491799:3802694754492469 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754494209:3802694754494889 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754496629:3802694754497309 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754499059:3802694754499729 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754501459:3802694754502139 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754503869:3802694754504709 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754506429:3802694754507109 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754508849:3802694754509519 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754511249:3802694754511919 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754513659:3802694754514339 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754516039:3802694754516919 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754518649:3802694754519539 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754521279:3802694754522079 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754523809:3802694754524489 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754526219:3802694754526879 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754528599:3802694754529279 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754531029:3802694754531699 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754537099:3802694754537849 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754539679:3802694754540479 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754542219:3802694754542919 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754544659:3802694754545329 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754547079:3802694754547749 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754549549:3802694754586870 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802694754589420:3802694754658790 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f72079a0000, , , , , ) = 0 +3802694754666910:3802694754668110 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754670160:3802694754670860 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754672620:3802694754673450 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754675200:3802694754675870 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754677660:3802694754678450 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754680240:3802694754680960 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754682720:3802694754683570 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754685340:3802694754686150 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754687920:3802694754688740 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754690480:3802694754691170 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754692910:3802694754693740 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754695490:3802694754696211 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754697961:3802694754698891 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754700621:3802694754701351 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754703091:3802694754703931 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754705701:3802694754706551 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754708311:3802694754708991 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754710721:3802694754711531 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754713281:3802694754713961 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754715701:3802694754716401 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754718131:3802694754718811 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754720711:3802694754721401 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754723161:3802694754724021 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754725751:3802694754726431 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754728201:3802694754729061 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754730811:3802694754731491 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754733261:3802694754733971 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754735721:3802694754736411 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754738171:3802694754739371 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754741161:3802694754742051 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754743821:3802694754744781 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754746551:3802694754747341 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754749101:3802694754749771 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754751521:3802694754752191 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754753971:3802694754754651 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754756391:3802694754757321 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754763941:3802694754764861 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754766681:3802694754767551 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754769311:3802694754769971 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802694754775561:3802694754776241 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802695015390452:3802695015428152 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695015435782:3802695015558453 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7068600000, , , , , ) = 0 +3802695015563843:3802695015589653 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695015592143:3802695015647974 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f72079d0000, , , , , ) = 0 +3802695015681634:3802695015685034 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802695015687874:3802695015758014 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695015760484:3802695015867785 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f70f8140000, , , , , ) = 0 +3802695015873655:3802695015888695 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695015890915:3802695015943216 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a5a000, , , , , ) = 0 +3802695015949106:3802695015960626 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695015962896:3802695016018336 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a52000, , , , , ) = 0 +3802695016023246:3802695016034976 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695016037176:3802695016089347 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7207a46000, , , , , ) = 0 +3802695016938773:3802695016951933 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f70640f0000, , ) = 0 +3802695016955463:3802695017040024 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f70640f0000, , , , , ) = 0 +3802695017043934:3802695017045044 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802695017105134:3802695017231305 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695017233945:3802695017392596 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695017403727:3802695017581878 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695017584528:3802695017682359 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7068400000, , , , , ) = 0 +3802695017709379:3802695017721479 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695017723999:3802695017724679 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f7207a42000, , , ) = 0 +3802695017726889:3802695017779059 1963:1966 hsaKmtMapMemoryToGPU(0x7f7207a42000, , ) = 0 +3802695017781399:3802695017782299 1963:1966 hsaKmtGetNodeProperties(, ) = 0 +3802695017781399:3802695017828640 1963:1966 hsaKmtCreateQueue(, , , , 0x7f7068400000, , , ) = 0 +3802695017830990:3802695017832310 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802695017834310:3802695017835110 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802695018042941:3802695019183710 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695018042941:3802695019188980 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695019202470:3802695019216260 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695019232550:3802695019271530 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695019537982:3802695019573013 1963:1963 hsaKmtAllocMemory(, , ) = 0 +3802695019580933:3802695019660563 1963:1963 hsaKmtMapMemoryToGPUNodes(0x7f72079fc000, , , , , ) = 0 +3802695019809764:3802695020753371 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695020760841:3802695020935373 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695021080314:3802695021335936 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695021341356:3802695021450936 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f7068200000, , , , , ) = 0 +3802695021496467:3802695021519617 1963:1966 hsaKmtAllocMemory(, , ) = 0 +3802695021523967:3802695021525377 1963:1966 hsaKmtRegisterMemoryToNodes(0x7f72079fa000, , , ) = 0 +3802695021529427:3802695021593117 1963:1966 hsaKmtMapMemoryToGPU(0x7f72079fa000, , ) = 0 +3802695021597777:3802695021598927 1963:1966 hsaKmtGetNodeProperties(, ) = 0 +3802695021597777:3802695021661408 1963:1966 hsaKmtCreateQueue(, , , , 0x7f7068200000, , , ) = 0 +3802695021666718:3802695021669778 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802695021674018:3802695021675618 1963:1966 hsaKmtCreateEvent(, , , ) = 0 +3802695021881860:3802695023116728 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695021881860:3802695023127469 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695023139089:3802695023143869 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695023149679:3802695023169349 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695023172989:3802695023254709 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (98) ################# -1711656622504435:1711656622505955 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656622515833:1711656622516358 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656623400504:1711656623403302 14428:14428 hsaKmtCreateEvent(, , , ) = 0 -1711656623608581:1711656623973580 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656623608581:1711656624010408 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656624016312:1711656624017365 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656624019996:1711656624020630 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695031498561:3802695031716212 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695031738652:3802695031951564 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695032166886:3802695033499205 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695032166886:3802695033510726 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695033520976:3802695033539956 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695033543956:3802695033592746 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695033608996:3802695033741817 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695033746507:3802695033899348 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695034107200:3802695034109830 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695034107200:3802695034113710 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695034117320:3802695035097497 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695034117320:3802695035108717 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695035315949:3802695036340027 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695035315949:3802695036350157 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695036357077:3802695036361387 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695036367427:3802695036383937 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695036387457:3802695036429197 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (97) ################# -1711656639448300:1711656639450300 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656639459703:1711656639460187 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656640513485:1711656640515944 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656640513485:1711656640520469 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656640523029:1711656640883525 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656640523029:1711656640913939 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656640919705:1711656640920727 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656640923379:1711656640924049 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695043745292:3802695043950623 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695043972863:3802695044183855 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695044398967:3802695045654126 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695044398967:3802695045665676 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695045676046:3802695045695676 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695045699706:3802695045748557 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695045764717:3802695045897098 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695045901838:3802695046052369 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695046260320:3802695047067286 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695046260320:3802695047078557 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695047286108:3802695048490007 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695047286108:3802695048499967 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695048506787:3802695048511247 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695048517087:3802695048534197 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695048537797:3802695048578968 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (96) ################# -1711656656396440:1711656656398339 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656656407106:1711656656407618 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656657466520:1711656657468950 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656657466520:1711656657473652 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656657476424:1711656657829051 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656657476424:1711656657859592 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656657865303:1711656657866337 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656657869034:1711656657869765 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695056039752:3802695056252274 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695056274164:3802695056482686 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695056697527:3802695058022147 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695056697527:3802695058033677 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695058044637:3802695058064987 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695058068927:3802695058117558 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695058132758:3802695058264109 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695058268939:3802695058417650 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695058625922:3802695059556819 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695058625922:3802695059568019 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695059775390:3802695060825358 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695059775390:3802695060836598 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695060844008:3802695060848488 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695060854368:3802695060872398 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695060876008:3802695060917929 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (95) ################# -1711656673331294:1711656673333175 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656673341993:1711656673342499 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656674412793:1711656674415153 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656674412793:1711656674419580 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656674422037:1711656676153707 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656674422037:1711656676185159 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656676191174:1711656676192309 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656676195393:1711656676196067 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695068298564:3802695068505535 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695068527575:3802695068734747 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695068949108:3802695070342429 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695068949108:3802695070353969 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695070364339:3802695070384119 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695070388019:3802695070435869 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695070451190:3802695070583061 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695070587941:3802695070739042 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695070946933:3802695072032821 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695070946933:3802695072043271 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695072250173:3802695073465822 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695072250173:3802695073476982 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695073484372:3802695073488682 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695073494932:3802695073512132 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695073515712:3802695073557332 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (94) ################# -1711656691669637:1711656691671598 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656691680812:1711656691681324 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656692754777:1711656692757078 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656692754777:1711656692761492 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656692763794:1711656694487413 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656692763794:1711656694518834 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656694525140:1711656694526183 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656694528974:1711656694529644 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695080706655:3802695080914707 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695080937337:3802695081144968 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695081359490:3802695082615709 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695081359490:3802695082627189 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695082637549:3802695082656440 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695082660360:3802695082708520 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695082723640:3802695082856031 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695082860881:3802695083011862 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695083219804:3802695084018130 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695083219804:3802695084029180 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695084236401:3802695085479041 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695084236401:3802695085490251 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695085497661:3802695085501791 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695085507831:3802695085524531 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695085528101:3802695085569151 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (93) ################# -1711656709980015:1711656709982401 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656709991523:1711656709992084 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656711063239:1711656711065880 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656711063239:1711656711070572 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656711072933:1711656712801333 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656711072933:1711656712832927 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656712839094:1711656712840216 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656712843209:1711656712843915 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695092865195:3802695093070067 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695093091777:3802695093298259 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695093512600:3802695094785290 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695093512600:3802695094796790 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695094806990:3802695094826210 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695094830300:3802695094878120 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695094893011:3802695095025212 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695095029942:3802695095180043 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695095388134:3802695096382512 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695095388134:3802695096387152 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695096593213:3802695097773362 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695096593213:3802695097784592 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695097792112:3802695097796302 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695097802202:3802695097819832 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695097823402:3802695097864902 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (92) ################# -1711656728284005:1711656728285921 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656728294988:1711656728295464 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656729361048:1711656729363382 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656729361048:1711656729367657 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656729369998:1711656731103574 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656729369998:1711656731134803 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656731140893:1711656731141983 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656731144907:1711656731145522 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695105084246:3802695105291367 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695105313027:3802695105520219 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695105735580:3802695107021700 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695105735580:3802695107033400 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695107043590:3802695107062920 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695107066840:3802695107115141 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695107129711:3802695107262032 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695107266752:3802695107418173 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695107626464:3802695108511251 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695107626464:3802695108515771 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695108721653:3802695109771790 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695108721653:3802695109783061 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695109790471:3802695109794791 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695109800761:3802695109817281 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695109820911:3802695109862681 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (91) ################# -1711656746625896:1711656746628105 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656746637935:1711656746638494 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656747707115:1711656747709521 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656747707115:1711656747714039 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656747716381:1711656749445832 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656747716381:1711656749466994 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656749473056:1711656749474132 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656749477093:1711656749477779 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695117228236:3802695117434237 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695117456078:3802695117655719 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695117870971:3802695119165380 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695117870971:3802695119176910 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695119187840:3802695119206531 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695119210551:3802695119259191 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695119274221:3802695119405942 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695119410662:3802695119575883 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695119783665:3802695120657641 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695119783665:3802695120662181 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695120868283:3802695121917380 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695120868283:3802695121928640 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695121936171:3802695121940261 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695121946181:3802695121962911 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695121966491:3802695122008611 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (90) ################# -1711656764938206:1711656764940044 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656764949076:1711656764949642 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656766015802:1711656766018091 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656766015802:1711656766022515 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656766024880:1711656767747960 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656766024880:1711656767778425 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656767784630:1711656767785707 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656767788627:1711656767789317 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695129229184:3802695129433846 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695129454906:3802695129655238 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695129869739:3802695131165379 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695129869739:3802695131176819 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695131187069:3802695131206879 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695131210949:3802695131259009 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695131274120:3802695131405921 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695131410571:3802695131577542 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695131785463:3802695132659740 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695131785463:3802695132664260 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695132870261:3802695133919039 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695132870261:3802695133930269 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695133937809:3802695133942009 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695133947969:3802695133964710 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695133968380:3802695134009840 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (89) ################# -1711656783196523:1711656783198346 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656783207752:1711656783208251 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656784276589:1711656784278937 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656784276589:1711656784283263 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656784285753:1711656786024922 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656784285753:1711656786056023 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656786062197:1711656786063200 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656786066139:1711656786066768 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695141244794:3802695141451495 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695141473945:3802695141669407 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695141883598:3802695143176778 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695141883598:3802695143188428 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695143198418:3802695143216998 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695143221348:3802695143269189 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695143284669:3802695143417150 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695143422100:3802695143583891 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695143791993:3802695144656509 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695143791993:3802695144661159 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695144867140:3802695145915728 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695144867140:3802695145926938 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695145934518:3802695145938568 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695145944468:3802695145961218 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695145964848:3802695146005819 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (88) ################# -1711656801527422:1711656801529339 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656801538329:1711656801538808 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656802609114:1711656802611397 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656802609114:1711656802615820 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656802618278:1711656804351505 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656802618278:1711656804382087 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656804388324:1711656804389586 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656804392542:1711656804393227 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695153229112:3802695153433704 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695153455264:3802695153652255 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695153866687:3802695155165616 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695153866687:3802695155177237 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695155187447:3802695155206657 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695155210917:3802695155258967 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695155274797:3802695155405818 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695155410738:3802695155579450 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695155787261:3802695156671008 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695155787261:3802695156675688 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695156881789:3802695157908907 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695156881789:3802695157919027 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695157925847:3802695157930227 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695157936007:3802695157953877 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695157957347:3802695157998868 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (87) ################# -1711656819835210:1711656819836951 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656819846587:1711656819847117 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656820921062:1711656820923478 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656820921062:1711656820928109 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656820930449:1711656822658771 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656820930449:1711656822690044 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656822696132:1711656822697136 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656822700192:1711656822700828 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695165209931:3802695165417903 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695165438813:3802695165638874 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695165853256:3802695167145896 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695165853256:3802695167157546 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695167167986:3802695167186706 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695167190756:3802695167239806 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695167255256:3802695167388827 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695167393567:3802695167542989 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695167750890:3802695168627557 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695167750890:3802695168632247 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695168838198:3802695169887206 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695168838198:3802695169898426 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695169906056:3802695169910556 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695169916436:3802695169933886 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695169937466:3802695169979657 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (86) ################# -1711656838121739:1711656838123664 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656838132459:1711656838133019 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656839198531:1711656839200909 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656839198531:1711656839205834 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656839208150:1711656840929401 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656839208150:1711656840960428 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656840966583:1711656840967677 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656840970547:1711656840971179 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695177200650:3802695177406121 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695177428511:3802695177628823 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695177843384:3802695179125714 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695177843384:3802695179137194 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695179147264:3802695179167134 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695179171234:3802695179219615 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695179235145:3802695179367316 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695179372106:3802695179523367 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695179731428:3802695180602895 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695179731428:3802695180607285 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695180813476:3802695181862164 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695180813476:3802695181873404 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695181881134:3802695181885294 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695181891294:3802695181908035 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695181911665:3802695181952755 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (85) ################# -1711656856389490:1711656856391614 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656856400836:1711656856401571 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656857470922:1711656857473410 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656857470922:1711656857477869 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656857480204:1711656859210791 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656857480204:1711656859241743 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656859248367:1711656859249418 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656859252280:1711656859253011 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695189176899:3802695189384150 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695189405850:3802695189607562 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695189821613:3802695191089993 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695189821613:3802695191101443 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695191112023:3802695191130733 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695191134723:3802695191183164 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695191198834:3802695191331175 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695191336065:3802695191485766 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695191693717:3802695192574064 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695191693717:3802695192578714 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695192784755:3802695193835763 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695192784755:3802695193846973 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695193854843:3802695193859153 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695193865014:3802695193881964 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695193885574:3802695193926624 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (84) ################# -1711656874669405:1711656874671399 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656874681240:1711656874681741 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656875749514:1711656875751887 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656875749514:1711656875756262 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656875758602:1711656877484323 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656875758602:1711656877515125 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656877521082:1711656877522162 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656877525079:1711656877525754 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695201138727:3802695201344348 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695201365479:3802695201944173 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695202159234:3802695203414824 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695202159234:3802695203426374 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695203437214:3802695203456244 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695203460284:3802695203508374 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695203523105:3802695203654926 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695203659776:3802695203807347 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695204015218:3802695205025166 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695204015218:3802695205036396 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695205243947:3802695206476427 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695205243947:3802695206487647 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695206495177:3802695206499487 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695206505527:3802695206522117 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695206525757:3802695206567097 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (83) ################# -1711656892933149:1711656892935332 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656892944251:1711656892944826 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656894015978:1711656894018288 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656894015978:1711656894022855 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656894025198:1711656895752228 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656894025198:1711656895783276 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656895789479:1711656895790534 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656895793552:1711656895794184 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695213715370:3802695213921952 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695213944222:3802695214150444 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695214365055:3802695215623825 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695214365055:3802695215635395 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695215645835:3802695215665145 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695215669085:3802695215716995 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695215731545:3802695215864276 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695215869076:3802695216034158 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695216242489:3802695217020855 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695216242489:3802695217032085 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695217239457:3802695218471956 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695217239457:3802695218483196 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695218490606:3802695218495186 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695218501136:3802695218518256 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695218521826:3802695218562896 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (82) ################# -1711656911172906:1711656911174657 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656911183914:1711656911184379 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656912251409:1711656912253788 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656912251409:1711656912258288 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656912260623:1711656913988966 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656912260623:1711656914020211 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656914026377:1711656914027488 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656914030341:1711656914031038 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695225848920:3802695226055811 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695226078132:3802695226286893 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695226501125:3802695227771844 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695226501125:3802695227783344 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695227793904:3802695227813024 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695227817034:3802695227866685 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695227882365:3802695228024326 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695228029596:3802695228183537 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695228391719:3802695229381876 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695228391719:3802695229393126 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695229600648:3802695230781387 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695229600648:3802695230792637 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695230800167:3802695230804357 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695230810247:3802695230827567 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695230831217:3802695230872517 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (81) ################# -1711656929431555:1711656929433507 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656929442125:1711656929442654 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656930512066:1711656930514578 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656930512066:1711656930519346 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656930521752:1711656932094181 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656930521752:1711656932125014 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656932131303:1711656932132375 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656932135436:1711656932136165 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695238370033:3802695238576454 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695238598095:3802695238803236 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695239017028:3802695240344028 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695239017028:3802695240354358 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695240364018:3802695240383118 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695240387018:3802695240435408 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695240450178:3802695240582729 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695240587459:3802695240740361 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695240948382:3802695242027040 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695240948382:3802695242038220 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695242245622:3802695243449101 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695242245622:3802695243460351 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695243468321:3802695243472621 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695243478641:3802695243496031 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695243499611:3802695243540951 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (80) ################# -1711656947574536:1711656947576549 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656947586202:1711656947586761 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656948643724:1711656948646165 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656948643724:1711656948650694 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656948653067:1711656949014917 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656948653067:1711656949045355 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656949051155:1711656949052098 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656949054821:1711656949055480 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695250944186:3802695251148367 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695251170877:3802695251377349 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695251591671:3802695252851340 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695251591671:3802695252862810 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695252872790:3802695252892230 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695252896280:3802695252945101 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695252960361:3802695253093802 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695253098522:3802695253250333 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695253458154:3802695254465942 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695253458154:3802695254477122 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695254684754:3802695255848292 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695254684754:3802695255859542 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695255867132:3802695255871442 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695255877312:3802695255895073 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695255898723:3802695255939813 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (79) ################# -1711656964494014:1711656964495965 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656964504554:1711656964505046 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656965558584:1711656965561047 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656965558584:1711656965565793 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656965568365:1711656965932999 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656965568365:1711656965963627 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656965969259:1711656965970266 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656965972987:1711656965973561 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695263300058:3802695263502809 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695263524729:3802695263734351 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695263950422:3802695265358643 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695263950422:3802695265370233 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695265381073:3802695265399703 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695265403653:3802695265452674 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695265467634:3802695265599145 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695265603815:3802695265755466 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695265963527:3802695267023805 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695265963527:3802695267035025 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695267242217:3802695268286275 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695267242217:3802695268296275 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695268303335:3802695268307595 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695268313575:3802695268330145 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695268333815:3802695268375555 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (78) ################# -1711656981461182:1711656981462936 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656981471704:1711656981472250 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656982522203:1711656982524685 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656982522203:1711656982529348 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656982531677:1711656982894842 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656982531677:1711656982924724 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656982930514:1711656982931508 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656982934181:1711656982934897 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695275682199:3802695275890750 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695275912421:3802695276121432 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695276336134:3802695277595343 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695276336134:3802695277606813 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695277617513:3802695277636613 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695277640723:3802695277689054 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695277704094:3802695277835825 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695277840645:3802695277992066 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695278199968:3802695279008154 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695278199968:3802695279019384 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695279226895:3802695280270943 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695279226895:3802695280281003 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695280288093:3802695280292373 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695280298203:3802695280315383 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695280318893:3802695280360894 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (77) ################# -1711656998339159:1711656998340719 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656998349588:1711656998350151 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711656999407374:1711656999409985 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656999407374:1711656999414680 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656999417027:1711656999777895 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711656999417027:1711656999807717 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711656999813531:1711656999814550 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711656999817201:1711656999817768 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695287528027:3802695287735889 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695287757199:3802695287960750 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695288175352:3802695289434871 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695288175352:3802695289446391 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695289456231:3802695289476411 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695289480442:3802695289529342 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695289543892:3802695289674423 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695289679113:3802695289830564 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695290038586:3802695291023063 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695290038586:3802695291034283 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695291241875:3802695292493754 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695291241875:3802695292503714 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695292510854:3802695292515204 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695292521124:3802695292539874 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695292543534:3802695292585765 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (76) ################# -1711657015236231:1711657015238126 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657015247662:1711657015248231 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657016306268:1711657016308595 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657016306268:1711657016313080 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657016315435:1711657016675796 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657016315435:1711657016706366 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657016712301:1711657016713232 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657016715872:1711657016716437 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695299851788:3802695300086190 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695300107410:3802695300318851 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695300532753:3802695301801462 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695300532753:3802695301813072 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695301823353:3802695301842743 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695301846683:3802695301895003 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695301910433:3802695302040794 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695302045594:3802695302196515 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695302404307:3802695303369234 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695302404307:3802695303380464 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695303587826:3802695304743344 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695303587826:3802695304754604 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695304762344:3802695304766904 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695304773074:3802695304790375 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695304793935:3802695304834955 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (75) ################# -1711657032214374:1711657032216129 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657032225646:1711657032226219 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657033278396:1711657033280880 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657033278396:1711657033285367 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657033287870:1711657033647498 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657033287870:1711657033678394 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657033684621:1711657033685654 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657033688645:1711657033689260 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695312189840:3802695312396551 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695312418941:3802695312626213 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695312840134:3802695314131964 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695312840134:3802695314143814 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695314153794:3802695314172684 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695314176684:3802695314224795 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695314239785:3802695314371736 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695314376656:3802695314526267 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695314734039:3802695315656695 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695314734039:3802695315667916 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695315875617:3802695316924255 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695315875617:3802695316935465 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695316942815:3802695316947075 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695316952955:3802695316970185 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695316973765:3802695317015536 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (74) ################# -1711657049084492:1711657049086124 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657049095231:1711657049095760 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657050147063:1711657050149538 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657050147063:1711657050154207 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657050156552:1711657050515047 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657050156552:1711657050518177 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657050535402:1711657050536549 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657050549311:1711657050549797 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695324253789:3802695324458080 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695324480640:3802695324675012 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695324888603:3802695326185103 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695324888603:3802695326196623 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695326207373:3802695326227213 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695326231163:3802695326279254 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695326294464:3802695326426255 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695326431105:3802695326595506 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695326803518:3802695327715824 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695326803518:3802695327727004 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695327934466:3802695328984024 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695327934466:3802695328995294 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695329002704:3802695329006804 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695329012914:3802695329029394 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695329033014:3802695329074994 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (73) ################# -1711657066006262:1711657066007828 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657066016023:1711657066016698 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657067068631:1711657067070789 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657067068631:1711657067075057 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657067077338:1711657067434338 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657067077338:1711657067437457 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657067454201:1711657067455137 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657067468020:1711657067468509 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695336258308:3802695336462309 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695336484570:3802695336679231 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695336892963:3802695338203782 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695336892963:3802695338215472 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695338225643:3802695338245093 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695338249083:3802695338298413 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695338313533:3802695338445964 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695338450734:3802695338603445 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695338811367:3802695339750214 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695338811367:3802695339761424 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695339969165:3802695341018443 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695339969165:3802695341029613 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695341037173:3802695341041463 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695341056854:3802695341073614 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695341077214:3802695341118364 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (72) ################# -1711657082970295:1711657082971700 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657082979794:1711657082980285 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657084030311:1711657084032835 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657084030311:1711657084037222 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657084039495:1711657084416119 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657084039495:1711657084429521 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657084436823:1711657084447916 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657084450578:1711657084451085 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695348313977:3802695348520399 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695348542049:3802695348748731 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695348963262:3802695350315682 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695348963262:3802695350327212 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695350337512:3802695350356272 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695350360262:3802695350408303 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695350423213:3802695350555144 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695350559834:3802695350710285 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695350918196:3802695351847843 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695350918196:3802695351858993 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695352066915:3802695353395515 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695352066915:3802695353406725 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695353414155:3802695353418895 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695353424945:3802695353441985 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695353445675:3802695353487765 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (71) ################# -1711657099857629:1711657099859257 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657099867404:1711657099868075 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657100926202:1711657100928336 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657100926202:1711657100933125 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657100935367:1711657101294403 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657100935367:1711657101324786 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657101330852:1711657101331806 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657101334522:1711657101335133 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695360641458:3802695360845610 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695360869830:3802695361078782 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695361293533:3802695362552073 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695361293533:3802695362563523 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695362573933:3802695362594003 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695362597973:3802695362646353 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695362661543:3802695362793274 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695362798134:3802695362947826 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695363155607:3802695363960423 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695363155607:3802695363971633 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695364179455:3802695365404554 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695364179455:3802695365415804 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695365423084:3802695365427394 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695365433354:3802695365450774 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695365454424:3802695365495975 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (70) ################# -1711657116790034:1711657116792179 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657116800154:1711657116800730 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657117851421:1711657117853971 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657117851421:1711657117858302 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657117860644:1711657118223608 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657117860644:1711657118253440 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657118259150:1711657118260081 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657118262787:1711657118263416 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695372913070:3802695373120911 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695373143391:3802695373350553 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695373565064:3802695374830133 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695373565064:3802695374841623 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695374852084:3802695374870964 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695374874904:3802695374923744 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695374939434:3802695375071825 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695375076435:3802695375227306 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695375435168:3802695376399555 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695375435168:3802695376404205 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695376610206:3802695377789365 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695376610206:3802695377800605 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695377807965:3802695377812205 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695377818165:3802695377836056 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695377839636:3802695377881626 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (69) ################# -1711657133763359:1711657133765001 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657133774012:1711657133774665 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657134827583:1711657134829934 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657134827583:1711657134834398 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657134836713:1711657135194437 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657134836713:1711657135224483 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657135230233:1711657135231228 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657135233936:1711657135234520 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695385123130:3802695385329151 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695385351431:3802695385559133 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695385773895:3802695387044494 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695385773895:3802695387056014 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695387066224:3802695387085814 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695387089744:3802695387138095 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695387153115:3802695387285776 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695387290716:3802695387440787 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695387648799:3802695388522445 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695387648799:3802695388526835 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695388732747:3802695389782924 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695388732747:3802695389794144 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695389801595:3802695389805905 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695389811685:3802695389828315 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695389831925:3802695389873025 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (68) ################# -1711657150670117:1711657150671878 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657150681534:1711657150682164 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657151734070:1711657151736696 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657151734070:1711657151741384 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657151743716:1711657152105732 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657151743716:1711657152136281 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657152141972:1711657152142975 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657152145667:1711657152146286 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695397095739:3802695397300320 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695397322300:3802695397529482 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695397743213:3802695399022553 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695397743213:3802695399034103 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695399044683:3802695399064073 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695399068063:3802695399116253 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695399131473:3802695399264614 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695399269444:3802695399419945 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695399627687:3802695400506703 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695399627687:3802695400511313 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695400717325:3802695401767773 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695400717325:3802695401778983 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695401786453:3802695401790763 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695401796813:3802695401813583 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695401817173:3802695401859153 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (67) ################# -1711657167543977:1711657167545925 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657167554496:1711657167555272 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657168617547:1711657168619815 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657168617547:1711657168624466 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657168626800:1711657168984526 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657168626800:1711657169014445 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657169020207:1711657169021224 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657169023947:1711657169024567 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695409098787:3802695409304049 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695409326029:3802695409534011 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695409748892:3802695411025022 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695409748892:3802695411036532 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695411047152:3802695411065942 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695411070092:3802695411118012 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695411133552:3802695411264673 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695411269473:3802695411420315 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695411628396:3802695412519463 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695411628396:3802695412523823 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695412729794:3802695413779472 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695412729794:3802695413790852 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695413798242:3802695413802512 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695413808402:3802695413826132 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695413829712:3802695413872063 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (66) ################# -1711657184498512:1711657184500320 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657184509050:1711657184509618 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657185561931:1711657185564544 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657185561931:1711657185568856 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657185571177:1711657185927724 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657185571177:1711657185957903 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657185963392:1711657185964352 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657185966948:1711657185967564 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695421089386:3802695421293808 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695421315878:3802695421524880 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695421739111:3802695423023331 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695421739111:3802695423034831 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695423045141:3802695423064761 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695423068701:3802695423117502 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695423132602:3802695423264483 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695423269313:3802695423419194 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695423627055:3802695424520312 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695423627055:3802695424524892 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695424730853:3802695425780631 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695424730853:3802695425791861 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695425799461:3802695425803661 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695425809801:3802695425827231 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695425830831:3802695425872212 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (65) ################# -1711657201462203:1711657201463914 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657201472644:1711657201473210 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657202528263:1711657202530888 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657202528263:1711657202535658 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657202538026:1711657202898012 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657202538026:1711657202901270 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657202918837:1711657202920121 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657202932684:1711657202933200 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695433072235:3802695433275186 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695433297496:3802695433505028 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695433719860:3802695435026789 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695433719860:3802695435038339 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695435048669:3802695435067760 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695435071720:3802695435120760 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695435135680:3802695435268211 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695435273161:3802695435424162 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695435632164:3802695436520450 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695435632164:3802695436525010 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695436730912:3802695437781260 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695436730912:3802695437792410 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695437799750:3802695437804200 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695437810250:3802695437827310 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695437831030:3802695437872620 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (64) ################# -1711657218315478:1711657218317308 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657218325393:1711657218325999 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657219375629:1711657219377768 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657219375629:1711657219382420 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657219384701:1711657219738608 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657219384701:1711657219741948 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657219758774:1711657219759810 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657219771994:1711657219772465 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695445115694:3802695445318926 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695445340696:3802695445547448 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695445761779:3802695447028699 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695445761779:3802695447040139 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695447050229:3802695447070899 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695447074819:3802695447123369 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695447138329:3802695447270740 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695447275580:3802695447423272 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695447631343:3802695448511440 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695447631343:3802695448516010 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695448721951:3802695449772589 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695448721951:3802695449783739 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695449791579:3802695449795949 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695449801889:3802695449818269 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695449821889:3802695449863349 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (63) ################# -1711657235193889:1711657235195335 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657235203739:1711657235204399 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657236257098:1711657236259667 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657236257098:1711657236264122 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657236266420:1711657236625007 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657236266420:1711657236628412 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657236645398:1711657236646428 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657236658865:1711657236659311 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695457356605:3802695457561776 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695457583696:3802695457792058 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695458006749:3802695459308529 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695458006749:3802695459320359 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695459330849:3802695459350009 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695459353919:3802695459402640 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695459417820:3802695459550031 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695459554781:3802695459706312 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695459914154:3802695460791100 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695459914154:3802695460802280 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695461009842:3802695462058610 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695461009842:3802695462069840 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695462077440:3802695462081860 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695462087800:3802695462104380 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695462107960:3802695462149370 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (62) ################# -1711657252166567:1711657252167868 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657252176870:1711657252177347 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657253226356:1711657253228648 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657253226356:1711657253233152 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657253235408:1711657253598742 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657253235408:1711657253629324 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657253635552:1711657253636528 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657253639315:1711657253640032 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695469383974:3802695469591946 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695469613436:3802695469819427 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695470033869:3802695471308968 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695470033869:3802695471320658 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695471330539:3802695471350619 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695471354579:3802695471402859 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695471418039:3802695471550700 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695471555470:3802695471708681 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695471916503:3802695472782109 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695471916503:3802695472793339 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695473000911:3802695474049729 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695473000911:3802695474060959 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695474068359:3802695474072669 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695474078609:3802695474096429 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695474100119:3802695474141949 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (61) ################# -1711657269059662:1711657269061430 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657269069918:1711657269070607 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657270124225:1711657270126667 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657270124225:1711657270131318 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657270133653:1711657270495291 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657270133653:1711657270525302 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657270531148:1711657270532137 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657270534889:1711657270535458 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695481487363:3802695481695215 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695481717175:3802695481918607 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695482133018:3802695483392877 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695482133018:3802695483404338 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695483415608:3802695483435498 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695483439578:3802695483487798 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695483503228:3802695483635459 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695483640269:3802695483791000 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695483999012:3802695485030680 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695483999012:3802695485041920 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695485249271:3802695486482620 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695485249271:3802695486493801 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695486501041:3802695486505381 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695486511481:3802695486528261 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695486531931:3802695486573981 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (60) ################# -1711657286000076:1711657286001898 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657286010482:1711657286011122 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657287061883:1711657287064347 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657287061883:1711657287068737 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657287071081:1711657287426579 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657287071081:1711657287456706 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657287462410:1711657287463348 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657287466077:1711657287466753 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695493742454:3802695493948496 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695493970606:3802695494178168 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695494393039:3802695495652099 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695494393039:3802695495663729 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695495674239:3802695495693739 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695495697689:3802695495746269 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695495761509:3802695495894450 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695495899281:3802695496081302 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695496294773:3802695497051609 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695496294773:3802695497062739 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695497269691:3802695498489090 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695497269691:3802695498500220 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695498507340:3802695498511570 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695498517760:3802695498535870 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695498539480:3802695498585120 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (59) ################# -1711657302955948:1711657302957682 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657302966103:1711657302966667 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657304035964:1711657304038381 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657304035964:1711657304042964 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657304045288:1711657305775993 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657304045288:1711657305807101 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657305813374:1711657305814407 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657305817332:1711657305818025 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695506014075:3802695506221446 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695506243737:3802695506451038 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695506665330:3802695508045620 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695506665330:3802695508055760 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695508065260:3802695508084450 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695508088580:3802695508137281 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695508152301:3802695508284962 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695508289692:3802695508440933 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695508650245:3802695509576911 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695508650245:3802695509588042 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695509795313:3802695510845921 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695509795313:3802695510856991 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695510864321:3802695510868771 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695510874951:3802695510893201 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695510896811:3802695510938422 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (58) ################# -1711657321252365:1711657321254156 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657321262862:1711657321263411 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657322331905:1711657322334219 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657322331905:1711657322338626 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657322340948:1711657324065861 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657322340948:1711657324096954 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657324102974:1711657324104078 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657324107016:1711657324107751 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695518143445:3802695518348637 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695518369747:3802695518575698 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695518790240:3802695520068759 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695518790240:3802695520079300 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695520088920:3802695520108490 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695520112460:3802695520161460 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695520176750:3802695520308361 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695520313171:3802695520464902 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695520672774:3802695521585551 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695520672774:3802695521596651 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695521804532:3802695522855840 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695521804532:3802695522866930 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695522874360:3802695522878660 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695522884590:3802695522901201 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695522904811:3802695522946201 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (57) ################# -1711657339520727:1711657339522804 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657339531588:1711657339532338 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657340618313:1711657340620777 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657340618313:1711657340625194 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657340627523:1711657342356840 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657340627523:1711657342387935 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657342394146:1711657342395166 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657342398121:1711657342398816 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695530336055:3802695530541817 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695530563157:3802695530768388 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695530982570:3802695532351270 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695530982570:3802695532361530 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695532370930:3802695532390310 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695532394320:3802695532442591 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695532457781:3802695532588922 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695532593672:3802695532746773 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695532954495:3802695533873721 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695532954495:3802695533884821 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695534091993:3802695535140761 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695534091993:3802695535151861 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695535159081:3802695535163231 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695535169301:3802695535187261 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695535190881:3802695535232151 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (56) ################# -1711657357861850:1711657357863589 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657357872795:1711657357873315 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657358940198:1711657358942646 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657358940198:1711657358947414 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657358949778:1711657360682518 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657358949778:1711657360703497 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657360709462:1711657360710538 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657360713480:1711657360714154 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695542671307:3802695542875378 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695542896228:3802695543104180 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695543318532:3802695544576981 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695543318532:3802695544587301 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695544596851:3802695544617251 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695544621291:3802695544670272 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695544685392:3802695544815483 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695544820223:3802695544972414 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695545180355:3802695545998552 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695545180355:3802695546009652 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695546216983:3802695547480463 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695546216983:3802695547491673 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695547499123:3802695547503343 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695547509273:3802695547527143 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695547530703:3802695547572263 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (55) ################# -1711657376168583:1711657376170679 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657376180334:1711657376180896 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657377251101:1711657377253384 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657377251101:1711657377257776 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657377260123:1711657378981944 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657377260123:1711657379012872 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657379019096:1711657379020218 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657379023196:1711657379023882 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695554994638:3802695555200239 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695555221690:3802695555429661 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695555644603:3802695557027493 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695555644603:3802695557038993 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695557048803:3802695557070393 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695557074333:3802695557123654 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695557139124:3802695557270645 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695557275505:3802695557426716 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695557636747:3802695558565314 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695557636747:3802695558576424 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695558783706:3802695559832654 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695558783706:3802695559843754 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695559851214:3802695559855414 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695559861514:3802695559878164 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695559881704:3802695559922674 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (54) ################# -1711657394434191:1711657394436030 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657394444699:1711657394445272 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657395512735:1711657395515118 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657395512735:1711657395519745 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657395522088:1711657397236077 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657395522088:1711657397267142 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657397273244:1711657397274575 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657397277522:1711657397278136 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695567291999:3802695567496731 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695567518271:3802695567711172 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695567925064:3802695569216343 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695567925064:3802695569227764 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695569237654:3802695569259334 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695569263364:3802695569312664 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695569328344:3802695569459875 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695569464655:3802695569623926 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695569831818:3802695570755475 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695569831818:3802695570766585 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695570973767:3802695572028294 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695570973767:3802695572038994 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695572045805:3802695572050255 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695572056315:3802695572074675 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695572078285:3802695572119805 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (53) ################# -1711657412693427:1711657412695433 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657412704609:1711657412705178 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657413773211:1711657413775510 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657413773211:1711657413779939 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657413782277:1711657415505393 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657413782277:1711657415536534 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657415542749:1711657415543828 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657415546824:1711657415547448 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695579312748:3802695579516809 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695579539000:3802695579745481 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695579959963:3802695581394613 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695579959963:3802695581406013 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695581415633:3802695581434694 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695581438634:3802695581488374 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695581503834:3802695581635565 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695581640625:3802695581791376 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695581999388:3802695582824394 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695581999388:3802695582835484 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695583042725:3802695584086463 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695583042725:3802695584096553 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695584103833:3802695584108323 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695584114533:3802695584132314 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695584135914:3802695584177894 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (52) ################# -1711657430998582:1711657431000501 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657431009134:1711657431009628 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657432077800:1711657432080132 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657432077800:1711657432084656 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657432087039:1711657433819683 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657432087039:1711657433850630 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657433856818:1711657433857892 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657433860813:1711657433861489 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695591385358:3802695591591649 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695591612889:3802695591819401 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695592033632:3802695593384012 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695592033632:3802695593395863 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695593405483:3802695593425733 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695593429643:3802695593479493 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695593494513:3802695593626524 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695593631244:3802695593784305 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695593992337:3802695595028785 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695593992337:3802695595039915 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695595247166:3802695596503336 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695595247166:3802695596513146 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695596519956:3802695596524666 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695596530496:3802695596548436 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695596552076:3802695596593036 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (51) ################# -1711657449268483:1711657449270660 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657449279282:1711657449279786 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657450348000:1711657450350361 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657450348000:1711657450354492 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657450356847:1711657452076308 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657450356847:1711657452106917 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657452113073:1711657452114136 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657452117330:1711657452118015 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695604016152:3802695604221893 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695604243403:3802695604450695 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695604665006:3802695606028436 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695604665006:3802695606039836 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695606049556:3802695606068936 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695606072896:3802695606122007 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695606137037:3802695606269488 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695606274378:3802695606425009 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695606633040:3802695607550887 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695606633040:3802695607561987 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695607769359:3802695608821696 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695607769359:3802695608832807 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695608839957:3802695608844227 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695608850357:3802695608868417 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695608872027:3802695608913677 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (50) ################# -1711657467506151:1711657467507893 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657467517498:1711657467518077 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657468584380:1711657468586881 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657468584380:1711657468591673 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657468594020:1711657470319188 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657468594020:1711657470350862 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657470357028:1711657470358103 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657470361114:1711657470361839 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695616131361:3802695616335182 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695616356402:3802695616564584 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695616778976:3802695618045645 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695616778976:3802695618057095 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695618066545:3802695618085085 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695618089135:3802695618137816 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695618152786:3802695618284817 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695618289587:3802695618438288 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695618646170:3802695619561556 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695618646170:3802695619572726 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695619780098:3802695620830866 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695619780098:3802695620841956 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695620849086:3802695620853326 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695620859016:3802695620876236 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695620879886:3802695620921056 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (49) ################# -1711657485807357:1711657485809260 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657485818816:1711657485819290 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657486889574:1711657486891929 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657486889574:1711657486896235 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657486898587:1711657488638473 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657486898587:1711657488659562 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657488665801:1711657488666876 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657488669814:1711657488670498 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695628138710:3802695628340972 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695628362732:3802695628571213 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695628785635:3802695630054034 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695628785635:3802695630065424 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695630075794:3802695630097384 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695630101394:3802695630150365 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695630165105:3802695630296136 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695630300896:3802695630451987 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695630659848:3802695631589045 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695630659848:3802695631600195 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695631807877:3802695632859234 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695631807877:3802695632870325 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695632877495:3802695632881665 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695632887875:3802695632906875 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695632910525:3802695632951345 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (48) ################# -1711657504101000:1711657504103044 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657504111891:1711657504112439 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657505179474:1711657505181976 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657505179474:1711657505186518 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657505188851:1711657506905505 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657505188851:1711657506936590 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657506942933:1711657506943940 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657506946857:1711657506947547 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695640173699:3802695640378980 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695640399961:3802695640609072 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695640823564:3802695642089053 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695640823564:3802695642100483 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695642110733:3802695642131333 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695642135243:3802695642184274 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695642199504:3802695642330425 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695642335205:3802695642486046 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695642693938:3802695643618724 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695642693938:3802695643629815 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695643837446:3802695644887854 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695643837446:3802695644899014 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695644906034:3802695644910194 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695644916184:3802695644933844 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695644937484:3802695644979225 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (47) ################# -1711657522396621:1711657522398526 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657522407474:1711657522408054 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657523480969:1711657523483651 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657523480969:1711657523488585 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657523490984:1711657525216514 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657523490984:1711657525246925 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657525252956:1711657525254034 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657525256973:1711657525257662 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695652188278:3802695652391730 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695652412460:3802695652619171 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695652833973:3802695654099692 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695652833973:3802695654111433 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695654121083:3802695654140153 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695654144113:3802695654192623 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695654208363:3802695654339904 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695654344614:3802695654496125 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695654704017:3802695655617814 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695654704017:3802695655628994 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695655836575:3802695656886933 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695655836575:3802695656898053 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695656905223:3802695656909473 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695656915273:3802695656931903 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695656935533:3802695656977094 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (46) ################# -1711657540709054:1711657540711049 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657540720782:1711657540721359 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657541788696:1711657541790982 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657541788696:1711657541795516 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657541797854:1711657543529248 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657541797854:1711657543559847 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657543566046:1711657543566989 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657543569904:1711657543570536 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695664194717:3802695664397448 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695664418378:3802695665033433 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695665248185:3802695666506384 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695665248185:3802695666517804 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695666527444:3802695666548184 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695666552124:3802695666601465 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695666615855:3802695666747506 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695666752266:3802695666902377 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695667110398:3802695668061825 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695667110398:3802695668072616 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695668279777:3802695669465196 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695668279777:3802695669476296 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695669483636:3802695669488096 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695669494086:3802695669512146 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695669515766:3802695669556647 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (45) ################# -1711657559068492:1711657559070024 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657559078832:1711657559079350 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657560134149:1711657560136546 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657560134149:1711657560141175 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657560143539:1711657560509259 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657560143539:1711657560539733 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657560545411:1711657560546408 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657560557484:1711657560558175 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695676706190:3802695676909951 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695676930841:3802695677138223 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695677352245:3802695678610064 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695677352245:3802695678621584 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695678631364:3802695678649944 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695678653804:3802695678702175 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695678716595:3802695678848956 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695678853616:3802695679002837 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695679210898:3802695680025954 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695679210898:3802695680036295 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695680243156:3802695681491605 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695680243156:3802695681502835 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695681509905:3802695681514255 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695681519945:3802695681536835 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695681540535:3802695681581626 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (44) ################# -1711657575972838:1711657575974656 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657575984875:1711657575985444 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657577042677:1711657577045248 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657577042677:1711657577050138 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657577052511:1711657577412859 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657577052511:1711657577442341 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657577448364:1711657577449286 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657577451931:1711657577452539 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695688746689:3802695688952710 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695688975000:3802695689184292 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695689398793:3802695690651853 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695689398793:3802695690663283 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695690673253:3802695690692453 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695690696493:3802695690745163 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695690760624:3802695690892725 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695690897575:3802695691047066 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695691255067:3802695692052233 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695691255067:3802695692062073 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695692269025:3802695693483084 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695692269025:3802695693494204 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695693501674:3802695693505884 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695693512034:3802695693530214 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695693533864:3802695693574724 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (43) ################# -1711657592924853:1711657592926668 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657592935801:1711657592936386 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657593989073:1711657593991454 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657593989073:1711657593996056 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657593998372:1711657594357272 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657593998372:1711657594387112 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657594392992:1711657594393955 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657594396644:1711657594397204 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695700871829:3802695701076300 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695701097610:3802695701307402 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695701521444:3802695702795553 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695701521444:3802695702807023 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695702817023:3802695702838073 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695702842043:3802695702890524 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695702905774:3802695703037465 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695703042295:3802695703195146 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695703403098:3802695704399005 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695703403098:3802695704403745 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695704610086:3802695705789755 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695704610086:3802695705800865 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695705808175:3802695705812275 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695705818025:3802695705836375 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695705840045:3802695705881716 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (42) ################# -1711657609864698:1711657609866496 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657609876260:1711657609876771 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657610932398:1711657610934951 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657610932398:1711657610939418 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657610941746:1711657611302185 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657610941746:1711657611332046 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657611337781:1711657611338747 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657611341469:1711657611342057 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695713105519:3802695713309600 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695713330841:3802695713537822 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695713752344:3802695715026843 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695713752344:3802695715038223 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695715048183:3802695715069434 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695715073424:3802695715122544 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695715137024:3802695715269825 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695715274765:3802695715424446 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695715632418:3802695716523134 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695715632418:3802695716527614 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695716733686:3802695717783334 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695716733686:3802695717794444 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695717801664:3802695717805774 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695717811484:3802695717828344 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695717831984:3802695717873364 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (41) ################# -1711657626718794:1711657626720527 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657626729801:1711657626730369 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657627786468:1711657627788946 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657627786468:1711657627793271 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657627795616:1711657628150436 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657627795616:1711657628180451 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657628185994:1711657628187078 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657628189786:1711657628190411 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695725104908:3802695725310350 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695725331570:3802695725537711 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695725751163:3802695727028302 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695725751163:3802695727039863 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695727049993:3802695727070373 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695727074373:3802695727122953 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695727138043:3802695727269844 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695727274664:3802695727423915 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695727632167:3802695728513404 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695727632167:3802695728518074 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695728724005:3802695729774663 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695728724005:3802695729785773 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695729792993:3802695729797463 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695729803193:3802695729819653 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695729823243:3802695729864194 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (40) ################# -1711657643606918:1711657643608884 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657643617569:1711657643618124 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657644675075:1711657644677306 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657644675075:1711657644681779 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657644684072:1711657645041810 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657644684072:1711657645072248 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657645077972:1711657645078925 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657645081597:1711657645082475 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695737105117:3802695737310008 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695737331858:3802695737539880 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695737754171:3802695739028901 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695737754171:3802695739040341 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695739050701:3802695739070601 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695739074501:3802695739123572 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695739138182:3802695739270623 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695739275453:3802695739426474 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695739634545:3802695740507372 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695739634545:3802695740511812 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695740718034:3802695741768831 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695740718034:3802695741779961 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695741787471:3802695741791902 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695741797632:3802695741815862 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695741819522:3802695741861592 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (39) ################# -1711657660568169:1711657660570249 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657660578894:1711657660579456 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657661633656:1711657661636034 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657661633656:1711657661640434 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657661642778:1711657662000315 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657661642778:1711657662003507 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657662020554:1711657662021690 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657662034393:1711657662034842 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695749078966:3802695749283057 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695749304677:3802695749528089 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695749742291:3802695751028350 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695749742291:3802695751039740 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695751049560:3802695751070871 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695751074831:3802695751123731 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695751138781:3802695751269002 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695751273732:3802695751421923 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695751630195:3802695752513371 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695751630195:3802695752518121 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695752724093:3802695753774821 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695752724093:3802695753785891 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695753793121:3802695753797361 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695753803111:3802695753819941 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695753823611:3802695753865101 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (38) ################# -1711657677406311:1711657677407937 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657677417218:1711657677417700 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657678467367:1711657678469786 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657678467367:1711657678474398 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657678476850:1711657678830369 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657678476850:1711657678833746 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657678851355:1711657678852512 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657678865014:1711657678865463 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695761087954:3802695761294596 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695761316266:3802695761529828 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695761744469:3802695763030749 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695761744469:3802695763042309 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695763052289:3802695763071879 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695763075719:3802695763124439 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695763139039:3802695763269730 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695763274480:3802695763424292 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695763632363:3802695764524180 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695763632363:3802695764528620 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695764734681:3802695765783929 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695764734681:3802695765794999 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695765802139:3802695765806469 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695765812209:3802695765829279 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695765832920:3802695765873980 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (37) ################# -1711657694309553:1711657694310846 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657694318693:1711657694319173 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657695372862:1711657695375055 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657695372862:1711657695379345 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657695381605:1711657695736647 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657695381605:1711657695740034 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657695757604:1711657695758635 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657695770966:1711657695771432 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695773107104:3802695773315125 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695773337665:3802695773545517 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695773760558:3802695775027068 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695773760558:3802695775038958 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695775048548:3802695775069378 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695775073278:3802695775122689 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695775137839:3802695775269120 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695775273930:3802695775424521 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695775632582:3802695776505409 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695775632582:3802695776510039 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695776716070:3802695777767808 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695776716070:3802695777778898 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695777785968:3802695777790348 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695777796139:3802695777814409 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695777818059:3802695777859739 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (36) ################# -1711657711265803:1711657711267185 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657711275581:1711657711276049 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657712351827:1711657712354183 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657712351827:1711657712358551 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657712360813:1711657712716230 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657712360813:1711657712719716 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657712736840:1711657712737760 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657712749803:1711657712750252 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695785095463:3802695785298634 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695785319944:3802695785532326 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695785746247:3802695787029087 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695785746247:3802695787040467 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695787050577:3802695787071927 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695787076177:3802695787125607 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695787140107:3802695787271778 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695787276718:3802695787426669 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695787634651:3802695788515497 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695787634651:3802695788519837 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695788725789:3802695789775387 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695788725789:3802695789786487 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695789793657:3802695789797757 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695789803867:3802695789820837 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695789824487:3802695789865647 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (35) ################# -1711657728166997:1711657728168465 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657728176582:1711657728177061 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657729250128:1711657729252264 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657729250128:1711657729256577 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657729258852:1711657729615349 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657729258852:1711657729618683 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657729635725:1711657729636772 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657729649292:1711657729649737 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695797278223:3802695797485304 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695797507844:3802695797704786 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695797919177:3802695799246427 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695797919177:3802695799257897 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695799268327:3802695799288128 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695799292078:3802695799340538 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695799355748:3802695799486409 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695799491079:3802695799643310 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695799851222:3802695800764699 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695799851222:3802695800775779 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695800983330:3802695802031768 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695800983330:3802695802042878 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695802050188:3802695802054488 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695802060228:3802695802077198 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695802080768:3802695802121519 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (34) ################# -1711657745099525:1711657745100818 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657745108935:1711657745109411 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657746177161:1711657746179270 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657746177161:1711657746183778 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657746186246:1711657746547351 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657746186246:1711657746550797 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657746568090:1711657746569126 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657746580993:1711657746581455 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695809323172:3802695809528233 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695809549504:3802695809755035 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695809968947:3802695811313976 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695809968947:3802695811325326 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695811335237:3802695811356437 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695811360407:3802695811409237 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695811424737:3802695811557358 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695811562178:3802695811714139 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695811922111:3802695812814307 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695811922111:3802695812825407 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695813032619:3802695814081117 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695813032619:3802695814092197 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695814099287:3802695814103547 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695814109257:3802695814127297 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695814130857:3802695814172017 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (33) ################# -1711657762058264:1711657762059479 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657762067611:1711657762068234 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657763134031:1711657763136253 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657763134031:1711657763140619 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657763142860:1711657763492681 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657763142860:1711657763496022 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657763513098:1711657763513985 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657763526029:1711657763526476 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695821359211:3802695821566172 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695821587713:3802695821796924 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695822010816:3802695823325736 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695822010816:3802695823337136 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695823346896:3802695823367236 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695823371166:3802695823420366 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695823435346:3802695823567247 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695823572117:3802695823726359 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695823934120:3802695824831237 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695823934120:3802695824842347 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695825049488:3802695826372208 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695825049488:3802695826383288 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695826390608:3802695826395078 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695826401238:3802695826418989 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695826422629:3802695826464839 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (32) ################# -1711657779018520:1711657779019755 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657779028007:1711657779028477 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657780096222:1711657780098333 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657780096222:1711657780102628 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657780104878:1711657780468602 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657780104878:1711657780471614 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657780488466:1711657780489469 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657780501793:1711657780502264 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695833619902:3802695833825913 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695833847963:3802695834056005 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695834270447:3802695835528636 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695834270447:3802695835540286 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695835550606:3802695835572076 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695835576056:3802695835624826 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695835639596:3802695835769947 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695835774667:3802695835925428 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695836219071:3802695836936026 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695836219071:3802695836948316 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695837158828:3802695838207495 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695837158828:3802695838215956 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695838224956:3802695838228576 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695838237136:3802695838259946 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695838263246:3802695838334046 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (31) ################# -1711657795879725:1711657795881013 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657795889230:1711657795889711 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657796952049:1711657796954114 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657796952049:1711657796958801 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657796961063:1711657797316925 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657796961063:1711657797320332 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657797337533:1711657797338728 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657797350519:1711657797350985 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695845388099:3802695845546480 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695845554460:3802695845739901 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695845948453:3802695847087562 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695845948453:3802695847096112 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695847103212:3802695847116992 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695847120302:3802695847155172 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695847168032:3802695847255793 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695847259663:3802695847397444 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695847603775:3802695848553772 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695847603775:3802695848557272 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695848761634:3802695849810562 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695848761634:3802695849818802 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695849824572:3802695849827752 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695849832622:3802695849845602 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695849848632:3802695849879912 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (30) ################# -1711657812655233:1711657812656532 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657812664886:1711657812665407 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657813710361:1711657813712523 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657813710361:1711657813716668 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657813718945:1711657814074323 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657813718945:1711657814077620 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657814095163:1711657814096140 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657814108167:1711657814108609 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695856929005:3802695857023345 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695857030725:3802695857216967 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695857424558:3802695858563697 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695857424558:3802695858572067 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695858579967:3802695858592897 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695858595887:3802695858631157 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695858642057:3802695858728558 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695858732288:3802695858871179 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695859077341:3802695859948567 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695859077341:3802695859957157 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695860162739:3802695861217346 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695860162739:3802695861225466 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695861230886:3802695861234066 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695861239297:3802695861252367 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695861255217:3802695861286637 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (29) ################# -1711657829480523:1711657829481867 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657829489999:1711657829490477 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657830536629:1711657830538789 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657830536629:1711657830543057 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657830545343:1711657830899568 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657830545343:1711657830902499 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657830918938:1711657830919960 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657830932249:1711657830932796 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695868360839:3802695868455120 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695868462600:3802695868634751 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695868842193:3802695869982161 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695868842193:3802695869990601 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695869998941:3802695870012341 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695870015501:3802695870050072 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695870060732:3802695870147472 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695870151302:3802695870289393 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695870495515:3802695871356451 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695870495515:3802695871365031 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695871570543:3802695872757062 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695871570543:3802695872764752 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695872770262:3802695872773512 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695872778192:3802695872791072 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695872794102:3802695872825672 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (28) ################# -1711657846217021:1711657846218296 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657846226268:1711657846227008 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657847270495:1711657847272748 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657847270495:1711657847276880 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657847279147:1711657847634390 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657847279147:1711657847637689 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657847654748:1711657847655836 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657847667949:1711657847668424 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695879953905:3802695880053386 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695880060826:3802695880247467 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695880454879:3802695881601387 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695880454879:3802695881609117 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695881615328:3802695881628298 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695881631418:3802695881665938 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695881676538:3802695881763069 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695881766899:3802695881907900 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695882114241:3802695882975288 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695882114241:3802695882983788 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695883189219:3802695884234027 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695883189219:3802695884241807 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695884247257:3802695884250637 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695884255357:3802695884268127 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695884271157:3802695884302897 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (27) ################# -1711657863017130:1711657863018361 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657863026866:1711657863027406 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657864071827:1711657864073884 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657864071827:1711657864078262 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657864080510:1711657864412352 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657864080510:1711657864415364 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657864431561:1711657864432635 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657864435462:1711657864446111 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695891385489:3802695891479740 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695891487280:3802695891671972 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695891879463:3802695893019782 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695891879463:3802695893028172 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695893034502:3802695893048062 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695893051222:3802695893085962 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695893096742:3802695893183083 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695893186983:3802695893327084 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695893533265:3802695894396342 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695893533265:3802695894404622 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695894609983:3802695895656201 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695894609983:3802695895664911 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695895670511:3802695895673691 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695895678371:3802695895691381 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695895694401:3802695895725792 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (26) ################# -1711657879723792:1711657879725200 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657879733472:1711657879733935 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657880806870:1711657880808966 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657880806870:1711657880813208 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657880815429:1711657881172616 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657880815429:1711657881175874 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657881192847:1711657881193936 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657881205992:1711657881206461 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695903009166:3802695903103207 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695903110657:3802695903295428 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695903502920:3802695904640628 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695903502920:3802695904644618 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695904649858:3802695904661228 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695904664098:3802695904696678 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695904706258:3802695904791259 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695904794889:3802695904932890 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695905138562:3802695906018788 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695905138562:3802695906027158 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695906232550:3802695907278638 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695906232550:3802695907287298 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695907292688:3802695907295958 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695907300528:3802695907313878 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695907316968:3802695907348858 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (25) ################# -1711657896556721:1711657896557958 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657896566248:1711657896566724 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657897612989:1711657897615230 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657897612989:1711657897619179 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657897621434:1711657897974890 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657897621434:1711657897978238 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657897995369:1711657897996386 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657898008650:1711657898009142 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695914437550:3802695914531531 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695914539051:3802695914720132 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695914927534:3802695916068332 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695914927534:3802695916076052 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695916082352:3802695916095562 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695916098642:3802695916133033 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695916143643:3802695916230283 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695916234163:3802695916373504 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695916579716:3802695917434842 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695916579716:3802695917443082 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695917648464:3802695918692742 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695917648464:3802695918701342 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695918706732:3802695918709912 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695918714592:3802695918727622 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695918730712:3802695918762562 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (24) ################# -1711657913262655:1711657913263897 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657913271771:1711657913272243 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657914332718:1711657914334840 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657914332718:1711657914339377 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657914341679:1711657916037029 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657914341679:1711657916040758 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657916045556:1711657916046448 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657916048963:1711657916049437 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695925852665:3802695925946506 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695925953836:3802695926140687 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695926348039:3802695927491927 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695926348039:3802695927500387 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695927506527:3802695927519427 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695927522817:3802695927558188 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695927568778:3802695927655018 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695927658798:3802695927795929 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695928005951:3802695928882378 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695928005951:3802695928890528 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695929095959:3802695930143477 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695929095959:3802695930151837 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695930157377:3802695930160667 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695930165357:3802695930178467 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695930181487:3802695930212877 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (23) ################# -1711657931337520:1711657931338922 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657931347230:1711657931347891 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657932408820:1711657932410868 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657932408820:1711657932415134 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657932417403:1711657934144445 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657932417403:1711657934147772 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657934165324:1711657934166406 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657934179444:1711657934179959 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695937283510:3802695937377530 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695937384920:3802695937572012 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695937779463:3802695938921772 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695937779463:3802695938930202 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695938936342:3802695938949492 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695938952592:3802695938987012 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695938997822:3802695939084233 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695939088063:3802695939224684 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695939430945:3802695940292732 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695939430945:3802695940296352 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695940500903:3802695941550391 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695940500903:3802695941558641 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695941564081:3802695941567261 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695941571991:3802695941584721 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695941587741:3802695941619671 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (22) ################# -1711657949500112:1711657949501759 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657949511181:1711657949511896 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657950594881:1711657950597005 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657950594881:1711657950601776 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657950604095:1711657952330346 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657950604095:1711657952344747 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657952363002:1711657952364012 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657952366659:1711657952367214 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695948681344:3802695948776055 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695948783585:3802695948971346 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695949178948:3802695950323956 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695949178948:3802695950332416 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695950338606:3802695950351726 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695950354836:3802695950389757 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695950400277:3802695950486777 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695950490587:3802695950630228 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695950836390:3802695951709987 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695950836390:3802695951718737 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695951924108:3802695952973516 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695951924108:3802695952981666 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695952987216:3802695952990386 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695952995026:3802695953007826 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695953010896:3802695953042806 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (21) ################# -1711657967676409:1711657967677992 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657967686447:1711657967686921 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657968758208:1711657968760545 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657968758208:1711657968764705 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657968766947:1711657970505831 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657968766947:1711657970536356 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657970542543:1711657970543730 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657970546722:1711657970547391 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695960137499:3802695960232010 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695960239340:3802695960424871 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695960632373:3802695961773811 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695960632373:3802695961782171 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695961788351:3802695961801712 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695961804782:3802695961839742 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695961850162:3802695961937013 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695961940843:3802695962079724 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695962285845:3802695963149612 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695962285845:3802695963158132 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695963363493:3802695964407551 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695963363493:3802695964411121 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695964416091:3802695964419321 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695964423931:3802695964436611 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695964439591:3802695964471541 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (20) ################# -1711657985990223:1711657985991831 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657985999948:1711657986000416 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711657987067936:1711657987070268 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657987067936:1711657987074908 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657987077277:1711657988803449 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711657987077277:1711657988834386 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711657988840511:1711657988841623 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711657988844630:1711657988845250 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695971661694:3802695971755775 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695971763215:3802695971948236 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695972156328:3802695973300426 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695972156328:3802695973308796 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695973315136:3802695973328237 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695973331337:3802695973365697 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695973376407:3802695973462908 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695973466738:3802695973606369 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695973812590:3802695974672277 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695973812590:3802695974680717 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695974886218:3802695975932536 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695974886218:3802695975941046 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695975946316:3802695975949496 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695975955136:3802695975968016 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695975971126:3802695976010576 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (19) ################# -1711658004323802:1711658004325573 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658004334943:1711658004335450 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658005404651:1711658005407367 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658005404651:1711658005411672 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658005414025:1711658007134650 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658005414025:1711658007166126 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658007172211:1711658007173263 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658007176239:1711658007176940 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695983241760:3802695983335831 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695983343201:3802695983550283 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695983757794:3802695984901343 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695983757794:3802695984909683 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695984915953:3802695984929053 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695984932233:3802695984968153 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695984979023:3802695985065504 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695985069384:3802695985208855 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695985414986:3802695986296743 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695985414986:3802695986305153 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695986510495:3802695987556402 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695986510495:3802695987565052 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695987570392:3802695987573662 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695987578403:3802695987591553 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695987594613:3802695987626413 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (18) ################# -1711658022620974:1711658022622840 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658022631775:1711658022632345 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658023698027:1711658023700629 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658023698027:1711658023705263 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658023707586:1711658025430934 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658023707586:1711658025461161 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658025467234:1711658025468349 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658025471328:1711658025472012 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802695994716055:3802695994809785 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802695994817106:3802695995003197 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802695995210678:3802695996349017 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695995210678:3802695996356797 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695996363117:3802695996378597 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802695996381807:3802695996416787 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802695996427638:3802695996514198 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802695996518038:3802695996655399 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802695996861601:3802695997735847 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695996861601:3802695997744147 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695997949779:3802695998996117 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802695997949779:3802695999004897 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802695999010137:3802695999013307 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802695999017987:3802695999030817 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802695999033877:3802695999065777 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (17) ################# -1711658040907342:1711658040909465 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658040918204:1711658040918674 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658041987640:1711658041990189 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658041987640:1711658041995010 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658041997402:1711658043724484 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658041997402:1711658043755276 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658043761482:1711658043762559 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658043765548:1711658043766235 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696006168400:3802696006263051 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696006270451:3802696006455262 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696006662774:3802696007794682 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696006662774:3802696007803262 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696007809312:3802696007822822 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696007825922:3802696007860433 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696007870913:3802696007957593 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696007961373:3802696008101364 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696008308236:3802696009166312 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696008308236:3802696009174372 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696009379864:3802696010427262 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696009379864:3802696010435462 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696010441072:3802696010444282 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696010449972:3802696010463012 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696010466072:3802696010497892 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (16) ################# -1711658059215378:1711658059217158 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658059225647:1711658059226264 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658060294921:1711658060297412 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658060294921:1711658060302374 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658060304776:1711658062039786 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658060304776:1711658062071245 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658062077500:1711658062078565 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658062081499:1711658062082232 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696017556464:3802696017650615 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696017658155:3802696017844336 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696018051868:3802696019194146 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696018051868:3802696019202606 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696019208706:3802696019221686 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696019224786:3802696019259087 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696019269657:3802696019356247 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696019360027:3802696019499108 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696019705300:3802696020579456 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696019705300:3802696020582956 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696020787578:3802696021838036 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696020787578:3802696021846446 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696021851906:3802696021855086 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696021860586:3802696021873456 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696021876546:3802696021908256 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (15) ################# -1711658077542161:1711658077544001 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658077552958:1711658077553633 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658078641751:1711658078644555 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658078641751:1711658078648946 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658078651314:1711658080379393 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658078651314:1711658080410850 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658080416857:1711658080417941 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658080420956:1711658080421652 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696029177110:3802696029271551 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696029278891:3802696029569213 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696029776725:3802696030921073 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696029776725:3802696030929373 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696030935473:3802696030948964 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696030952024:3802696030986814 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696030997504:3802696031084155 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696031087945:3802696031225966 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696031432357:3802696032291383 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696031432357:3802696032295004 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696032499535:3802696033546783 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696032499535:3802696033555103 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696033560393:3802696033563563 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696033568283:3802696033581293 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696033584373:3802696033615933 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (14) ################# -1711658095799163:1711658095801028 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658095810451:1711658095810943 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658096882629:1711658096884907 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658096882629:1711658096889572 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658096892008:1711658098623839 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658096892008:1711658098654928 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658098660984:1711658098662047 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658098665000:1711658098665693 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696040719436:3802696040813737 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696040821157:3802696041007848 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696041215480:3802696042360318 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696041215480:3802696042368578 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696042374648:3802696042388178 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696042391308:3802696042426128 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696042436508:3802696042523209 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696042527149:3802696042666940 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696042873082:3802696043723048 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696042873082:3802696043731758 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696043937229:3802696044986957 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696043937229:3802696044995217 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696045000747:3802696045003967 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696045008397:3802696045021777 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696045024817:3802696045056368 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (13) ################# -1711658114069256:1711658114071401 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658114080996:1711658114081563 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658115149557:1711658115151907 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658115149557:1711658115156315 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658115158655:1711658116886619 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658115158655:1711658116917610 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658116923972:1711658116925044 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658116928120:1711658116928784 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696052124970:3802696052219351 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696052226831:3802696052413062 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696052620554:3802696053761442 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696052620554:3802696053769762 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696053777553:3802696053791133 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696053794263:3802696053830403 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696053841113:3802696053927764 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696053931684:3802696054071345 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696054277636:3802696055145713 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696054277636:3802696055154523 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696055359834:3802696056403092 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696055359834:3802696056406902 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696056411862:3802696056415012 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696056419752:3802696056432782 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696056435782:3802696056467983 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (12) ################# -1711658132369731:1711658132371259 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658132379967:1711658132380533 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658133445548:1711658133447904 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658133445548:1711658133452480 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658133454994:1711658135192886 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658133454994:1711658135224277 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658135230274:1711658135231319 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658135234237:1711658135234913 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696063554505:3802696063648686 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696063656056:3802696063840637 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696064048489:3802696065196887 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696064048489:3802696065204597 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696065212277:3802696065225667 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696065228737:3802696065263418 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696065274228:3802696065360688 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696065364508:3802696065504519 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696065710721:3802696066576977 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696065710721:3802696066585517 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696066790839:3802696067838836 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696066790839:3802696067847566 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696067852906:3802696067856086 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696067861556:3802696067874547 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696067877617:3802696067908827 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (11) ################# -1711658150634666:1711658150637105 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658150645880:1711658150646367 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658151717646:1711658151720100 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658151717646:1711658151724632 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658151726996:1711658153451619 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658151726996:1711658153482358 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658153488500:1711658153489609 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658153492655:1711658153493282 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696074994100:3802696075088850 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696075096240:3802696075282322 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696075489833:3802696076625492 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696075489833:3802696076629362 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696076634782:3802696076645982 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696076648892:3802696076681472 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696076691082:3802696076776033 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696076779553:3802696076915894 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696077121765:3802696078001352 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696077121765:3802696078009712 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696078215053:3802696079261021 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696078215053:3802696079269551 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696079274801:3802696079278011 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696079283721:3802696079297002 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696079300092:3802696079331662 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (10) ################# -1711658168899644:1711658168901665 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658168910873:1711658168911381 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658169960643:1711658169962906 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658169960643:1711658169967512 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658169969838:1711658170332094 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658169969838:1711658170352231 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658170367697:1711658170368706 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658170371479:1711658170372089 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696086408584:3802696086502495 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696086509995:3802696086695887 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696086903508:3802696088058307 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696086903508:3802696088070007 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696088079227:3802696088099487 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696088105247:3802696088162707 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696088177558:3802696088300599 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696088305779:3802696088464350 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696088674291:3802696089478927 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696088674291:3802696089490797 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696089698599:3802696090751317 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696089698599:3802696090763267 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696090770727:3802696090774467 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696090781337:3802696090800317 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696090805767:3802696090854968 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (9) ################# -1711658185813893:1711658185815629 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658185824951:1711658185825446 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658186879115:1711658186881786 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658186879115:1711658186886306 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658186888653:1711658187247681 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658186888653:1711658187277617 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658187283280:1711658187284223 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658187286843:1711658187287460 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696097938989:3802696098069890 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696098079840:3802696098261632 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696098472963:3802696099621822 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696098472963:3802696099633712 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696099646842:3802696099665942 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696099671782:3802696099723023 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696099737283:3802696099858034 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696099863064:3802696100224366 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696100434318:3802696101033812 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696100434318:3802696101038352 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696101244424:3802696102297272 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696101244424:3802696102309182 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696102316922:3802696102320572 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696102326802:3802696102346412 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696102352112:3802696102400423 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (8) ################# -1711658202776268:1711658202778173 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658202787395:1711658202788013 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658203836803:1711658203839064 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658203836803:1711658203843707 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658203846138:1711658204222705 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658203846138:1711658204253000 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658204259356:1711658204260430 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658204263443:1711658204264119 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696109472165:3802696109604596 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696109614576:3802696109796108 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696110007129:3802696111155918 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696110007129:3802696111167838 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696111178648:3802696111197568 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696111203318:3802696111254928 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696111269229:3802696111389809 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696111395009:3802696111549911 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696111758902:3802696112555538 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696111758902:3802696112561048 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696112767350:3802696113803837 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696112767350:3802696113815737 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696113823388:3802696113827048 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696113833548:3802696113852398 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696113857948:3802696113906768 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (7) ################# -1711658219634945:1711658219637014 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658219647033:1711658219647540 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658220704524:1711658220706737 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658220704524:1711658220711369 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658220713761:1711658221070579 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658220713761:1711658221100148 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658221105863:1711658221106898 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658221109649:1711658221110211 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696121041800:3802696121173671 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696121183691:3802696121366313 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696121577484:3802696122725793 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696121577484:3802696122737653 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696122748253:3802696122767743 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696122773713:3802696122826004 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696122840334:3802696122961235 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696122966405:3802696123121086 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696123330197:3802696124140743 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696123330197:3802696124151394 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696124358625:3802696125411443 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696124358625:3802696125423373 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696125430993:3802696125434653 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696125441063:3802696125460223 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696125465793:3802696125514744 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (6) ################# -1711658236566155:1711658236567996 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658236576912:1711658236577475 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658237630668:1711658237633250 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658237630668:1711658237637510 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658237639845:1711658238000416 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658237639845:1711658238030514 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658238036243:1711658238037193 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658238039791:1711658238040404 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696132561946:3802696132692687 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696132702627:3802696132884809 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696133095700:3802696134243929 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696133095700:3802696134255809 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696134267049:3802696134286349 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696134292179:3802696134343909 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696134358279:3802696134478950 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696134483990:3802696134639232 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696134848563:3802696135664299 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696134848563:3802696135676179 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696135884231:3802696136938009 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696135884231:3802696136949899 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696136957519:3802696136961179 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696136967349:3802696136986019 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696136991519:3802696137040669 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (5) ################# -1711658253545759:1711658253547625 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658253556522:1711658253557030 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658254610943:1711658254613320 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658254610943:1711658254617949 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658254620298:1711658254981209 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658254620298:1711658255011747 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658255017640:1711658255018699 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658255021499:1711658255022161 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696144108021:3802696144239242 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696144249342:3802696144431844 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696144642695:3802696145790464 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696144642695:3802696145802424 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696145813334:3802696145832374 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696145838154:3802696145890224 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696145904535:3802696146025485 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696146030746:3802696146186027 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696146395488:3802696147208054 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696146395488:3802696147219974 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696147427686:3802696148470404 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696147427686:3802696148474834 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696148481154:3802696148484774 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696148490834:3802696148509374 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696148515024:3802696148561944 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (4) ################# -1711658270443815:1711658270445914 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658270454623:1711658270455330 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658271507848:1711658271510141 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658271507848:1711658271514250 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658271516595:1711658271874464 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658271516595:1711658271877675 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658271897016:1711658271898353 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658271910171:1711658271910694 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696155614227:3802696155746178 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696155756118:3802696155936519 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696156147831:3802696157296529 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696156147831:3802696157308419 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696157318039:3802696157337170 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696157342930:3802696157395080 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696157409400:3802696157530141 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696157535381:3802696157694532 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696157903704:3802696158712770 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696157903704:3802696158724680 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696158932681:3802696159983819 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696158932681:3802696159995789 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696160017460:3802696160021500 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696160028080:3802696160047190 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696160052880:3802696160100740 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (3) ################# -1711658287356843:1711658287358504 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658287366750:1711658287367244 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658288418882:1711658288421218 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658288418882:1711658288425361 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658288427646:1711658288783858 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658288427646:1711658288787383 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658288804508:1711658288805483 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658288817443:1711658288817907 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696167169003:3802696167300834 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696167310814:3802696167491435 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696167702377:3802696168857605 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696167702377:3802696168869205 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696168879365:3802696168898255 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696168903955:3802696168961616 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696168976376:3802696169097107 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696169102277:3802696169259988 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696169469260:3802696170277355 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696169469260:3802696170289215 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696170497157:3802696171548345 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696170497157:3802696171560285 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696171568025:3802696171571665 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696171577915:3802696171596645 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696171602265:3802696171650645 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (2) ################# -1711658304330247:1711658304331712 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658304340193:1711658304340661 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658305390888:1711658305392920 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658305390888:1711658305397339 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658305399667:1711658305760008 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658305399667:1711658305763405 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658305780555:1711658305781596 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658305794062:1711658305794508 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696178733888:3802696178864919 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696178875009:3802696179049300 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696179260992:3802696180515681 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696179260992:3802696180526311 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696180535651:3802696180555172 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696180561002:3802696180613352 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696180627922:3802696180749113 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696180754263:3802696180912414 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696181121556:3802696181942622 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696181121556:3802696181954502 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696182162233:3802696183213271 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696182162233:3802696183225211 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696183233071:3802696183236721 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696183242782:3802696183261472 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696183267172:3802696183315762 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (1) ################# -1711658321289577:1711658321291105 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658321299745:1711658321300263 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658322350803:1711658322352878 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658322350803:1711658322357143 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658322359468:1711658322719204 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658322359468:1711658322722526 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658322739958:1711658322740934 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658322752944:1711658322753390 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696190665717:3802696190797348 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696190807208:3802696190986909 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696191197971:3802696192455430 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696191197971:3802696192466010 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696192474320:3802696192493780 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696192499450:3802696192552031 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696192566731:3802696192687282 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696192692392:3802696192849353 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696193058654:3802696193878340 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696193058654:3802696193890230 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696194098252:3802696195149279 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696194098252:3802696195161250 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696195168910:3802696195172580 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696195178820:3802696195198350 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696195204030:3802696195252710 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! ## Iteration (0) ################# -1711658338094693:1711658338096614 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658338106834:1711658338107305 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 -1711658339155224:1711658339157689 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658339155224:1711658339162030 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658339164350:1711658339525835 14428:14428 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658339164350:1711658339555741 14428:14428 hsaKmtWaitOnEvent(, ) = 0 -1711658339561289:1711658339562394 14428:14428 hsaKmtQueryPointerInfo(, ) = 0 -1711658339565183:1711658339565743 14428:14428 hsaKmtQueryPointerInfo(, ) = 1 +3802696202323713:3802696202456254 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a4ff000, , ) = 0 +3802696202466314:3802696202645825 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a4ff000, , , , , ) = 0 +3802696202856687:3802696204017385 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696202856687:3802696204028455 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696204037905:3802696204057006 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a4ff000) = 0 +3802696204062646:3802696204115026 1963:1966 hsaKmtDeregisterMemory(0x7f706a4ff000) = 0 +3802696204129186:3802696204249817 1963:1966 hsaKmtRegisterMemoryWithFlags(0x7f706a0fe000, , ) = 0 +3802696204255127:3802696204410018 1963:1966 hsaKmtMapMemoryToGPUNodes(0x7f706a0fe000, , , , , ) = 0 +3802696204619300:3802696205443426 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696204619300:3802696205455386 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696205663057:3802696206715965 1963:1966 hsaKmtWaitOnMultipleEvents(, , , ) = 0 +3802696205663057:3802696206727905 1963:1966 hsaKmtWaitOnEvent(, ) = 0 +3802696206735365:3802696206739025 1963:1966 hsaKmtGetClockCounters(, ) = 0 +3802696206746026:3802696206764666 1963:1966 hsaKmtUnmapMemoryToGPU(0x7f706a0fe000) = 0 +3802696206770296:3802696206819316 1963:1966 hsaKmtDeregisterMemory(0x7f706a0fe000) = 0 PASSED! -1711658355050530:1711658355064929 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658355074741:1711658355106913 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658355116507:1711658355124642 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658355126840:1711658355133954 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658355144525:1711658355150746 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658355152795:1711658355388102 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658373554928:1711658373567556 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658373583331:1711658373606125 14428:14428 hsaKmtDeregisterMemory() = 0 -1711658373651933:1711658373657640 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658373684916:1711658373734029 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658373740935:1711658373747231 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658373749316:1711658373968663 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658373973179:1711658373979542 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658373981464:1711658374190636 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374194800:1711658374200685 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374202589:1711658374408922 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374413211:1711658374419133 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374421025:1711658374630125 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374655560:1711658374660800 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374663180:1711658374672467 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374675171:1711658374678110 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374681478:1711658374687208 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374689738:1711658374692724 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374694561:1711658374700770 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374703344:1711658374706826 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374708613:1711658374737714 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374740941:1711658374745391 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374747595:1711658374751283 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374753391:1711658374761928 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374764242:1711658374767375 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374769167:1711658374775322 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374786056:1711658374790896 14428:14428 hsaKmtSetEvent() = 0 -1711656606195495:1711658374812319 14428:14432 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658374821921:1711658374823155 14428:14432 hsaKmtSetEvent() = 0 -1711658374844450:1711658374847967 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658374850551:1711658374862387 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658374866138:1711658374876508 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658375027248:1711658375030076 14428:14432 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658374878478:1711658375497616 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658375500756:1711658375504623 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658375512969:1711658375520388 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658375512969:1711658375522574 14428:14428 hsaKmtDestroyQueue() = 0 -1711658375525054:1711658375529769 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658375531640:1711658375554876 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658375558339:1711658375562062 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658375563862:1711658375570580 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658375573057:1711658375575978 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658375577785:1711658375583635 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658375587078:1711658375591211 14428:14428 hsaKmtSetEvent() = 0 -1711658375032932:1711658375626088 14428:14432 hsaKmtWaitOnMultipleEvents(, , , ) = 0 -1711658375656587:1711658375658987 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375662343:1711658375666075 14428:14428 hsaKmtUnmapMemoryToGPU() = 0 -1711658375667926:1711658375675768 14428:14428 hsaKmtFreeMemory(, ) = 0 -1711658375678249:1711658375679254 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375680849:1711658375681647 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375683180:1711658375683973 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375685500:1711658375686335 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375687863:1711658375688644 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375690161:1711658375690965 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375692481:1711658375693284 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375694808:1711658375695642 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375697149:1711658375697936 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375699450:1711658375700255 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375701768:1711658375702545 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375704058:1711658375704871 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375706382:1711658375707110 14428:14428 hsaKmtDestroyEvent() = 0 -1711658375711377:1711658375711377 14428:14428 hsaKmtReleaseSystemProperties() = 0 +3802696213888349:3802696213920369 1963:1963 hsaKmtUnmapMemoryToGPU(0x7f7069800000) = 0 +3802696213943149:3802696213988009 1963:1963 hsaKmtFreeMemory(0x7f7069800000, ) = 0 +3802696213994889:3802696214002540 1963:1963 hsaKmtUnmapMemoryToGPU(0x7f7069200000) = 0 +3802696214004500:3802696214013790 1963:1963 hsaKmtFreeMemory(0x7f7069200000, ) = 0 diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_mgpu_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_mgpu_trace.txt index 77cb13f9c2..9b29fbbcf5 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_mgpu_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_mgpu_trace.txt @@ -1,6595 +1,6402 @@ ++ LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_mgpu # INIT ############################# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Number of GPUs: 1 # START (99) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x2401810) size(0x400000) kind(1) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - dst(0x2801820) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2290800000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290200000) + dst(0x7f2290800000) src(0x7f22915ff010) size(0x400000) kind(1) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(7) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(7) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(8) on-enter pid(1956) tid(1956)> + +<__hipPopCallConfiguration id(171) correlation_id(8) on-exit pid(1956) tid(1956)> + + + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x7f22911fe010) src(0x7f2290200000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2290800000) + + + + + + ptr(0x7f2290200000) + + + + + # START (98) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (97) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(18) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(18) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(19) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(19) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> + +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (96) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (95) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(29) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(29) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(30) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(30) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> + +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (94) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (93) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(40) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(40) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(41) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(41) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (92) ############################# - Activity records: - hipGetDeviceCount correlation_id(1) time_ns(43922570338225:43922570350816) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(2) time_ns(43922570414991:43922570417305) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(3) time_ns(43922570420850:43922570423976) process_id(26027) thread_id(26027) - hipMalloc correlation_id(4) time_ns(43922572625420:43922572708261) process_id(26027) thread_id(26027) - hipMalloc correlation_id(5) time_ns(43922572712560:43922572747856) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(6) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(6) time_ns(43922572757735:43922578884743) process_id(26027) thread_id(26027) - (null) correlation_id(7) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(7) time_ns(43922865127791:43922867209453) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(7) time_ns(43922867213507:43922867700708) device_id(0) queue_id(0) - hcCommandMarker correlation_id(8) time_ns(43922867711310:43922867722670) device_id(0) queue_id(0) - (null) correlation_id(8) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(8) time_ns(43922867233547:43922868704626) process_id(26027) thread_id(26027) - (null) correlation_id(9) time_ns(0:0) external_id(31) - hipFree correlation_id(9) time_ns(43922883606933:43922883712731) process_id(26027) thread_id(26027) - (null) correlation_id(10) time_ns(0:0) external_id(31) - hipFree correlation_id(10) time_ns(43922883719077:43922883747673) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(11) time_ns(43922902865915:43922902875804) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(12) time_ns(43922902879544:43922902881949) process_id(26027) thread_id(26027) - hipMalloc correlation_id(13) time_ns(43922905081211:43922905131288) process_id(26027) thread_id(26027) - hipMalloc correlation_id(14) time_ns(43922905146451:43922905187584) process_id(26027) thread_id(26027) - (null) correlation_id(15) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(15) time_ns(43922905201487:43922905857939) process_id(26027) thread_id(26027) - (null) correlation_id(16) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(16) time_ns(43922905888719:43922905928943) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(16) time_ns(43922905933474:43922906414755) device_id(0) queue_id(0) - hcCommandMarker correlation_id(17) time_ns(43922906417604:43922906424164) device_id(0) queue_id(0) - (null) correlation_id(17) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(17) time_ns(43922905933657:43922907330226) process_id(26027) thread_id(26027) - (null) correlation_id(18) time_ns(0:0) external_id(31) - hipFree correlation_id(18) time_ns(43922921951233:43922922047039) process_id(26027) thread_id(26027) - (null) correlation_id(19) time_ns(0:0) external_id(31) - hipFree correlation_id(19) time_ns(43922922053161:43922922081237) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(20) time_ns(43922941195766:43922941205679) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(21) time_ns(43922941209377:43922941211772) process_id(26027) thread_id(26027) - hipMalloc correlation_id(22) time_ns(43922943401847:43922943451557) process_id(26027) thread_id(26027) - hipMalloc correlation_id(23) time_ns(43922943468086:43922943496477) process_id(26027) thread_id(26027) - (null) correlation_id(24) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(24) time_ns(43922943500706:43922944138743) process_id(26027) thread_id(26027) - (null) correlation_id(25) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(25) time_ns(43922944170568:43922944210833) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(25) time_ns(43922944215327:43922944693408) device_id(0) queue_id(0) - hcCommandMarker correlation_id(26) time_ns(43922944696507:43922944703067) device_id(0) queue_id(0) - (null) correlation_id(26) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(26) time_ns(43922944229530:43922945636180) process_id(26027) thread_id(26027) - (null) correlation_id(27) time_ns(0:0) external_id(31) - hipFree correlation_id(27) time_ns(43922960282096:43922960379572) process_id(26027) thread_id(26027) - (null) correlation_id(28) time_ns(0:0) external_id(31) - hipFree correlation_id(28) time_ns(43922960385405:43922960421244) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(29) time_ns(43922980986535:43922980996620) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(30) time_ns(43922981000314:43922981002675) process_id(26027) thread_id(26027) - hipMalloc correlation_id(31) time_ns(43922983193110:43922983242775) process_id(26027) thread_id(26027) - hipMalloc correlation_id(32) time_ns(43922983258259:43922983298673) process_id(26027) thread_id(26027) - (null) correlation_id(33) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(33) time_ns(43922983303455:43922983991193) process_id(26027) thread_id(26027) - (null) correlation_id(34) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(34) time_ns(43922984026885:43922984067158) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(34) time_ns(43922984072743:43922985918186) device_id(0) queue_id(0) - hcCommandMarker correlation_id(35) time_ns(43922985922415:43922985953935) device_id(0) queue_id(0) - (null) correlation_id(35) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(35) time_ns(43922984082183:43922986890265) process_id(26027) thread_id(26027) - (null) correlation_id(36) time_ns(0:0) external_id(31) - hipFree correlation_id(36) time_ns(43923001493780:43923001593783) process_id(26027) thread_id(26027) - (null) correlation_id(37) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (91) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(51) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(51) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(52) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(52) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (90) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (89) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(62) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(62) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(63) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(63) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (88) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (87) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(73) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(73) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(74) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(74) on-exit pid(1956) tid(1956)> + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (86) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (85) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(84) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(84) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(85) on-enter pid(1956) tid(1956)> + +<__hipPopCallConfiguration id(171) correlation_id(85) on-exit pid(1956) tid(1956)> + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (84) ############################# - Activity records: - hipFree correlation_id(37) time_ns(43923001599628:43923001629383) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(38) time_ns(43923022566379:43923022577111) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(39) time_ns(43923022580804:43923022583438) process_id(26027) thread_id(26027) - hipMalloc correlation_id(40) time_ns(43923024855074:43923024907454) process_id(26027) thread_id(26027) - hipMalloc correlation_id(41) time_ns(43923024911894:43923024931794) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(42) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(42) time_ns(43923024936698:43923025616946) process_id(26027) thread_id(26027) - (null) correlation_id(43) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(43) time_ns(43923025640747:43923025662374) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(43) time_ns(43923025667862:43923027514585) device_id(0) queue_id(0) - hcCommandMarker correlation_id(44) time_ns(43923027518869:43923027550069) device_id(0) queue_id(0) - (null) correlation_id(44) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(44) time_ns(43923025682586:43923028481953) process_id(26027) thread_id(26027) - (null) correlation_id(45) time_ns(0:0) external_id(31) - hipFree correlation_id(45) time_ns(43923043071306:43923043170243) process_id(26027) thread_id(26027) - (null) correlation_id(46) time_ns(0:0) external_id(31) - hipFree correlation_id(46) time_ns(43923043176011:43923043203101) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(47) time_ns(43923063702211:43923063712585) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(48) time_ns(43923063716382:43923063718832) process_id(26027) thread_id(26027) - hipMalloc correlation_id(49) time_ns(43923065915567:43923065966184) process_id(26027) thread_id(26027) - hipMalloc correlation_id(50) time_ns(43923065982886:43923066011591) process_id(26027) thread_id(26027) - (null) correlation_id(51) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(51) time_ns(43923066015842:43923066671501) process_id(26027) thread_id(26027) - (null) correlation_id(52) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(52) time_ns(43923066702430:43923066742257) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(52) time_ns(43923066747787:43923068582030) device_id(0) queue_id(0) - hcCommandMarker correlation_id(53) time_ns(43923068586194:43923068617714) device_id(0) queue_id(0) - (null) correlation_id(53) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(53) time_ns(43923066747235:43923069558816) process_id(26027) thread_id(26027) - (null) correlation_id(54) time_ns(0:0) external_id(31) - hipFree correlation_id(54) time_ns(43923084166434:43923084250009) process_id(26027) thread_id(26027) - (null) correlation_id(55) time_ns(0:0) external_id(31) - hipFree correlation_id(55) time_ns(43923084265884:43923084283599) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(56) time_ns(43923104742826:43923104752374) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(57) time_ns(43923104756067:43923104758528) process_id(26027) thread_id(26027) - hipMalloc correlation_id(58) time_ns(43923106948971:43923106998942) process_id(26027) thread_id(26027) - hipMalloc correlation_id(59) time_ns(43923107014427:43923107055323) process_id(26027) thread_id(26027) - (null) correlation_id(60) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(60) time_ns(43923107069378:43923107751363) process_id(26027) thread_id(26027) - (null) correlation_id(61) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(61) time_ns(43923107782202:43923107823928) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(61) time_ns(43923107829290:43923109660973) device_id(0) queue_id(0) - hcCommandMarker correlation_id(62) time_ns(43923109664904:43923109696424) device_id(0) queue_id(0) - (null) correlation_id(62) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(62) time_ns(43923107840747:43923110646206) process_id(26027) thread_id(26027) - (null) correlation_id(63) time_ns(0:0) external_id(31) - hipFree correlation_id(63) time_ns(43923125304818:43923125389418) process_id(26027) thread_id(26027) - (null) correlation_id(64) time_ns(0:0) external_id(31) - hipFree correlation_id(64) time_ns(43923125404917:43923125433357) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(65) time_ns(43923145921261:43923145931435) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(66) time_ns(43923145935238:43923145937651) process_id(26027) thread_id(26027) - hipMalloc correlation_id(67) time_ns(43923148135273:43923148184877) process_id(26027) thread_id(26027) - hipMalloc correlation_id(68) time_ns(43923148202166:43923148230717) process_id(26027) thread_id(26027) - (null) correlation_id(69) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(69) time_ns(43923148235195:43923148890206) process_id(26027) thread_id(26027) - (null) correlation_id(70) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(70) time_ns(43923148921619:43923148962298) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(70) time_ns(43923148967771:43923150804894) device_id(0) queue_id(0) - hcCommandMarker correlation_id(71) time_ns(43923150808892:43923150841052) device_id(0) queue_id(0) - (null) correlation_id(71) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(71) time_ns(43923148967011:43923151783982) process_id(26027) thread_id(26027) - (null) correlation_id(72) time_ns(0:0) external_id(31) - hipFree correlation_id(72) time_ns(43923166413821:43923166495698) process_id(26027) thread_id(26027) - (null) correlation_id(73) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (83) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(95) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(95) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(96) on-enter pid(1956) tid(1956)> + + +<__hipPopCallConfiguration id(171) correlation_id(96) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (82) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (81) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(106) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(106) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(107) on-enter pid(1956) tid(1956)> + +<__hipPopCallConfiguration id(171) correlation_id(107) on-exit pid(1956) tid(1956)> + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (80) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (79) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(117) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(117) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(118) on-enter pid(1956) tid(1956)> + + +<__hipPopCallConfiguration id(171) correlation_id(118) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (78) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (77) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(128) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(128) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(129) on-enter pid(1956) tid(1956)> + + +<__hipPopCallConfiguration id(171) correlation_id(129) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (76) ############################# - Activity records: - hipFree correlation_id(73) time_ns(43923166501544:43923166529122) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(74) time_ns(43923187472300:43923187482793) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(75) time_ns(43923187486628:43923187489165) process_id(26027) thread_id(26027) - hipMalloc correlation_id(76) time_ns(43923189740883:43923189792175) process_id(26027) thread_id(26027) - hipMalloc correlation_id(77) time_ns(43923189796556:43923189816149) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(78) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(78) time_ns(43923189821160:43923190481532) process_id(26027) thread_id(26027) - (null) correlation_id(79) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(79) time_ns(43923190506640:43923190528706) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(79) time_ns(43923190534173:43923192373536) device_id(0) queue_id(0) - hcCommandMarker correlation_id(80) time_ns(43923192377643:43923192409483) device_id(0) queue_id(0) - (null) correlation_id(80) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(80) time_ns(43923190543949:43923193343331) process_id(26027) thread_id(26027) - (null) correlation_id(81) time_ns(0:0) external_id(31) - hipFree correlation_id(81) time_ns(43923207940666:43923208041035) process_id(26027) thread_id(26027) - (null) correlation_id(82) time_ns(0:0) external_id(31) - hipFree correlation_id(82) time_ns(43923208047021:43923208064334) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(83) time_ns(43923228537278:43923228546788) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(84) time_ns(43923228550628:43923228553109) process_id(26027) thread_id(26027) - hipMalloc correlation_id(85) time_ns(43923230723589:43923230773155) process_id(26027) thread_id(26027) - hipMalloc correlation_id(86) time_ns(43923230777434:43923230806756) process_id(26027) thread_id(26027) - (null) correlation_id(87) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(87) time_ns(43923230810974:43923231437837) process_id(26027) thread_id(26027) - (null) correlation_id(88) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(88) time_ns(43923231468999:43923231510014) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(88) time_ns(43923231514484:43923231997685) device_id(0) queue_id(0) - hcCommandMarker correlation_id(89) time_ns(43923232000725:43923232007605) device_id(0) queue_id(0) - (null) correlation_id(89) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(89) time_ns(43923231514870:43923232945021) process_id(26027) thread_id(26027) - (null) correlation_id(90) time_ns(0:0) external_id(31) - hipFree correlation_id(90) time_ns(43923247555347:43923247652887) process_id(26027) thread_id(26027) - (null) correlation_id(91) time_ns(0:0) external_id(31) - hipFree correlation_id(91) time_ns(43923247658848:43923247675545) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(92) time_ns(43923266790798:43923266800885) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(93) time_ns(43923266804638:43923266807088) process_id(26027) thread_id(26027) - hipMalloc correlation_id(94) time_ns(43923269004204:43923269054294) process_id(26027) thread_id(26027) - hipMalloc correlation_id(95) time_ns(43923269071335:43923269099836) process_id(26027) thread_id(26027) - (null) correlation_id(96) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(96) time_ns(43923269104178:43923269741867) process_id(26027) thread_id(26027) - (null) correlation_id(97) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(97) time_ns(43923269773387:43923269813869) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(97) time_ns(43923269818278:43923270309158) device_id(0) queue_id(0) - hcCommandMarker correlation_id(98) time_ns(43923270312110:43923270318830) device_id(0) queue_id(0) - (null) correlation_id(98) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(98) time_ns(43923269829999:43923271227540) process_id(26027) thread_id(26027) - (null) correlation_id(99) time_ns(0:0) external_id(31) - hipFree correlation_id(99) time_ns(43923285847908:43923285945374) process_id(26027) thread_id(26027) - (null) correlation_id(100) time_ns(0:0) external_id(31) - hipFree correlation_id(100) time_ns(43923285951361:43923285968041) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(101) time_ns(43923305073815:43923305083067) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(102) time_ns(43923305087221:43923305089606) process_id(26027) thread_id(26027) - hipMalloc correlation_id(103) time_ns(43923307263948:43923307313870) process_id(26027) thread_id(26027) - hipMalloc correlation_id(104) time_ns(43923307318020:43923307356703) process_id(26027) thread_id(26027) - (null) correlation_id(105) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(105) time_ns(43923307360879:43923308032277) process_id(26027) thread_id(26027) - (null) correlation_id(106) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(106) time_ns(43923308056868:43923308096612) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(106) time_ns(43923308101054:43923308579934) device_id(0) queue_id(0) - hcCommandMarker correlation_id(107) time_ns(43923308582862:43923308589422) device_id(0) queue_id(0) - (null) correlation_id(107) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(107) time_ns(43923308101603:43923309526202) process_id(26027) thread_id(26027) - (null) correlation_id(108) time_ns(0:0) external_id(31) - hipFree correlation_id(108) time_ns(43923324159330:43923324253297) process_id(26027) thread_id(26027) - (null) correlation_id(109) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (75) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(139) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(139) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(140) on-enter pid(1956) tid(1956)> + + +<__hipPopCallConfiguration id(171) correlation_id(140) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (74) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (73) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(150) on-enter pid(1956) tid(1956)> + +<__hipPushCallConfiguration id(46) correlation_id(150) on-exit pid(1956) tid(1956)> + +<__hipPopCallConfiguration id(171) correlation_id(151) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(151) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (72) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (71) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(161) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(161) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(162) on-enter pid(1956) tid(1956)> + +<__hipPopCallConfiguration id(171) correlation_id(162) on-exit pid(1956) tid(1956)> + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (70) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (69) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(172) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(172) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(173) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(173) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (68) ############################# - Activity records: - hipFree correlation_id(109) time_ns(43923324259607:43923324296890) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(110) time_ns(43923343783441:43923343792602) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(111) time_ns(43923343796414:43923343798915) process_id(26027) thread_id(26027) - hipMalloc correlation_id(112) time_ns(43923346029952:43923346080708) process_id(26027) thread_id(26027) - hipMalloc correlation_id(113) time_ns(43923346085241:43923346103704) process_id(26027) thread_id(26027) - (null) correlation_id(114) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(114) time_ns(43923346117301:43923346791409) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(115) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(115) time_ns(43923346826463:43923346848239) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(115) time_ns(43923346852975:43923347343055) device_id(0) queue_id(0) - hcCommandMarker correlation_id(116) time_ns(43923347347000:43923347353880) device_id(0) queue_id(0) - (null) correlation_id(116) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(116) time_ns(43923346861840:43923348270921) process_id(26027) thread_id(26027) - (null) correlation_id(117) time_ns(0:0) external_id(31) - hipFree correlation_id(117) time_ns(43923362918776:43923363013264) process_id(26027) thread_id(26027) - (null) correlation_id(118) time_ns(0:0) external_id(31) - hipFree correlation_id(118) time_ns(43923363018807:43923363056010) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(119) time_ns(43923382164288:43923382173905) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(120) time_ns(43923382177905:43923382180619) process_id(26027) thread_id(26027) - hipMalloc correlation_id(121) time_ns(43923384379713:43923384430553) process_id(26027) thread_id(26027) - hipMalloc correlation_id(122) time_ns(43923384447265:43923384476233) process_id(26027) thread_id(26027) - (null) correlation_id(123) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(123) time_ns(43923384480482:43923385117773) process_id(26027) thread_id(26027) - (null) correlation_id(124) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(124) time_ns(43923385148848:43923385188553) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(124) time_ns(43923385193190:43923385682470) device_id(0) queue_id(0) - hcCommandMarker correlation_id(125) time_ns(43923385685409:43923385691969) device_id(0) queue_id(0) - (null) correlation_id(125) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(125) time_ns(43923385193330:43923386599747) process_id(26027) thread_id(26027) - (null) correlation_id(126) time_ns(0:0) external_id(31) - hipFree correlation_id(126) time_ns(43923401224065:43923401322747) process_id(26027) thread_id(26027) - (null) correlation_id(127) time_ns(0:0) external_id(31) - hipFree correlation_id(127) time_ns(43923401328833:43923401356064) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(128) time_ns(43923420505471:43923420514646) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(129) time_ns(43923420518402:43923420520840) process_id(26027) thread_id(26027) - hipMalloc correlation_id(130) time_ns(43923422695255:43923422745429) process_id(26027) thread_id(26027) - hipMalloc correlation_id(131) time_ns(43923422749520:43923422787237) process_id(26027) thread_id(26027) - (null) correlation_id(132) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(132) time_ns(43923422791618:43923423435484) process_id(26027) thread_id(26027) - (null) correlation_id(133) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(133) time_ns(43923423466950:43923423508155) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(133) time_ns(43923423512949:43923423996309) device_id(0) queue_id(0) - hcCommandMarker correlation_id(134) time_ns(43923423999174:43923424005894) device_id(0) queue_id(0) - (null) correlation_id(134) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(134) time_ns(43923423525127:43923424991816) process_id(26027) thread_id(26027) - (null) correlation_id(135) time_ns(0:0) external_id(31) - hipFree correlation_id(135) time_ns(43923439636628:43923439721518) process_id(26027) thread_id(26027) - (null) correlation_id(136) time_ns(0:0) external_id(31) - hipFree correlation_id(136) time_ns(43923439737564:43923439767604) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(137) time_ns(43923458908892:43923458918725) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(138) time_ns(43923458922419:43923458924977) process_id(26027) thread_id(26027) - hipMalloc correlation_id(139) time_ns(43923461119944:43923461169258) process_id(26027) thread_id(26027) - hipMalloc correlation_id(140) time_ns(43923461186478:43923461214108) process_id(26027) thread_id(26027) - (null) correlation_id(141) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(141) time_ns(43923461218204:43923461856445) process_id(26027) thread_id(26027) - (null) correlation_id(142) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(142) time_ns(43923461887128:43923461928559) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(142) time_ns(43923461933371:43923462413371) device_id(0) queue_id(0) - hcCommandMarker correlation_id(143) time_ns(43923462416318:43923462422878) device_id(0) queue_id(0) - (null) correlation_id(143) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(143) time_ns(43923461944949:43923463384786) process_id(26027) thread_id(26027) - (null) correlation_id(144) time_ns(0:0) external_id(31) - hipFree correlation_id(144) time_ns(43923478031514:43923478101679) process_id(26027) thread_id(26027) - (null) correlation_id(145) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (67) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(183) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(183) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(184) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(184) on-exit pid(1956) tid(1956)> + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (66) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (65) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(194) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(194) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(195) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(195) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (64) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (63) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(205) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(205) on-exit pid(1956) tid(1956)> + +<__hipPopCallConfiguration id(171) correlation_id(206) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(206) on-exit pid(1956) tid(1956)> + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (62) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (61) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(216) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(216) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(217) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(217) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (60) ############################# - Activity records: - hipFree correlation_id(145) time_ns(43923478107118:43923478133836) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(146) time_ns(43923497787053:43923497797057) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(147) time_ns(43923497800893:43923497803502) process_id(26027) thread_id(26027) - hipMalloc correlation_id(148) time_ns(43923500074115:43923500125579) process_id(26027) thread_id(26027) - hipMalloc correlation_id(149) time_ns(43923500129967:43923500149866) process_id(26027) thread_id(26027) - (null) correlation_id(150) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(150) time_ns(43923500154821:43923500796762) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(151) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(151) time_ns(43923500821675:43923500843166) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(151) time_ns(43923500847739:43923501333819) device_id(0) queue_id(0) - hcCommandMarker correlation_id(152) time_ns(43923501336746:43923501343306) device_id(0) queue_id(0) - (null) correlation_id(152) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(152) time_ns(43923500856672:43923502262652) process_id(26027) thread_id(26027) - (null) correlation_id(153) time_ns(0:0) external_id(31) - hipFree correlation_id(153) time_ns(43923516890979:43923516974407) process_id(26027) thread_id(26027) - (null) correlation_id(154) time_ns(0:0) external_id(31) - hipFree correlation_id(154) time_ns(43923516980172:43923517007413) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(155) time_ns(43923536185924:43923536195427) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(156) time_ns(43923536199375:43923536202001) process_id(26027) thread_id(26027) - hipMalloc correlation_id(157) time_ns(43923538372414:43923538422093) process_id(26027) thread_id(26027) - hipMalloc correlation_id(158) time_ns(43923538426404:43923538465287) process_id(26027) thread_id(26027) - (null) correlation_id(159) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(159) time_ns(43923538469387:43923539112786) process_id(26027) thread_id(26027) - (null) correlation_id(160) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(160) time_ns(43923539143922:43923539184637) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(160) time_ns(43923539189018:43923539679258) device_id(0) queue_id(0) - hcCommandMarker correlation_id(161) time_ns(43923539682215:43923539688775) device_id(0) queue_id(0) - (null) correlation_id(161) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(161) time_ns(43923539189370:43923540652339) process_id(26027) thread_id(26027) - (null) correlation_id(162) time_ns(0:0) external_id(31) - hipFree correlation_id(162) time_ns(43923555281370:43923555351858) process_id(26027) thread_id(26027) - (null) correlation_id(163) time_ns(0:0) external_id(31) - hipFree correlation_id(163) time_ns(43923555357808:43923555384570) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(164) time_ns(43923574559865:43923574568423) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(165) time_ns(43923574571947:43923574574268) process_id(26027) thread_id(26027) - hipMalloc correlation_id(166) time_ns(43923576768554:43923576816971) process_id(26027) thread_id(26027) - hipMalloc correlation_id(167) time_ns(43923576834755:43923576853291) process_id(26027) thread_id(26027) - (null) correlation_id(168) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(168) time_ns(43923576857952:43923577531887) process_id(26027) thread_id(26027) - (null) correlation_id(169) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(169) time_ns(43923577562527:43923577601613) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(169) time_ns(43923577606603:43923578089483) device_id(0) queue_id(0) - hcCommandMarker correlation_id(170) time_ns(43923578092421:43923578099301) device_id(0) queue_id(0) - (null) correlation_id(170) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(170) time_ns(43923577606200:43923579133582) process_id(26027) thread_id(26027) - (null) correlation_id(171) time_ns(0:0) external_id(31) - hipFree correlation_id(171) time_ns(43923593783428:43923593854144) process_id(26027) thread_id(26027) - (null) correlation_id(172) time_ns(0:0) external_id(31) - hipFree correlation_id(172) time_ns(43923593859731:43923593886059) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(173) time_ns(43923614371074:43923614381008) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(174) time_ns(43923614384837:43923614387415) process_id(26027) thread_id(26027) - hipMalloc correlation_id(175) time_ns(43923616587729:43923616637841) process_id(26027) thread_id(26027) - hipMalloc correlation_id(176) time_ns(43923616653716:43923616682292) process_id(26027) thread_id(26027) - (null) correlation_id(177) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(177) time_ns(43923616686661:43923617367358) process_id(26027) thread_id(26027) - (null) correlation_id(178) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(178) time_ns(43923617398197:43923617439007) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(178) time_ns(43923617444410:43923619286333) device_id(0) queue_id(0) - hcCommandMarker correlation_id(179) time_ns(43923619289400:43923619321400) device_id(0) queue_id(0) - (null) correlation_id(179) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(179) time_ns(43923617443875:43923620346684) process_id(26027) thread_id(26027) - (null) correlation_id(180) time_ns(0:0) external_id(31) - hipFree correlation_id(180) time_ns(43923634950544:43923635035155) process_id(26027) thread_id(26027) - (null) correlation_id(181) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (59) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(227) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(227) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(228) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(228) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (58) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (57) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(238) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(238) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(239) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(239) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + Activity records: + CopyHostToDevice correlation_id(6) time_ns(3802693158326260:3802693160391985) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(9) time_ns(3802693161048371:3802693162256582) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(10) time_ns(3802693161030340:3802693164301504) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(17) time_ns(3802693189030657:3802693190819790) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(20) time_ns(3802693190942495:3802693192138260) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(21) time_ns(3802693190919751:3802693193555520) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(28) time_ns(3802693217699329:3802693219481423) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(31) time_ns(3802693219594551:3802693220782909) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(32) time_ns(3802693219571603:3802693222333964) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(39) time_ns(3802693246475403:3802693248318136) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(42) time_ns(3802693248437502:3802693249626747) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(43) time_ns(3802693248413937:3802693250928706) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(50) time_ns(3802693275061624:3802693276990348) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(53) time_ns(3802693277116931:3802693278306474) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(54) time_ns(3802693277094469:3802693279611427) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(61) time_ns(3802693303647725:3802693305425959) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(64) time_ns(3802693305534665:3802693306738726) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(65) time_ns(3802693305512139:3802693308041418) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(72) time_ns(3802693332077196:3802693333992130) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(75) time_ns(3802693334125246:3802693335327381) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(76) time_ns(3802693334102781:3802693336622820) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(83) time_ns(3802693360847169:3802693362459511) device_id(0) queue_id(0) bytes(0x0) + + KernelExecution correlation_id(86) time_ns(3802693362549802:3802693363752381) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(87) time_ns(3802693362527182:3802693365060671) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(94) time_ns(3802693389007728:3802693390615380) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(97) time_ns(3802693390708976:3802693391898518) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(98) time_ns(3802693390686550:3802693393205669) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(105) time_ns(3802693416920965:3802693418529277) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(108) time_ns(3802693418631014:3802693419820704) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(109) time_ns(3802693418608207:3802693421128926) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(116) time_ns(3802693444838931:3802693446448383) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(119) time_ns(3802693446543172:3802693447741899) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(120) time_ns(3802693446520144:3802693449049392) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(127) time_ns(3802693472737827:3802693474345459) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(130) time_ns(3802693474448826:3802693475642813) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(131) time_ns(3802693474426350:3802693476951189) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(138) time_ns(3802693504561853:3802693506162115) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(141) time_ns(3802693506255741:3802693507466469) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(142) time_ns(3802693506232416:3802693508774235) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(149) time_ns(3802693536380419:3802693537984301) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(152) time_ns(3802693538080636:3802693539287660) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(153) time_ns(3802693538058642:3802693540595131) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(160) time_ns(3802693568325455:3802693569928777) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(163) time_ns(3802693570018375:3802693571222732) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(164) time_ns(3802693569996558:3802693572553427) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(171) time_ns(3802693600749546:3802693602534749) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(174) time_ns(3802693602648735:3802693603850277) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(175) time_ns(3802693602627560:3802693605319020) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(182) time_ns(3802693633454628:3802693635319622) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(185) time_ns(3802693635444369:3802693636652430) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(186) time_ns(3802693635419783:3802693637956321) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(193) time_ns(3802693670536072:3802693672352026) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(196) time_ns(3802693672479060:3802693673674232) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(197) time_ns(3802693672456057:3802693674965065) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(204) time_ns(3802693702641510:3802693704280223) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(207) time_ns(3802693704403420:3802693705594443) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(208) time_ns(3802693704379473:3802693706896192) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(215) time_ns(3802693731697045:3802693733490048) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(218) time_ns(3802693733606909:3802693734806525) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(219) time_ns(3802693733583869:3802693736105068) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(226) time_ns(3802693760759770:3802693762538223) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(229) time_ns(3802693762654383:3802693763857554) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(230) time_ns(3802693762631754:3802693765358974) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(237) time_ns(3802693789692155:3802693791479928) device_id(0) queue_id(0) bytes(0x0) PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (56) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (55) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(249) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(249) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(250) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(250) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (54) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (53) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(260) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(260) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(261) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(261) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (52) ############################# - Activity records: - hipFree correlation_id(181) time_ns(43923635040796:43923635067423) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(182) time_ns(43923655974843:43923655985986) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(183) time_ns(43923655989930:43923655993147) process_id(26027) thread_id(26027) - hipMalloc correlation_id(184) time_ns(43923658246101:43923658298790) process_id(26027) thread_id(26027) - hipMalloc correlation_id(185) time_ns(43923658303339:43923658323309) process_id(26027) thread_id(26027) - (null) correlation_id(186) time_ns(0:0) external_id(32) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - hipMemcpy correlation_id(186) time_ns(43923658328717:43923659005376) process_id(26027) thread_id(26027) - (null) correlation_id(187) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(187) time_ns(43923659029806:43923659052256) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(187) time_ns(43923659063291:43923660906334) device_id(0) queue_id(0) - hcCommandMarker correlation_id(188) time_ns(43923660909068:43923660940908) device_id(0) queue_id(0) - (null) correlation_id(188) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(188) time_ns(43923659068015:43923661955500) process_id(26027) thread_id(26027) - (null) correlation_id(189) time_ns(0:0) external_id(31) - hipFree correlation_id(189) time_ns(43923676770003:43923676860623) process_id(26027) thread_id(26027) - (null) correlation_id(190) time_ns(0:0) external_id(31) - hipFree correlation_id(190) time_ns(43923676876968:43923676895497) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(191) time_ns(43923697660900:43923697669089) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(192) time_ns(43923697682986:43923697685330) process_id(26027) thread_id(26027) - hipMalloc correlation_id(193) time_ns(43923699891927:43923699953112) process_id(26027) thread_id(26027) - hipMalloc correlation_id(194) time_ns(43923699966662:43923699996846) process_id(26027) thread_id(26027) - (null) correlation_id(195) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(195) time_ns(43923700007081:43923700671536) process_id(26027) thread_id(26027) - (null) correlation_id(196) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(196) time_ns(43923700705997:43923700746728) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(196) time_ns(43923700748397:43923702591920) device_id(0) queue_id(0) - hcCommandMarker correlation_id(197) time_ns(43923702594931:43923702627091) device_id(0) queue_id(0) - (null) correlation_id(197) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(197) time_ns(43923700758715:43923703651888) process_id(26027) thread_id(26027) - (null) correlation_id(198) time_ns(0:0) external_id(31) - hipFree correlation_id(198) time_ns(43923718320201:43923718404644) process_id(26027) thread_id(26027) - (null) correlation_id(199) time_ns(0:0) external_id(31) - hipFree correlation_id(199) time_ns(43923718410462:43923718437157) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(200) time_ns(43923739065926:43923739076200) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(201) time_ns(43923739090270:43923739092867) process_id(26027) thread_id(26027) - hipMalloc correlation_id(202) time_ns(43923741261081:43923741311830) process_id(26027) thread_id(26027) - hipMalloc correlation_id(203) time_ns(43923741316146:43923741354541) process_id(26027) thread_id(26027) - (null) correlation_id(204) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(204) time_ns(43923741358648:43923742048288) process_id(26027) thread_id(26027) - (null) correlation_id(205) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(205) time_ns(43923742079823:43923742119846) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(205) time_ns(43923742125361:43923743966164) device_id(0) queue_id(0) - hcCommandMarker correlation_id(206) time_ns(43923743969118:43923744001278) device_id(0) queue_id(0) - (null) correlation_id(206) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(206) time_ns(43923742124688:43923745002387) process_id(26027) thread_id(26027) - (null) correlation_id(207) time_ns(0:0) external_id(31) - hipFree correlation_id(207) time_ns(43923759598842:43923759684702) process_id(26027) thread_id(26027) - (null) correlation_id(208) time_ns(0:0) external_id(31) - hipFree correlation_id(208) time_ns(43923759700758:43923759730435) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(209) time_ns(43923780293722:43923780303409) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(210) time_ns(43923780307271:43923780309737) process_id(26027) thread_id(26027) - hipMalloc correlation_id(211) time_ns(43923782500661:43923782550435) process_id(26027) thread_id(26027) - hipMalloc correlation_id(212) time_ns(43923782566769:43923782595397) process_id(26027) thread_id(26027) - (null) correlation_id(213) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(213) time_ns(43923782599606:43923783256624) process_id(26027) thread_id(26027) - (null) correlation_id(214) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(214) time_ns(43923783287682:43923783328269) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(214) time_ns(43923783334160:43923785178163) device_id(0) queue_id(0) - hcCommandMarker correlation_id(215) time_ns(43923785181076:43923785213076) device_id(0) queue_id(0) - (null) correlation_id(215) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(215) time_ns(43923783333005:43923786216665) process_id(26027) thread_id(26027) - (null) correlation_id(216) time_ns(0:0) external_id(31) - hipFree correlation_id(216) time_ns(43923800877367:43923800968284) process_id(26027) thread_id(26027) - (null) correlation_id(217) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (51) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(271) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(271) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(272) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(272) on-exit pid(1956) tid(1956)> + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (50) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (49) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(282) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(282) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(283) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(283) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (48) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (47) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(293) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(293) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(294) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(294) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (46) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (45) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(304) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(304) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(305) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(305) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (44) ############################# - Activity records: - hipFree correlation_id(217) time_ns(43923800974193:43923801002074) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(218) time_ns(43923821923676:43923821933811) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(219) time_ns(43923821937522:43923821940063) process_id(26027) thread_id(26027) - hipMalloc correlation_id(220) time_ns(43923824213169:43923824264743) process_id(26027) thread_id(26027) - hipMalloc correlation_id(221) time_ns(43923824269322:43923824289224) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(222) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(222) time_ns(43923824294155:43923824954754) process_id(26027) thread_id(26027) - (null) correlation_id(223) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(223) time_ns(43923824979430:43923825001473) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(223) time_ns(43923825007133:43923826844896) device_id(0) queue_id(0) - hcCommandMarker correlation_id(224) time_ns(43923826847709:43923826879549) device_id(0) queue_id(0) - (null) correlation_id(224) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(224) time_ns(43923825015022:43923827883491) process_id(26027) thread_id(26027) - (null) correlation_id(225) time_ns(0:0) external_id(31) - hipFree correlation_id(225) time_ns(43923842537911:43923842620877) process_id(26027) thread_id(26027) - (null) correlation_id(226) time_ns(0:0) external_id(31) - hipFree correlation_id(226) time_ns(43923842637318:43923842666493) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(227) time_ns(43923861766130:43923861776321) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(228) time_ns(43923861780019:43923861782446) process_id(26027) thread_id(26027) - hipMalloc correlation_id(229) time_ns(43923863972094:43923864039954) process_id(26027) thread_id(26027) - hipMalloc correlation_id(230) time_ns(43923864057471:43923864089047) process_id(26027) thread_id(26027) - (null) correlation_id(231) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(231) time_ns(43923864094177:43923864740876) process_id(26027) thread_id(26027) - (null) correlation_id(232) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(232) time_ns(43923864771362:43923864812507) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(232) time_ns(43923864817106:43923865301106) device_id(0) queue_id(0) - hcCommandMarker correlation_id(233) time_ns(43923865304184:43923865310744) device_id(0) queue_id(0) - (null) correlation_id(233) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(233) time_ns(43923864817292:43923866255059) process_id(26027) thread_id(26027) - (null) correlation_id(234) time_ns(0:0) external_id(31) - hipFree correlation_id(234) time_ns(43923880888738:43923880989206) process_id(26027) thread_id(26027) - (null) correlation_id(235) time_ns(0:0) external_id(31) - hipFree correlation_id(235) time_ns(43923881003862:43923881030622) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(236) time_ns(43923900186141:43923900195829) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(237) time_ns(43923900199802:43923900202255) process_id(26027) thread_id(26027) - hipMalloc correlation_id(238) time_ns(43923902393152:43923902454943) process_id(26027) thread_id(26027) - hipMalloc correlation_id(239) time_ns(43923902459292:43923902487918) process_id(26027) thread_id(26027) - (null) correlation_id(240) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(240) time_ns(43923902492113:43923903128658) process_id(26027) thread_id(26027) - (null) correlation_id(241) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(241) time_ns(43923903159454:43923903200555) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(241) time_ns(43923903205033:43923903690473) device_id(0) queue_id(0) - hcCommandMarker correlation_id(242) time_ns(43923903693465:43923903700025) device_id(0) queue_id(0) - (null) correlation_id(242) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(242) time_ns(43923903205188:43923904663132) process_id(26027) thread_id(26027) - (null) correlation_id(243) time_ns(0:0) external_id(31) - hipFree correlation_id(243) time_ns(43923919295931:43923919365533) process_id(26027) thread_id(26027) - (null) correlation_id(244) time_ns(0:0) external_id(31) - hipFree correlation_id(244) time_ns(43923919370940:43923919397404) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(245) time_ns(43923938489404:43923938499380) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(246) time_ns(43923938503077:43923938505438) process_id(26027) thread_id(26027) - hipMalloc correlation_id(247) time_ns(43923940680966:43923940730786) process_id(26027) thread_id(26027) - hipMalloc correlation_id(248) time_ns(43923940735372:43923940764971) process_id(26027) thread_id(26027) - (null) correlation_id(249) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(249) time_ns(43923940769209:43923941386237) process_id(26027) thread_id(26027) - (null) correlation_id(250) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(250) time_ns(43923941417772:43923941458957) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(250) time_ns(43923941463395:43923941944675) device_id(0) queue_id(0) - hcCommandMarker correlation_id(251) time_ns(43923941947651:43923941954211) device_id(0) queue_id(0) - (null) correlation_id(251) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(251) time_ns(43923941463630:43923942895196) process_id(26027) thread_id(26027) - (null) correlation_id(252) time_ns(0:0) external_id(31) - hipFree correlation_id(252) time_ns(43923957484127:43923957580001) process_id(26027) thread_id(26027) - (null) correlation_id(253) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (43) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(315) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(315) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(316) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(316) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (42) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (41) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(326) on-enter pid(1956) tid(1956)> + +<__hipPushCallConfiguration id(46) correlation_id(326) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(327) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(327) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (40) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (39) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(337) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(337) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(338) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(338) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (38) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (37) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(348) on-enter pid(1956) tid(1956)> + +<__hipPushCallConfiguration id(46) correlation_id(348) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(349) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(349) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (36) ############################# - Activity records: - hipFree correlation_id(253) time_ns(43923957585741:43923957612870) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(254) time_ns(43923977085513:43923977095289) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(255) time_ns(43923977109029:43923977111674) process_id(26027) thread_id(26027) - hipMalloc correlation_id(256) time_ns(43923979317852:43923979378871) process_id(26027) thread_id(26027) - hipMalloc correlation_id(257) time_ns(43923979392472:43923979422257) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(258) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(258) time_ns(43923979426410:43923980064921) process_id(26027) thread_id(26027) - (null) correlation_id(259) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(259) time_ns(43923980096048:43923980137087) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(259) time_ns(43923980141801:43923980625481) device_id(0) queue_id(0) - hcCommandMarker correlation_id(260) time_ns(43923980628295:43923980635015) device_id(0) queue_id(0) - (null) correlation_id(260) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(260) time_ns(43923980141914:43923981601157) process_id(26027) thread_id(26027) - (null) correlation_id(261) time_ns(0:0) external_id(31) - hipFree correlation_id(261) time_ns(43923996238184:43923996331957) process_id(26027) thread_id(26027) - (null) correlation_id(262) time_ns(0:0) external_id(31) - hipFree correlation_id(262) time_ns(43923996337229:43923996353339) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(263) time_ns(43924015379706:43924015389299) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(264) time_ns(43924015392814:43924015395121) process_id(26027) thread_id(26027) - hipMalloc correlation_id(265) time_ns(43924017571212:43924017619824) process_id(26027) thread_id(26027) - hipMalloc correlation_id(266) time_ns(43924017623918:43924017651953) process_id(26027) thread_id(26027) - (null) correlation_id(267) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(267) time_ns(43924017656734:43924018300772) process_id(26027) thread_id(26027) - (null) correlation_id(268) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(268) time_ns(43924018332018:43924018372394) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(268) time_ns(43924018377238:43924018857878) device_id(0) queue_id(0) - hcCommandMarker correlation_id(269) time_ns(43924018860661:43924018867381) device_id(0) queue_id(0) - (null) correlation_id(269) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(269) time_ns(43924018376979:43924019807931) process_id(26027) thread_id(26027) - (null) correlation_id(270) time_ns(0:0) external_id(31) - hipFree correlation_id(270) time_ns(43924034370733:43924034462002) process_id(26027) thread_id(26027) - (null) correlation_id(271) time_ns(0:0) external_id(31) - hipFree correlation_id(271) time_ns(43924034467948:43924034967481) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(272) time_ns(43924053901958:43924053911808) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(273) time_ns(43924053915503:43924053917837) process_id(26027) thread_id(26027) - hipMalloc correlation_id(274) time_ns(43924056115847:43924056166685) process_id(26027) thread_id(26027) - hipMalloc correlation_id(275) time_ns(43924056183398:43924056212459) process_id(26027) thread_id(26027) - (null) correlation_id(276) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(276) time_ns(43924056216824:43924056854100) process_id(26027) thread_id(26027) - (null) correlation_id(277) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(277) time_ns(43924056885223:43924056926049) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(277) time_ns(43924056930476:43924057416876) device_id(0) queue_id(0) - hcCommandMarker correlation_id(278) time_ns(43924057419895:43924057426455) device_id(0) queue_id(0) - (null) correlation_id(278) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(278) time_ns(43924056930872:43924058371562) process_id(26027) thread_id(26027) - (null) correlation_id(279) time_ns(0:0) external_id(31) - hipFree correlation_id(279) time_ns(43924073259129:43924073333323) process_id(26027) thread_id(26027) - (null) correlation_id(280) time_ns(0:0) external_id(31) - hipFree correlation_id(280) time_ns(43924073339755:43924073367492) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(281) time_ns(43924092286009:43924092295684) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(282) time_ns(43924092299467:43924092301851) process_id(26027) thread_id(26027) - hipMalloc correlation_id(283) time_ns(43924094476650:43924094526050) process_id(26027) thread_id(26027) - hipMalloc correlation_id(284) time_ns(43924094530264:43924094560138) process_id(26027) thread_id(26027) - (null) correlation_id(285) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(285) time_ns(43924094564860:43924095209172) process_id(26027) thread_id(26027) - (null) correlation_id(286) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(286) time_ns(43924095240065:43924095281039) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(286) time_ns(43924095285353:43924095767273) device_id(0) queue_id(0) - hcCommandMarker correlation_id(287) time_ns(43924095770342:43924095777222) device_id(0) queue_id(0) - (null) correlation_id(287) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(287) time_ns(43924095285700:43924096717062) process_id(26027) thread_id(26027) - (null) correlation_id(288) time_ns(0:0) external_id(31) - hipFree correlation_id(288) time_ns(43924111647330:43924111719564) process_id(26027) thread_id(26027) - (null) correlation_id(289) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (35) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(359) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(359) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(360) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(360) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (34) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (33) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(370) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(370) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(371) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(371) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (32) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (31) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(381) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(381) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(382) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(382) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + + + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (30) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (29) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(392) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(392) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(393) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(393) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (28) ############################# - Activity records: - hipFree correlation_id(289) time_ns(43924111725499:43924111752081) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(290) time_ns(43924133010932:43924133020346) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(291) time_ns(43924133024098:43924133026658) process_id(26027) thread_id(26027) - hipMalloc correlation_id(292) time_ns(43924135252772:43924135304037) process_id(26027) thread_id(26027) - hipMalloc correlation_id(293) time_ns(43924135308510:43924135327613) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(294) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(294) time_ns(43924135332515:43924135972906) process_id(26027) thread_id(26027) - (null) correlation_id(295) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(295) time_ns(43924135997252:43924136035107) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(295) time_ns(43924136036842:43924136524682) device_id(0) queue_id(0) - hcCommandMarker correlation_id(296) time_ns(43924136527613:43924136534173) device_id(0) queue_id(0) - (null) correlation_id(296) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(296) time_ns(43924136039997:43924137456346) process_id(26027) thread_id(26027) - (null) correlation_id(297) time_ns(0:0) external_id(31) - hipFree correlation_id(297) time_ns(43924151908771:43924151983651) process_id(26027) thread_id(26027) - (null) correlation_id(298) time_ns(0:0) external_id(31) - hipFree correlation_id(298) time_ns(43924151989360:43924152022262) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(299) time_ns(43924171088698:43924171097139) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(300) time_ns(43924171100734:43924171103152) process_id(26027) thread_id(26027) - hipMalloc correlation_id(301) time_ns(43924173304593:43924173354672) process_id(26027) thread_id(26027) - hipMalloc correlation_id(302) time_ns(43924173371642:43924173400059) process_id(26027) thread_id(26027) - (null) correlation_id(303) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(303) time_ns(43924173404405:43924174044683) process_id(26027) thread_id(26027) - (null) correlation_id(304) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(304) time_ns(43924174076253:43924174116723) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(304) time_ns(43924174121204:43924174603444) device_id(0) queue_id(0) - hcCommandMarker correlation_id(305) time_ns(43924174606317:43924174612877) device_id(0) queue_id(0) - (null) correlation_id(305) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(305) time_ns(43924174133069:43924175557594) process_id(26027) thread_id(26027) - (null) correlation_id(306) time_ns(0:0) external_id(31) - hipFree correlation_id(306) time_ns(43924190219735:43924190303515) process_id(26027) thread_id(26027) - (null) correlation_id(307) time_ns(0:0) external_id(31) - hipFree correlation_id(307) time_ns(43924190319242:43924190347098) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(308) time_ns(43924209447139:43924209456906) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(309) time_ns(43924209460535:43924209463004) process_id(26027) thread_id(26027) - hipMalloc correlation_id(310) time_ns(43924211678128:43924211727787) process_id(26027) thread_id(26027) - hipMalloc correlation_id(311) time_ns(43924211745058:43924211773876) process_id(26027) thread_id(26027) - (null) correlation_id(312) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(312) time_ns(43924211778084:43924212443036) process_id(26027) thread_id(26027) - (null) correlation_id(313) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(313) time_ns(43924212474572:43924212518890) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(313) time_ns(43924212523859:43924214375062) device_id(0) queue_id(0) - hcCommandMarker correlation_id(314) time_ns(43924214378145:43924214409665) device_id(0) queue_id(0) - (null) correlation_id(314) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(314) time_ns(43924212537767:43924215426654) process_id(26027) thread_id(26027) - (null) correlation_id(315) time_ns(0:0) external_id(31) - hipFree correlation_id(315) time_ns(43924229894349:43924229979101) process_id(26027) thread_id(26027) - (null) correlation_id(316) time_ns(0:0) external_id(31) - hipFree correlation_id(316) time_ns(43924229995319:43924230026120) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(317) time_ns(43924250535564:43924250545872) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(318) time_ns(43924250549624:43924250552072) process_id(26027) thread_id(26027) - hipMalloc correlation_id(319) time_ns(43924252752966:43924252802481) process_id(26027) thread_id(26027) - hipMalloc correlation_id(320) time_ns(43924252819847:43924252848213) process_id(26027) thread_id(26027) - (null) correlation_id(321) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(321) time_ns(43924252852306:43924253543113) process_id(26027) thread_id(26027) - (null) correlation_id(322) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(322) time_ns(43924253574635:43924253615072) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(322) time_ns(43924253620622:43924255453105) device_id(0) queue_id(0) - hcCommandMarker correlation_id(323) time_ns(43924255456151:43924255487831) device_id(0) queue_id(0) - (null) correlation_id(323) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(323) time_ns(43924253632295:43924256514921) process_id(26027) thread_id(26027) - (null) correlation_id(324) time_ns(0:0) external_id(31) - hipFree correlation_id(324) time_ns(43924271073847:43924271169352) process_id(26027) thread_id(26027) - (null) correlation_id(325) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (27) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(403) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(403) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(404) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(404) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (26) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (25) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(414) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(414) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(415) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(415) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (24) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (23) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(425) on-enter pid(1956) tid(1956)> + +<__hipPushCallConfiguration id(46) correlation_id(425) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(426) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(426) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (22) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (21) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(436) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(436) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(437) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(437) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (20) ############################# - Activity records: - hipFree correlation_id(325) time_ns(43924271175070:43924271192040) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(326) time_ns(43924291762988:43924291771076) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(327) time_ns(43924291774642:43924291777092) process_id(26027) thread_id(26027) - hipMalloc correlation_id(328) time_ns(43924294026024:43924294085514) process_id(26027) thread_id(26027) - hipMalloc correlation_id(329) time_ns(43924294090994:43924294129855) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(330) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(330) time_ns(43924294134205:43924294800341) process_id(26027) thread_id(26027) - (null) correlation_id(331) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(331) time_ns(43924294835233:43924294876561) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(331) time_ns(43924294882266:43924296713789) device_id(0) queue_id(0) - hcCommandMarker correlation_id(332) time_ns(43924296716869:43924296748069) device_id(0) queue_id(0) - (null) correlation_id(332) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(332) time_ns(43924294888013:43924297778419) process_id(26027) thread_id(26027) - (null) correlation_id(333) time_ns(0:0) external_id(31) - hipFree correlation_id(333) time_ns(43924312395860:43924312492979) process_id(26027) thread_id(26027) - (null) correlation_id(334) time_ns(0:0) external_id(31) - hipFree correlation_id(334) time_ns(43924312507649:43924312535945) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(335) time_ns(43924333052377:43924333062076) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(336) time_ns(43924333065817:43924333068268) process_id(26027) thread_id(26027) - hipMalloc correlation_id(337) time_ns(43924335264198:43924335313660) process_id(26027) thread_id(26027) - hipMalloc correlation_id(338) time_ns(43924335329255:43924335357001) process_id(26027) thread_id(26027) - (null) correlation_id(339) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(339) time_ns(43924335361097:43924336036253) process_id(26027) thread_id(26027) - (null) correlation_id(340) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(340) time_ns(43924336051007:43924336094552) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(340) time_ns(43924336100184:43924337940187) device_id(0) queue_id(0) - hcCommandMarker correlation_id(341) time_ns(43924337943034:43924337974394) device_id(0) queue_id(0) - (null) correlation_id(341) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(341) time_ns(43924336099635:43924338934658) process_id(26027) thread_id(26027) - (null) correlation_id(342) time_ns(0:0) external_id(31) - hipFree correlation_id(342) time_ns(43924353465028:43924353550492) process_id(26027) thread_id(26027) - (null) correlation_id(343) time_ns(0:0) external_id(31) - hipFree correlation_id(343) time_ns(43924353566871:43924353597370) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(344) time_ns(43924374057647:43924374067442) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(345) time_ns(43924374071233:43924374073570) process_id(26027) thread_id(26027) - hipMalloc correlation_id(346) time_ns(43924376274104:43924376324074) process_id(26027) thread_id(26027) - hipMalloc correlation_id(347) time_ns(43924376341080:43924376369346) process_id(26027) thread_id(26027) - (null) correlation_id(348) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(348) time_ns(43924376373655:43924377031921) process_id(26027) thread_id(26027) - (null) correlation_id(349) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(349) time_ns(43924377046388:43924377090396) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(349) time_ns(43924377095818:43924378930381) device_id(0) queue_id(0) - hcCommandMarker correlation_id(350) time_ns(43924378933281:43924378964641) device_id(0) queue_id(0) - (null) correlation_id(350) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(350) time_ns(43924377095637:43924379989699) process_id(26027) thread_id(26027) - (null) correlation_id(351) time_ns(0:0) external_id(31) - hipFree correlation_id(351) time_ns(43924394485102:43924394572492) process_id(26027) thread_id(26027) - (null) correlation_id(352) time_ns(0:0) external_id(31) - hipFree correlation_id(352) time_ns(43924394588538:43924394617306) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(353) time_ns(43924415129763:43924415138209) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(354) time_ns(43924415141941:43924415144362) process_id(26027) thread_id(26027) - hipMalloc correlation_id(355) time_ns(43924417363809:43924417413267) process_id(26027) thread_id(26027) - hipMalloc correlation_id(356) time_ns(43924417430049:43924417458479) process_id(26027) thread_id(26027) - (null) correlation_id(357) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(357) time_ns(43924417462767:43924418136752) process_id(26027) thread_id(26027) - (null) correlation_id(358) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(358) time_ns(43924418151104:43924418195069) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(358) time_ns(43924418200313:43924420038236) device_id(0) queue_id(0) - hcCommandMarker correlation_id(359) time_ns(43924420044513:43924420076353) device_id(0) queue_id(0) - (null) correlation_id(359) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(359) time_ns(43924418200328:43924421028788) process_id(26027) thread_id(26027) - (null) correlation_id(360) time_ns(0:0) external_id(31) - hipFree correlation_id(360) time_ns(43924435641433:43924435737289) process_id(26027) thread_id(26027) - (null) correlation_id(361) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (19) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(447) on-enter pid(1956) tid(1956)> + +<__hipPushCallConfiguration id(46) correlation_id(447) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(448) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(448) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (18) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (17) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> + +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(458) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(458) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(459) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(459) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (16) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (15) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(469) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(469) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(470) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(470) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + Activity records: + KernelExecution correlation_id(240) time_ns(3802693791610665:3802693792805392) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(241) time_ns(3802693791587589:3802693794378239) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(248) time_ns(3802693818754050:3802693820496293) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(251) time_ns(3802693820617038:3802693821813839) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(252) time_ns(3802693820594454:3802693823374534) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(259) time_ns(3802693847965976:3802693849762919) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(262) time_ns(3802693849884106:3802693851089501) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(263) time_ns(3802693849863300:3802693852666011) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(270) time_ns(3802693888341765:3802693890100368) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(273) time_ns(3802693890246312:3802693891433483) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(274) time_ns(3802693890225969:3802693893028570) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(281) time_ns(3802693917553302:3802693919266464) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(284) time_ns(3802693919380042:3802693920599659) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(285) time_ns(3802693919348455:3802693921967184) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(292) time_ns(3802693946464325:3802693948150588) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(295) time_ns(3802693948254281:3802693949464713) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(296) time_ns(3802693948233218:3802693950837018) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(303) time_ns(3802693974281311:3802693975902943) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(306) time_ns(3802693976005641:3802693977200368) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(307) time_ns(3802693975984964:3802693978551343) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(314) time_ns(3802693999546128:3802694001206821) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(317) time_ns(3802694001314472:3802694002520755) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(318) time_ns(3802694001291671:3802694003865120) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(325) time_ns(3802694024927036:3802694026589689) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(328) time_ns(3802694026722430:3802694027926491) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(329) time_ns(3802694026699400:3802694029288579) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(336) time_ns(3802694049782200:3802694051450473) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(339) time_ns(3802694051556271:3802694052752925) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(340) time_ns(3802694051533683:3802694054103553) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(347) time_ns(3802694074632374:3802694076275167) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(350) time_ns(3802694076406757:3802694077602521) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(351) time_ns(3802694076384177:3802694078952507) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(358) time_ns(3802694099907052:3802694101586164) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(361) time_ns(3802694101693995:3802694102892574) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(362) time_ns(3802694101670945:3802694104216184) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(369) time_ns(3802694124672565:3802694126331037) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(372) time_ns(3802694126459942:3802694127663262) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(373) time_ns(3802694126436278:3802694129010837) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(380) time_ns(3802694158521436:3802694160162478) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(383) time_ns(3802694160286444:3802694161475393) device_id(0) queue_id(0) + + CopyDeviceToHost correlation_id(384) time_ns(3802694160263979:3802694162823037) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(391) time_ns(3802694183389400:3802694185065222) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(394) time_ns(3802694185180154:3802694186376807) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(395) time_ns(3802694185157783:3802694187726042) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(402) time_ns(3802694208749508:3802694210426110) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(405) time_ns(3802694210539909:3802694211730191) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(406) time_ns(3802694210517841:3802694213081459) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(413) time_ns(3802694233937754:3802694235596566) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(416) time_ns(3802694235703382:3802694236893665) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(417) time_ns(3802694235680717:3802694238243216) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(424) time_ns(3802694258730508:3802694260388830) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(427) time_ns(3802694260519941:3802694261726669) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(428) time_ns(3802694260495751:3802694263076450) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(435) time_ns(3802694283586372:3802694285264574) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(438) time_ns(3802694285378010:3802694286572588) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(439) time_ns(3802694285355875:3802694287922574) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(446) time_ns(3802694308835309:3802694310508791) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(449) time_ns(3802694310637184:3802694311832948) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(450) time_ns(3802694310614162:3802694313192141) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(457) time_ns(3802694333660292:3802694335333805) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(460) time_ns(3802694335442121:3802694336637737) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(461) time_ns(3802694335419335:3802694337990065) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(468) time_ns(3802694358486506:3802694360142399) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(471) time_ns(3802694360274612:3802694361475413) device_id(0) queue_id(0) PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (14) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (13) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(480) on-enter pid(1956) tid(1956)> + +<__hipPushCallConfiguration id(46) correlation_id(480) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(481) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(481) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (12) ############################# - Activity records: - hipFree correlation_id(361) time_ns(43924435753844:43924435782472) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(362) time_ns(43924456417081:43924456426453) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(363) time_ns(43924456430167:43924456432757) process_id(26027) thread_id(26027) - hipMalloc correlation_id(364) time_ns(43924458612031:43924458674256) process_id(26027) thread_id(26027) - hipMalloc correlation_id(365) time_ns(43924458687741:43924458718593) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(366) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(366) time_ns(43924458724143:43924459369768) process_id(26027) thread_id(26027) - (null) correlation_id(367) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(367) time_ns(43924459394827:43924459441024) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(367) time_ns(43924459445624:43924459936504) device_id(0) queue_id(0) - hcCommandMarker correlation_id(368) time_ns(43924459939526:43924459945926) device_id(0) queue_id(0) - (null) correlation_id(368) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(368) time_ns(43924459456241:43924460891352) process_id(26027) thread_id(26027) - (null) correlation_id(369) time_ns(0:0) external_id(31) - hipFree correlation_id(369) time_ns(43924475335127:43924475426517) process_id(26027) thread_id(26027) - (null) correlation_id(370) time_ns(0:0) external_id(31) - hipFree correlation_id(370) time_ns(43924475432213:43924475458809) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(371) time_ns(43924494473089:43924494483454) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(372) time_ns(43924494487147:43924494489484) process_id(26027) thread_id(26027) - hipMalloc correlation_id(373) time_ns(43924496708487:43924496758343) process_id(26027) thread_id(26027) - hipMalloc correlation_id(374) time_ns(43924496775079:43924496803210) process_id(26027) thread_id(26027) - (null) correlation_id(375) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(375) time_ns(43924496807329:43924497445337) process_id(26027) thread_id(26027) - (null) correlation_id(376) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(376) time_ns(43924497459798:43924497503949) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(376) time_ns(43924497508311:43924497993431) device_id(0) queue_id(0) - hcCommandMarker correlation_id(377) time_ns(43924497996249:43924498002969) device_id(0) queue_id(0) - (null) correlation_id(377) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(377) time_ns(43924497509090:43924498986358) process_id(26027) thread_id(26027) - (null) correlation_id(378) time_ns(0:0) external_id(31) - hipFree correlation_id(378) time_ns(43924513614351:43924513708581) process_id(26027) thread_id(26027) - (null) correlation_id(379) time_ns(0:0) external_id(31) - hipFree correlation_id(379) time_ns(43924513723691:43924513751429) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(380) time_ns(43924532893579:43924532903634) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(381) time_ns(43924532907691:43924532910260) process_id(26027) thread_id(26027) - hipMalloc correlation_id(382) time_ns(43924535105549:43924535155671) process_id(26027) thread_id(26027) - hipMalloc correlation_id(383) time_ns(43924535174732:43924535212783) process_id(26027) thread_id(26027) - (null) correlation_id(384) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(384) time_ns(43924535216917:43924535856633) process_id(26027) thread_id(26027) - (null) correlation_id(385) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(385) time_ns(43924535871470:43924535916117) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(385) time_ns(43924535920351:43924536404511) device_id(0) queue_id(0) - hcCommandMarker correlation_id(386) time_ns(43924536407570:43924536413970) device_id(0) queue_id(0) - (null) correlation_id(386) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(386) time_ns(43924535930585:43924537355425) process_id(26027) thread_id(26027) - (null) correlation_id(387) time_ns(0:0) external_id(31) - hipFree correlation_id(387) time_ns(43924551986515:43924552084664) process_id(26027) thread_id(26027) - (null) correlation_id(388) time_ns(0:0) external_id(31) - hipFree correlation_id(388) time_ns(43924552099468:43924552128239) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(389) time_ns(43924571253670:43924571263558) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(390) time_ns(43924571267289:43924571269725) process_id(26027) thread_id(26027) - hipMalloc correlation_id(391) time_ns(43924573449916:43924573500705) process_id(26027) thread_id(26027) - hipMalloc correlation_id(392) time_ns(43924573517682:43924573546177) process_id(26027) thread_id(26027) - (null) correlation_id(393) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(393) time_ns(43924573550373:43924574188815) process_id(26027) thread_id(26027) - (null) correlation_id(394) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(394) time_ns(43924574202362:43924574246767) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(394) time_ns(43924574251113:43924574731273) device_id(0) queue_id(0) - hcCommandMarker correlation_id(395) time_ns(43924574734047:43924574740767) device_id(0) queue_id(0) - (null) correlation_id(395) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(395) time_ns(43924574252163:43924575708203) process_id(26027) thread_id(26027) - (null) correlation_id(396) time_ns(0:0) external_id(31) - hipFree correlation_id(396) time_ns(43924590306093:43924590390382) process_id(26027) thread_id(26027) - (null) correlation_id(397) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (11) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(491) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(491) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(492) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(492) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (10) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (9) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(502) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(502) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(503) on-enter pid(1956) tid(1956)> + +<__hipPopCallConfiguration id(171) correlation_id(503) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (8) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (7) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(513) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(513) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(514) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(514) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (6) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (5) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(524) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(524) on-exit pid(1956) tid(1956)> + + +<__hipPopCallConfiguration id(171) correlation_id(525) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(525) on-exit pid(1956) tid(1956)> + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (4) ############################# - Activity records: - hipFree correlation_id(397) time_ns(43924590406775:43924590434772) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(398) time_ns(43924609307484:43924609316400) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(399) time_ns(43924609330707:43924609333163) process_id(26027) thread_id(26027) - hipMalloc correlation_id(400) time_ns(43924611536977:43924611585257) process_id(26027) thread_id(26027) - hipMalloc correlation_id(401) time_ns(43924611589444:43924611612016) process_id(26027) thread_id(26027) -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - (null) correlation_id(402) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(402) time_ns(43924611616893:43924612253700) process_id(26027) thread_id(26027) - (null) correlation_id(403) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(403) time_ns(43924612277792:43924612321418) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(403) time_ns(43924612321873:43924612798673) device_id(0) queue_id(0) - hcCommandMarker correlation_id(404) time_ns(43924612801648:43924612808048) device_id(0) queue_id(0) - (null) correlation_id(404) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(404) time_ns(43924612327977:43924613721928) process_id(26027) thread_id(26027) - (null) correlation_id(405) time_ns(0:0) external_id(31) - hipFree correlation_id(405) time_ns(43924628152462:43924628234778) process_id(26027) thread_id(26027) - (null) correlation_id(406) time_ns(0:0) external_id(31) - hipFree correlation_id(406) time_ns(43924628241577:43924628258879) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(407) time_ns(43924647370765:43924647379809) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(408) time_ns(43924647393625:43924647395924) process_id(26027) thread_id(26027) - hipMalloc correlation_id(409) time_ns(43924649646742:43924649698074) process_id(26027) thread_id(26027) - hipMalloc correlation_id(410) time_ns(43924649702498:43924649726483) process_id(26027) thread_id(26027) - (null) correlation_id(411) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(411) time_ns(43924649740436:43924650367679) process_id(26027) thread_id(26027) - (null) correlation_id(412) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(412) time_ns(43924650381865:43924650425898) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(412) time_ns(43924650430530:43924650921250) device_id(0) queue_id(0) - hcCommandMarker correlation_id(413) time_ns(43924650924099:43924650930499) device_id(0) queue_id(0) - (null) correlation_id(413) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(413) time_ns(43924650442002:43924651843203) process_id(26027) thread_id(26027) - (null) correlation_id(414) time_ns(0:0) external_id(31) - hipFree correlation_id(414) time_ns(43924666222121:43924666301439) process_id(26027) thread_id(26027) - (null) correlation_id(415) time_ns(0:0) external_id(31) - hipFree correlation_id(415) time_ns(43924666307003:43924666342180) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(416) time_ns(43924685034845:43924685043440) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(417) time_ns(43924685046918:43924685049180) process_id(26027) thread_id(26027) - hipMalloc correlation_id(418) time_ns(43924687222858:43924687270046) process_id(26027) thread_id(26027) - hipMalloc correlation_id(419) time_ns(43924687274152:43924687295655) process_id(26027) thread_id(26027) - (null) correlation_id(420) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(420) time_ns(43924687300729:43924687952269) process_id(26027) thread_id(26027) - (null) correlation_id(421) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(421) time_ns(43924687986953:43924688013077) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(421) time_ns(43924688018217:43924688500938) device_id(0) queue_id(0) - hcCommandMarker correlation_id(422) time_ns(43924688503978:43924688510378) device_id(0) queue_id(0) - (null) correlation_id(422) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(422) time_ns(43924688018510:43924689429970) process_id(26027) thread_id(26027) - (null) correlation_id(423) time_ns(0:0) external_id(31) - hipFree correlation_id(423) time_ns(43924703932199:43924704014713) process_id(26027) thread_id(26027) - (null) correlation_id(424) time_ns(0:0) external_id(31) - hipFree correlation_id(424) time_ns(43924704020644:43924704040647) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(425) time_ns(43924723051279:43924723060173) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(426) time_ns(43924723073743:43924723076102) process_id(26027) thread_id(26027) - hipMalloc correlation_id(427) time_ns(43924725307181:43924725358517) process_id(26027) thread_id(26027) - hipMalloc correlation_id(428) time_ns(43924725362871:43924725385936) process_id(26027) thread_id(26027) - (null) correlation_id(429) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(429) time_ns(43924725390694:43924726048510) process_id(26027) thread_id(26027) - (null) correlation_id(430) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(430) time_ns(43924726071761:43924726114911) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(430) time_ns(43924726119461:43924726600901) device_id(0) queue_id(0) - hcCommandMarker correlation_id(431) time_ns(43924726603712:43924726610432) device_id(0) queue_id(0) - (null) correlation_id(431) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(431) time_ns(43924726119857:43924727502384) process_id(26027) thread_id(26027) - (null) correlation_id(432) time_ns(0:0) external_id(31) - hipFree correlation_id(432) time_ns(43924741848451:43924741920620) process_id(26027) thread_id(26027) - (null) correlation_id(433) time_ns(0:0) external_id(31) +Device 0 name: Device 687f PASSED! # START (3) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> +<__hipPushCallConfiguration id(46) correlation_id(535) on-enter pid(1956) tid(1956)> + +<__hipPushCallConfiguration id(46) correlation_id(535) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(536) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(536) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (2) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (1) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffdc052b378) size(0x400000) - - - - - - - *ptr(0x0x903400000) - - - ptr(0x7ffdc052b370) size(0x400000) - - - - - - - *ptr(0x0x903c00000) - - - dst(0x903400000) src(0x7f1879f80010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x30c1e60) src(0x903c00000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7ffd4c5a7160) size(0x400000) + + + + + *ptr(0x0x7f2291400000) + ptr(0x7ffd4c5a7158) size(0x400000) + + + + + *ptr(0x0x7f2290e00000) + dst(0x7f2291400000) src(0x1cba050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipLaunchKernel pid(1956) tid(1956)"> + +<__hipPushCallConfiguration id(46) correlation_id(546) on-enter pid(1956) tid(1956)> +<__hipPushCallConfiguration id(46) correlation_id(546) on-exit pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(547) on-enter pid(1956) tid(1956)> +<__hipPopCallConfiguration id(171) correlation_id(547) on-exit pid(1956) tid(1956)> + + + + +rocTX <"after hipLaunchKernel pid(1956) tid(1956)"> +rocTX <"hipMemcpy pid(1956) tid(1956)"> + dst(0x20ba060) src(0x7f2290e00000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1956) tid(1956)"> +rocTX <"(null) pid(1956) tid(1956)"> + + + PASSED! - - - ptr(0x903400000) - - - - - - - - - - ptr(0x903c00000) - - - - - - - + ptr(0x7f2291400000) + + + + + + ptr(0x7f2290e00000) + + + + + # START (0) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! Activity records: - hipFree correlation_id(433) time_ns(43924741926422:43924741958578) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(434) time_ns(43924761216886:43924761225167) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(435) time_ns(43924761228808:43924761231248) process_id(26027) thread_id(26027) - hipMalloc correlation_id(436) time_ns(43924763457381:43924763515635) process_id(26027) thread_id(26027) - hipMalloc correlation_id(437) time_ns(43924763519639:43924763548024) process_id(26027) thread_id(26027) - (null) correlation_id(438) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(438) time_ns(43924763552948:43924764207043) process_id(26027) thread_id(26027) - (null) correlation_id(439) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(439) time_ns(43924764230619:43924764274761) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(439) time_ns(43924764274974:43924764760734) device_id(0) queue_id(0) - hcCommandMarker correlation_id(440) time_ns(43924764763639:43924764770199) device_id(0) queue_id(0) - (null) correlation_id(440) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(440) time_ns(43924764285853:43924765677534) process_id(26027) thread_id(26027) - (null) correlation_id(441) time_ns(0:0) external_id(31) - hipFree correlation_id(441) time_ns(43924780374843:43924780443668) process_id(26027) thread_id(26027) - (null) correlation_id(442) time_ns(0:0) external_id(31) - hipFree correlation_id(442) time_ns(43924780449734:43924780471282) process_id(26027) thread_id(26027) - hipSetDevice correlation_id(443) time_ns(43924799708096:43924799716960) process_id(26027) thread_id(26027) - hipGetDeviceProperties correlation_id(444) time_ns(43924799720376:43924799722561) process_id(26027) thread_id(26027) - hipMalloc correlation_id(445) time_ns(43924801896671:43924801948463) process_id(26027) thread_id(26027) - hipMalloc correlation_id(446) time_ns(43924801952845:43924801975714) process_id(26027) thread_id(26027) - (null) correlation_id(447) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(447) time_ns(43924801990209:43924802616444) process_id(26027) thread_id(26027) - (null) correlation_id(448) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(448) time_ns(43924802629888:43924802670261) process_id(26027) thread_id(26027) - hcCommandKernel correlation_id(448) time_ns(43924802675198:43924803158398) device_id(0) queue_id(0) - hcCommandMarker correlation_id(449) time_ns(43924803161402:43924803167802) device_id(0) queue_id(0) - (null) correlation_id(449) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(449) time_ns(43924802675647:43924804134907) process_id(26027) thread_id(26027) - (null) correlation_id(450) time_ns(0:0) external_id(31) - hipFree correlation_id(450) time_ns(43924818672850:43924818752150) process_id(26027) thread_id(26027) - (null) correlation_id(451) time_ns(0:0) external_id(31) - hipFree correlation_id(451) time_ns(43924818757801:43924818793634) process_id(26027) thread_id(26027) + CopyDeviceToHost correlation_id(472) time_ns(3802694360252549:3802694362823848) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(479) time_ns(3802694383880734:3802694385507676) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(482) time_ns(3802694385620548:3802694386830091) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(483) time_ns(3802694385597477:3802694388162566) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(490) time_ns(3802694409057291:3802694410674023) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(493) time_ns(3802694410771169:3802694411968562) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(494) time_ns(3802694410748213:3802694413291992) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(501) time_ns(3802694434283138:3802694435891110) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(504) time_ns(3802694436006555:3802694437203060) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(505) time_ns(3802694435984110:3802694438540429) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(512) time_ns(3802694459797587:3802694461410709) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(515) time_ns(3802694461515349:3802694462730077) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(516) time_ns(3802694461488809:3802694464062258) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(523) time_ns(3802694484895972:3802694486515175) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(526) time_ns(3802694486608382:3802694487799554) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(527) time_ns(3802694486586295:3802694489139934) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(534) time_ns(3802694510456642:3802694512069384) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(537) time_ns(3802694512167477:3802694513369760) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(538) time_ns(3802694512145114:3802694514705493) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(545) time_ns(3802694535769459:3802694537388901) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(548) time_ns(3802694537483664:3802694538676316) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(549) time_ns(3802694537459972:3802694540017631) device_id(0) queue_id(0) bytes(0x0) # STOP ############################# - diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_sys_hsa_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_sys_hsa_trace.txt index d418387700..be2836b108 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_sys_hsa_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_sys_hsa_trace.txt @@ -1,34 +1,11 @@ -ROCTracer (pid=26045): ++ ./test/MatrixTranspose +ROCTracer (pid=1976): rocTX-trace() +3802698011175354 HSA-trace() HSA-activity-trace() HIP-trace() -43928801217964:43928801221015 26045:26045 hsa_amd_profiling_async_copy_enable() = 0 -43928801708283:43928801708869 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38914) = 0 -43928801708283:43928801710116 26045:26045 hsa_iterate_agents(1, 0x7fffcdc38a70) = 1 -43928801711586:43928801711979 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38914) = 0 -43928801711586:43928801712879 26045:26045 hsa_iterate_agents(1, 0x7fffcdc38a70) = 1 -43928801716090:43928801716732 26045:26045 hsa_region_get_info(, 0, 0x7fffcdc38a34) = 0 -43928801717791:43928801718222 26045:26045 hsa_region_get_info(, 1, 0x7fffcdc38a30) = 0 -43928801719585:43928801719982 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38784) = 0 -43928801719585:43928801720856 26045:26045 hsa_iterate_agents(1, 0x7fffcdc388e0) = 1 -43928801722745:43928801723431 26045:26045 hsa_amd_agent_memory_pool_get_info(, , 0, 0x7fffcdc38a2c) = 0 -43928801724363:43928801724793 26045:26045 hsa_region_get_info(, 0, 0x7fffcdc38a34) = 0 -43928801725795:43928801726200 26045:26045 hsa_region_get_info(, 0, 0x7fffcdc38a34) = 0 -43928801727108:43928801727528 26045:26045 hsa_region_get_info(, 1, 0x7fffcdc38a30) = 0 -43928801728475:43928801728867 26045:26045 hsa_region_get_info(, 0, 0x7fffcdc38a64) = 0 -43928801729761:43928801730166 26045:26045 hsa_region_get_info(, 1, 0x7fffcdc38a60) = 0 -43928801731509:43928801731902 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc387b4) = 0 -43928801731509:43928801732776 26045:26045 hsa_iterate_agents(1, 0x7fffcdc38910) = 1 -43928801733702:43928801734141 26045:26045 hsa_amd_agent_memory_pool_get_info(, , 0, 0x7fffcdc38a5c) = 0 -43928801733702:43928801735023 26045:26045 hsa_agent_iterate_regions(, 1, 0x7fffcdc38d0f) = 0 -43928801733702:43928801735967 26045:26045 hsa_iterate_agents(1, 0x7fffcdc38d0f) = 0 -ROCTracer (pid=26045): - rocTX-trace() - HSA-trace() - HSA-activity-trace() - HIP-trace() -Device name Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device name Device 687f ## Iteration (99) ################# PASSED! ## Iteration (98) ################# @@ -229,8740 +206,9288 @@ PASSED! PASSED! ## Iteration (0) ################# PASSED! -43928821349789:43928821382009 26045:26045 hipGetDeviceProperties() -43928823527393:43928823577974 26045:26045 hipMalloc(ptr(0x903200000) size(0x400000)) -43928823580565:43928823607854 26045:26045 hipMalloc(ptr(0x903a00000) size(0x400000)) -43928823618546:43928832187179 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43928832189412:43928832189413 26045:26045 MARK(name(before HIP LaunchKernel)) -43929122496932:43929124505488 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929124519437:43929124519438 26045:26045 MARK(name(after HIP LaunchKernel)) -43929124529204:43929127422610 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929141921543:43929142892842 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929142894231:43929142894232 26045:26045 MARK(name(before HIP LaunchKernel)) -43929142907733:43929142930236 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929142932044:43929142932045 26045:26045 MARK(name(after HIP LaunchKernel)) -43929142936456:43929145768755 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929160301367:43929161269439 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929161270889:43929161270890 26045:26045 MARK(name(before HIP LaunchKernel)) -43929161283815:43929161299219 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929161300780:43929161300781 26045:26045 MARK(name(after HIP LaunchKernel)) -43929161305118:43929164149544 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929178652936:43929179622531 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929179623829:43929179623830 26045:26045 MARK(name(before HIP LaunchKernel)) -43929179636377:43929179650908 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929179652469:43929179652470 26045:26045 MARK(name(after HIP LaunchKernel)) -43929179656703:43929182557129 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929197182256:43929198153490 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929198154846:43929198154847 26045:26045 MARK(name(before HIP LaunchKernel)) -43929198169114:43929198185792 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929198187846:43929198187847 26045:26045 MARK(name(after HIP LaunchKernel)) -43929198193630:43929201091542 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929215721844:43929216707350 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929216708830:43929216708831 26045:26045 MARK(name(before HIP LaunchKernel)) -43929216722891:43929216739780 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929216741314:43929216741315 26045:26045 MARK(name(after HIP LaunchKernel)) -43929216745737:43929219645262 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929234221351:43929235190720 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929235192054:43929235192055 26045:26045 MARK(name(before HIP LaunchKernel)) -43929235206946:43929235223433 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929235225313:43929235225314 26045:26045 MARK(name(after HIP LaunchKernel)) -43929235230023:43929238131668 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929252729048:43929253700499 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929253701831:43929253701832 26045:26045 MARK(name(before HIP LaunchKernel)) -43929253715993:43929253737526 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929253739391:43929253739392 26045:26045 MARK(name(after HIP LaunchKernel)) -43929253743905:43929256643340 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929271255048:43929272229323 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929272230670:43929272230671 26045:26045 MARK(name(before HIP LaunchKernel)) -43929272245263:43929272262213 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929272264308:43929272264309 26045:26045 MARK(name(after HIP LaunchKernel)) -43929272268826:43929275174379 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929289817600:43929290791393 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929290792785:43929290792786 26045:26045 MARK(name(before HIP LaunchKernel)) -43929290807162:43929290824056 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929290826013:43929290826014 26045:26045 MARK(name(after HIP LaunchKernel)) -43929290830506:43929293734020 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929308308422:43929309314931 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929309317553:43929309317554 26045:26045 MARK(name(before HIP LaunchKernel)) -43929309333035:43929309350822 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929309352607:43929309352608 26045:26045 MARK(name(after HIP LaunchKernel)) -43929309357142:43929312250349 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929326892762:43929327880929 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929327882165:43929327882166 26045:26045 MARK(name(before HIP LaunchKernel)) -43929327894340:43929327908796 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929327910663:43929327910664 26045:26045 MARK(name(after HIP LaunchKernel)) -43929327915093:43929330816721 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929345439572:43929346418675 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929346419914:43929346419915 26045:26045 MARK(name(before HIP LaunchKernel)) -43929346438063:43929346455270 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929346457386:43929346457387 26045:26045 MARK(name(after HIP LaunchKernel)) -43929346461928:43929349365087 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929363942268:43929364947812 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929364949253:43929364949254 26045:26045 MARK(name(before HIP LaunchKernel)) -43929364964354:43929364986157 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929364988058:43929364988059 26045:26045 MARK(name(after HIP LaunchKernel)) -43929364992701:43929367892049 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929382529646:43929383531855 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929383533188:43929383533189 26045:26045 MARK(name(before HIP LaunchKernel)) -43929383547883:43929383564546 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929383566538:43929383566539 26045:26045 MARK(name(after HIP LaunchKernel)) -43929383571074:43929386468526 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929401101455:43929402069444 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929402070723:43929402070724 26045:26045 MARK(name(before HIP LaunchKernel)) -43929402085183:43929402101918 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929402105362:43929402105363 26045:26045 MARK(name(after HIP LaunchKernel)) -43929402110067:43929403670323 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929418301360:43929419270002 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929419271377:43929419271378 26045:26045 MARK(name(before HIP LaunchKernel)) -43929419285635:43929419302710 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929419304452:43929419304453 26045:26045 MARK(name(after HIP LaunchKernel)) -43929419308978:43929420883859 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929435493327:43929436476008 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929436477432:43929436477433 26045:26045 MARK(name(before HIP LaunchKernel)) -43929436494492:43929436511649 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929436513747:43929436513748 26045:26045 MARK(name(after HIP LaunchKernel)) -43929436518496:43929438080614 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929452742813:43929453737889 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929453739162:43929453739163 26045:26045 MARK(name(before HIP LaunchKernel)) -43929453753668:43929453774624 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929453776747:43929453776748 26045:26045 MARK(name(after HIP LaunchKernel)) -43929453781324:43929455345104 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929470000946:43929470966021 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929470967494:43929470967495 26045:26045 MARK(name(before HIP LaunchKernel)) -43929470981847:43929471003818 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929471005900:43929471005901 26045:26045 MARK(name(after HIP LaunchKernel)) -43929471010424:43929472568178 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929487189277:43929488164343 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929488165660:43929488165661 26045:26045 MARK(name(before HIP LaunchKernel)) -43929488180179:43929488197188 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929488199280:43929488199281 26045:26045 MARK(name(after HIP LaunchKernel)) -43929488203862:43929489765538 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929504402971:43929505388745 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929505390102:43929505390103 26045:26045 MARK(name(before HIP LaunchKernel)) -43929505405352:43929505422489 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929505424500:43929505424501 26045:26045 MARK(name(after HIP LaunchKernel)) -43929505429035:43929506982440 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929521609819:43929522583407 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929522584846:43929522584847 26045:26045 MARK(name(before HIP LaunchKernel)) -43929522597766:43929522612691 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929522614261:43929522614262 26045:26045 MARK(name(after HIP LaunchKernel)) -43929522618856:43929524182689 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929538841270:43929539819001 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929539820281:43929539820282 26045:26045 MARK(name(before HIP LaunchKernel)) -43929539833263:43929539847633 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929539849269:43929539849270 26045:26045 MARK(name(after HIP LaunchKernel)) -43929539853886:43929541402153 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929556036676:43929557029288 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929557030559:43929557030560 26045:26045 MARK(name(before HIP LaunchKernel)) -43929557042992:43929557063048 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929557064565:43929557064566 26045:26045 MARK(name(after HIP LaunchKernel)) -43929557068884:43929558636054 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929573278566:43929574270860 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929574272189:43929574272190 26045:26045 MARK(name(before HIP LaunchKernel)) -43929574286316:43929574303663 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929574305580:43929574305581 26045:26045 MARK(name(after HIP LaunchKernel)) -43929574314651:43929575872259 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929590508650:43929591490352 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929591491958:43929591491959 26045:26045 MARK(name(before HIP LaunchKernel)) -43929591507760:43929591524650 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929591526538:43929591526539 26045:26045 MARK(name(after HIP LaunchKernel)) -43929591531100:43929593086012 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929607748065:43929608731693 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929608732974:43929608732975 26045:26045 MARK(name(before HIP LaunchKernel)) -43929608747553:43929608764469 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929608766546:43929608766547 26045:26045 MARK(name(after HIP LaunchKernel)) -43929608771185:43929610285256 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929624886784:43929625864553 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929625865841:43929625865842 26045:26045 MARK(name(before HIP LaunchKernel)) -43929625880655:43929625897635 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929625899489:43929625899490 26045:26045 MARK(name(after HIP LaunchKernel)) -43929625904163:43929627431462 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929642026246:43929643003975 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929643005437:43929643005438 26045:26045 MARK(name(before HIP LaunchKernel)) -43929643019632:43929643036773 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929643038718:43929643038719 26045:26045 MARK(name(after HIP LaunchKernel)) -43929643043285:43929644565233 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929659153449:43929660129188 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929660130544:43929660130545 26045:26045 MARK(name(before HIP LaunchKernel)) -43929660145548:43929660165863 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929660167692:43929660167693 26045:26045 MARK(name(after HIP LaunchKernel)) -43929660172313:43929661686620 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929676270210:43929677243437 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929677244739:43929677244740 26045:26045 MARK(name(before HIP LaunchKernel)) -43929677257264:43929677272645 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929677274225:43929677274226 26045:26045 MARK(name(after HIP LaunchKernel)) -43929677282356:43929678790765 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929693378035:43929694356235 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929694357510:43929694357511 26045:26045 MARK(name(before HIP LaunchKernel)) -43929694369691:43929694384356 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929694385686:43929694385687 26045:26045 MARK(name(after HIP LaunchKernel)) -43929694390045:43929695900043 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929710495732:43929711471850 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929711473373:43929711473374 26045:26045 MARK(name(before HIP LaunchKernel)) -43929711486434:43929711501181 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929711502830:43929711502831 26045:26045 MARK(name(after HIP LaunchKernel)) -43929711507135:43929713044889 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929727642513:43929728628456 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929728629717:43929728629718 26045:26045 MARK(name(before HIP LaunchKernel)) -43929728647568:43929728664780 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929728666876:43929728666877 26045:26045 MARK(name(after HIP LaunchKernel)) -43929728671361:43929730222453 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929744878127:43929745854187 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929745855666:43929745855667 26045:26045 MARK(name(before HIP LaunchKernel)) -43929745870466:43929745887246 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929745889089:43929745889090 26045:26045 MARK(name(after HIP LaunchKernel)) -43929745893525:43929747458083 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929762120482:43929763114733 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929763116321:43929763116322 26045:26045 MARK(name(before HIP LaunchKernel)) -43929763130435:43929763152286 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929763154418:43929763154419 26045:26045 MARK(name(after HIP LaunchKernel)) -43929763159253:43929766058943 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929780644100:43929781643799 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929781649981:43929781649982 26045:26045 MARK(name(before HIP LaunchKernel)) -43929781664297:43929781680995 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929781682824:43929781682825 26045:26045 MARK(name(after HIP LaunchKernel)) -43929781687300:43929784586554 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929799171951:43929800170206 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929800171627:43929800171628 26045:26045 MARK(name(before HIP LaunchKernel)) -43929800186144:43929800203730 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929800205270:43929800205271 26045:26045 MARK(name(after HIP LaunchKernel)) -43929800210147:43929803113820 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929817751760:43929818737989 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929818739578:43929818739579 26045:26045 MARK(name(before HIP LaunchKernel)) -43929818753620:43929818770501 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929818772529:43929818772530 26045:26045 MARK(name(after HIP LaunchKernel)) -43929818777286:43929821683223 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929836371578:43929837334679 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929837335903:43929837335904 26045:26045 MARK(name(before HIP LaunchKernel)) -43929837350613:43929837367783 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929837369672:43929837369673 26045:26045 MARK(name(after HIP LaunchKernel)) -43929837374282:43929840272873 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929854836173:43929855815577 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929855816867:43929855816868 26045:26045 MARK(name(before HIP LaunchKernel)) -43929855837334:43929855854414 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929855856567:43929855856568 26045:26045 MARK(name(after HIP LaunchKernel)) -43929855861443:43929858764402 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929873402372:43929874391539 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929874393389:43929874393390 26045:26045 MARK(name(before HIP LaunchKernel)) -43929874407960:43929874430066 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929874433041:43929874433042 26045:26045 MARK(name(after HIP LaunchKernel)) -43929874437815:43929877343712 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929891975736:43929892975981 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929892977348:43929892977349 26045:26045 MARK(name(before HIP LaunchKernel)) -43929892992275:43929893009629 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929893011596:43929893011597 26045:26045 MARK(name(after HIP LaunchKernel)) -43929893016078:43929895902827 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929910484980:43929911479912 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929911481273:43929911481274 26045:26045 MARK(name(before HIP LaunchKernel)) -43929911495863:43929911512596 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929911514242:43929911514243 26045:26045 MARK(name(after HIP LaunchKernel)) -43929911518973:43929914424417 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929929134999:43929930128112 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929930129548:43929930129549 26045:26045 MARK(name(before HIP LaunchKernel)) -43929930144415:43929930161218 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929930163168:43929930163169 26045:26045 MARK(name(after HIP LaunchKernel)) -43929930167782:43929933071093 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929947660378:43929948658331 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929948659695:43929948659696 26045:26045 MARK(name(before HIP LaunchKernel)) -43929948674143:43929948691079 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929948692920:43929948692921 26045:26045 MARK(name(after HIP LaunchKernel)) -43929948697776:43929951598994 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929966216132:43929967193717 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929967195384:43929967195385 26045:26045 MARK(name(before HIP LaunchKernel)) -43929967213512:43929967230254 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929967232110:43929967232111 26045:26045 MARK(name(after HIP LaunchKernel)) -43929967236622:43929970133543 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43929984790368:43929985782108 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43929985783397:43929985783398 26045:26045 MARK(name(before HIP LaunchKernel)) -43929985797877:43929985820890 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43929985822734:43929985822735 26045:26045 MARK(name(after HIP LaunchKernel)) -43929985827494:43929988724371 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930003343601:43930004346293 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930004347550:43930004347551 26045:26045 MARK(name(before HIP LaunchKernel)) -43930004362452:43930004379248 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930004381133:43930004381134 26045:26045 MARK(name(after HIP LaunchKernel)) -43930004385760:43930007279098 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930021912118:43930022892399 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930022893764:43930022893765 26045:26045 MARK(name(before HIP LaunchKernel)) -43930022908179:43930022925044 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930022926648:43930022926649 26045:26045 MARK(name(after HIP LaunchKernel)) -43930022931180:43930024457641 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930039081409:43930040065932 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930040067274:43930040067275 26045:26045 MARK(name(before HIP LaunchKernel)) -43930040092047:43930040108647 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930040110596:43930040110597 26045:26045 MARK(name(after HIP LaunchKernel)) -43930040115091:43930041642494 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930056277901:43930057256648 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930057257977:43930057257978 26045:26045 MARK(name(before HIP LaunchKernel)) -43930057272223:43930057289480 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930057291332:43930057291333 26045:26045 MARK(name(after HIP LaunchKernel)) -43930057295873:43930058824334 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930073425379:43930074399760 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930074401252:43930074401253 26045:26045 MARK(name(before HIP LaunchKernel)) -43930074419817:43930074438268 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930074440170:43930074440171 26045:26045 MARK(name(after HIP LaunchKernel)) -43930074444725:43930075965254 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930090573064:43930091549310 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930091550651:43930091550652 26045:26045 MARK(name(before HIP LaunchKernel)) -43930091565318:43930091586526 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930091588403:43930091588404 26045:26045 MARK(name(after HIP LaunchKernel)) -43930091593005:43930093154139 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930107762046:43930108750345 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930108751815:43930108751816 26045:26045 MARK(name(before HIP LaunchKernel)) -43930108766235:43930108783875 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930108785788:43930108785789 26045:26045 MARK(name(after HIP LaunchKernel)) -43930108790444:43930110347879 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930125002524:43930125982636 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930125983908:43930125983909 26045:26045 MARK(name(before HIP LaunchKernel)) -43930125996898:43930126011708 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930126013155:43930126013156 26045:26045 MARK(name(after HIP LaunchKernel)) -43930126017486:43930127543710 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930142196077:43930143170122 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930143171557:43930143171558 26045:26045 MARK(name(before HIP LaunchKernel)) -43930143183967:43930143198412 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930143200095:43930143200096 26045:26045 MARK(name(after HIP LaunchKernel)) -43930143204452:43930144771054 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930159403691:43930160393521 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930160394814:43930160394815 26045:26045 MARK(name(before HIP LaunchKernel)) -43930160407201:43930160421674 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930160423285:43930160423286 26045:26045 MARK(name(after HIP LaunchKernel)) -43930160428657:43930161976186 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930176596876:43930177567385 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930177568762:43930177568763 26045:26045 MARK(name(before HIP LaunchKernel)) -43930177580617:43930177599106 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930177600622:43930177600623 26045:26045 MARK(name(after HIP LaunchKernel)) -43930177605236:43930179156766 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930193786814:43930194761708 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930194763193:43930194763194 26045:26045 MARK(name(before HIP LaunchKernel)) -43930194775546:43930194789719 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930194791198:43930194791199 26045:26045 MARK(name(after HIP LaunchKernel)) -43930194799346:43930196371655 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930211027029:43930212004351 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930212005914:43930212005915 26045:26045 MARK(name(before HIP LaunchKernel)) -43930212028861:43930212043049 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930212053785:43930212053786 26045:26045 MARK(name(after HIP LaunchKernel)) -43930212058354:43930213609958 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930228262713:43930229240371 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930229241594:43930229241595 26045:26045 MARK(name(before HIP LaunchKernel)) -43930229253718:43930229267338 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930229268677:43930229268678 26045:26045 MARK(name(after HIP LaunchKernel)) -43930229273036:43930230828395 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930245480631:43930246455490 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930246456769:43930246456770 26045:26045 MARK(name(before HIP LaunchKernel)) -43930246469196:43930246482896 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930246484464:43930246484465 26045:26045 MARK(name(after HIP LaunchKernel)) -43930246488848:43930248045447 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930262674151:43930263651803 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930263654095:43930263654096 26045:26045 MARK(name(before HIP LaunchKernel)) -43930263666279:43930263680027 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930263681543:43930263681544 26045:26045 MARK(name(after HIP LaunchKernel)) -43930263685887:43930265246396 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930279853420:43930280852934 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930280854474:43930280854475 26045:26045 MARK(name(before HIP LaunchKernel)) -43930280866659:43930280883869 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930280885482:43930280885483 26045:26045 MARK(name(after HIP LaunchKernel)) -43930280889840:43930282443424 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930297113151:43930298086759 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930298088033:43930298088034 26045:26045 MARK(name(before HIP LaunchKernel)) -43930298100887:43930298114444 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930298115954:43930298115955 26045:26045 MARK(name(after HIP LaunchKernel)) -43930298120290:43930299667942 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930314333956:43930315310609 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930315311820:43930315311821 26045:26045 MARK(name(before HIP LaunchKernel)) -43930315324785:43930315338444 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930315339975:43930315339976 26045:26045 MARK(name(after HIP LaunchKernel)) -43930315344661:43930316915748 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930331551482:43930332535669 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930332536980:43930332536981 26045:26045 MARK(name(before HIP LaunchKernel)) -43930332549985:43930332563637 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930332565027:43930332565028 26045:26045 MARK(name(after HIP LaunchKernel)) -43930332569394:43930334124047 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930348756805:43930349735833 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930349737337:43930349737338 26045:26045 MARK(name(before HIP LaunchKernel)) -43930349749102:43930349762696 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930349766394:43930349766395 26045:26045 MARK(name(after HIP LaunchKernel)) -43930349770821:43930351318643 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930365952737:43930366927280 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930366928543:43930366928544 26045:26045 MARK(name(before HIP LaunchKernel)) -43930366940834:43930366954672 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930366956265:43930366956266 26045:26045 MARK(name(after HIP LaunchKernel)) -43930366960759:43930368468025 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930383042804:43930384031864 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930384033125:43930384033126 26045:26045 MARK(name(before HIP LaunchKernel)) -43930384045585:43930384064690 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930384066187:43930384066188 26045:26045 MARK(name(after HIP LaunchKernel)) -43930384070873:43930386956640 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930401606890:43930402595595 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930402596786:43930402596787 26045:26045 MARK(name(before HIP LaunchKernel)) -43930402609403:43930402623248 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930402624768:43930402624769 26045:26045 MARK(name(after HIP LaunchKernel)) -43930402629125:43930405512214 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930420155344:43930421144143 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930421145457:43930421145458 26045:26045 MARK(name(before HIP LaunchKernel)) -43930421158149:43930421171754 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930421173279:43930421173280 26045:26045 MARK(name(after HIP LaunchKernel)) -43930421177671:43930424086855 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930438638964:43930439630170 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930439631448:43930439631449 26045:26045 MARK(name(before HIP LaunchKernel)) -43930439643417:43930439656783 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930439658236:43930439658237 26045:26045 MARK(name(after HIP LaunchKernel)) -43930439662612:43930442556618 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930457234588:43930458235604 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930458236944:43930458236945 26045:26045 MARK(name(before HIP LaunchKernel)) -43930458252561:43930458270034 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930458271946:43930458271947 26045:26045 MARK(name(after HIP LaunchKernel)) -43930458276581:43930461174006 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930475767073:43930476761677 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930476763074:43930476763075 26045:26045 MARK(name(before HIP LaunchKernel)) -43930476780668:43930476797506 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930476799292:43930476799293 26045:26045 MARK(name(after HIP LaunchKernel)) -43930476803907:43930479695341 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930494306470:43930495297876 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930495299303:43930495299304 26045:26045 MARK(name(before HIP LaunchKernel)) -43930495313946:43930495336102 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930495338219:43930495338220 26045:26045 MARK(name(after HIP LaunchKernel)) -43930495342911:43930498227245 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930512881639:43930513864262 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930513865712:43930513865713 26045:26045 MARK(name(before HIP LaunchKernel)) -43930513880258:43930513897477 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930513899274:43930513899275 26045:26045 MARK(name(after HIP LaunchKernel)) -43930513903971:43930516803453 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930531430328:43930532437431 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930532438771:43930532438772 26045:26045 MARK(name(before HIP LaunchKernel)) -43930532453106:43930532469898 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930532471967:43930532471968 26045:26045 MARK(name(after HIP LaunchKernel)) -43930532476519:43930535371401 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930549945202:43930550940770 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930550942142:43930550942143 26045:26045 MARK(name(before HIP LaunchKernel)) -43930550957781:43930550974611 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930550976381:43930550976382 26045:26045 MARK(name(after HIP LaunchKernel)) -43930550980977:43930553876692 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930568599586:43930569594162 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930569595844:43930569595845 26045:26045 MARK(name(before HIP LaunchKernel)) -43930569611408:43930569628942 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930569631114:43930569631115 26045:26045 MARK(name(after HIP LaunchKernel)) -43930569635683:43930572531861 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930587121462:43930588126225 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930588127701:43930588127702 26045:26045 MARK(name(before HIP LaunchKernel)) -43930588142491:43930588164272 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930588166135:43930588166136 26045:26045 MARK(name(after HIP LaunchKernel)) -43930588170741:43930591053523 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930605678019:43930606669058 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930606670431:43930606670432 26045:26045 MARK(name(before HIP LaunchKernel)) -43930606684605:43930606707405 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930606709278:43930606709279 26045:26045 MARK(name(after HIP LaunchKernel)) -43930606713964:43930609614815 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930624303095:43930625294059 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930625295402:43930625295403 26045:26045 MARK(name(before HIP LaunchKernel)) -43930625309834:43930625326524 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930625328474:43930625328475 26045:26045 MARK(name(after HIP LaunchKernel)) -43930625332967:43930628237487 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930642855151:43930643835333 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930643837061:43930643837062 26045:26045 MARK(name(before HIP LaunchKernel)) -43930643852287:43930643869129 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930643870964:43930643870965 26045:26045 MARK(name(after HIP LaunchKernel)) -43930643876458:43930645418991 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930660043380:43930661017218 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930661018732:43930661018733 26045:26045 MARK(name(before HIP LaunchKernel)) -43930661033444:43930661050116 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930661051826:43930661051827 26045:26045 MARK(name(after HIP LaunchKernel)) -43930661056328:43930662619508 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930677239065:43930678215639 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930678217048:43930678217049 26045:26045 MARK(name(before HIP LaunchKernel)) -43930678231055:43930678247980 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930678250226:43930678250227 26045:26045 MARK(name(after HIP LaunchKernel)) -43930678254748:43930679817672 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930694477507:43930695453612 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930695454921:43930695454922 26045:26045 MARK(name(before HIP LaunchKernel)) -43930695469868:43930695490917 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930695492677:43930695492678 26045:26045 MARK(name(after HIP LaunchKernel)) -43930695497229:43930697062436 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930711713021:43930712688922 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930712690236:43930712690237 26045:26045 MARK(name(before HIP LaunchKernel)) -43930712705309:43930712722139 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930712724002:43930712724003 26045:26045 MARK(name(after HIP LaunchKernel)) -43930712732625:43930714284929 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930728920088:43930729903146 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930729904509:43930729904510 26045:26045 MARK(name(before HIP LaunchKernel)) -43930729919170:43930729935894 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930729937815:43930729937816 26045:26045 MARK(name(after HIP LaunchKernel)) -43930729942327:43930731499310 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930746137535:43930747115076 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930747117381:43930747117382 26045:26045 MARK(name(before HIP LaunchKernel)) -43930747132166:43930747148830 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930747150641:43930747150642 26045:26045 MARK(name(after HIP LaunchKernel)) -43930747155075:43930748712751 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930763363169:43930764354316 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930764355479:43930764355480 26045:26045 MARK(name(before HIP LaunchKernel)) -43930764368427:43930764383862 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930764385419:43930764385420 26045:26045 MARK(name(after HIP LaunchKernel)) -43930764389726:43930765937408 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930780592450:43930781566891 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930781568219:43930781568220 26045:26045 MARK(name(before HIP LaunchKernel)) -43930781581007:43930781595946 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930781597557:43930781597558 26045:26045 MARK(name(after HIP LaunchKernel)) -43930781601983:43930783151888 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930797819027:43930798792755 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930798794155:43930798794156 26045:26045 MARK(name(before HIP LaunchKernel)) -43930798806903:43930798825095 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930798826655:43930798826656 26045:26045 MARK(name(after HIP LaunchKernel)) -43930798831124:43930800419144 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930815032961:43930816039623 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930816041071:43930816041072 26045:26045 MARK(name(before HIP LaunchKernel)) -43930816064413:43930816082004 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930816083866:43930816083867 26045:26045 MARK(name(after HIP LaunchKernel)) -43930816088481:43930817652051 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930832157120:43930833136126 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930833137623:43930833137624 26045:26045 MARK(name(before HIP LaunchKernel)) -43930833153662:43930833170115 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930833171924:43930833171925 26045:26045 MARK(name(after HIP LaunchKernel)) -43930833176374:43930834734585 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930849335968:43930850310035 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930850311309:43930850311310 26045:26045 MARK(name(before HIP LaunchKernel)) -43930850325544:43930850342153 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930850343996:43930850343997 26045:26045 MARK(name(after HIP LaunchKernel)) -43930850348482:43930851912663 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930866546277:43930867526754 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930867528163:43930867528164 26045:26045 MARK(name(before HIP LaunchKernel)) -43930867543160:43930867559785 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930867561512:43930867561513 26045:26045 MARK(name(after HIP LaunchKernel)) -43930867565902:43930869091920 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930883716131:43930884677342 26045:26045 hipMemcpy(dst(0x903200000) src(0x215b170) size(0x400000) kind(1)) -43930884678631:43930884678632 26045:26045 MARK(name(before HIP LaunchKernel)) -43930884694101:43930884711548 26045:26045 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43930884713779:43930884713780 26045:26045 MARK(name(after HIP LaunchKernel)) -43930884718249:43930886238842 26045:26045 hipMemcpy(dst(0x255b180) src(0x903a00000) size(0x400000) kind(2)) -43930900879693:43930900961693 26045:26045 hipFree(ptr(0x903200000)) -43930900964643:43930900983784 26045:26045 hipFree(ptr(0x903a00000)) -43928818806550:43928818808630 26045:26045 hsa_amd_profiling_async_copy_enable() = 0 -43928819009702:43928819010128 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc37d64) = 0 -43928819013500:43928819014204 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc37d64) = 0 -43928819013500:43928819015077 26045:26045 hsa_iterate_agents(1, 0x1d6ef58) = 0 -43928819016342:43928819016680 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc37f6c) = 0 -43928819016342:43928819017415 26045:26045 hsa_iterate_agents(1, 0x1d6ef50) = 1 -43928819020487:43928819020874 26045:26045 hsa_agent_get_info(, 4, 0x7fffcdc37c80) = 0 -43928819021766:43928819024997 26045:26045 hsa_agent_get_info(, 0, 0x7fffcdc37c40) = 0 -43928819025767:43928819026140 26045:26045 hsa_agent_get_info(, 16, 0x1d43968) = 0 -43928819037072:43928819037444 26045:26045 hsa_agent_get_info(, 21, 0x1d43900) = 0 -43928819038207:43928819038547 26045:26045 hsa_agent_get_info(, 22, 0x1d43902) = 0 -43928819039564:43928819039908 26045:26045 hsa_agent_get_info(, 14, 0x1d437a0) = 0 -43928819041336:43928819041729 26045:26045 hsa_amd_profiling_async_copy_enable() = 0 -43928819044307:43928819044915 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc3790c) = 0 -43928819045706:43928819046046 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc3790c) = 0 -43928819046840:43928819047178 26045:26045 hsa_amd_memory_pool_get_info(, 2, 0x7fffcdc37910) = 0 -43928819046840:43928819047918 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d43798) = 1 -43928819049101:43928819049438 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc37764) = 0 -43928819050193:43928819050544 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc37754) = 0 -43928819051283:43928819051621 26045:26045 hsa_amd_memory_pool_get_info(, 2, 0x7fffcdc37758) = 0 -43928819052572:43928819052919 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc37764) = 0 -43928819052572:43928819053656 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d43858) = 0 -43928819054808:43928819055135 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc3791c) = 0 -43928819055878:43928819056221 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc3778c) = 0 -43928819056962:43928819057294 26045:26045 hsa_amd_memory_pool_get_info(, 2, 0x7fffcdc37780) = 0 -43928819058408:43928819058750 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc3791c) = 0 -43928819059487:43928819059824 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc3778c) = 0 -43928819060566:43928819060904 26045:26045 hsa_amd_memory_pool_get_info(, 2, 0x7fffcdc37780) = 0 -43928819060566:43928819061658 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d43858) = 0 -43928819064729:43928819134507 26045:26045 hsa_amd_memory_pool_allocate(, , , 0x7fffcdc37a18) = 0 -43928819136448:43928819149090 26045:26045 hsa_amd_agents_allow_access(, 0x1d43790, 0, 0x3d00000) = 0 -43928819155469:43928819155860 26045:26045 hsa_agent_get_info(, 8, 0x1d438b4) = 0 -43928819156659:43928819156997 26045:26045 hsa_agent_get_info(, 7, 0x1d438b8) = 0 -43928819157733:43928819158075 26045:26045 hsa_agent_get_info(, 4, 0x7fffcdc37e80) = 0 -43928819160373:43928819160778 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc377cc) = 0 -43928819161713:43928819162069 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc377c8) = 0 -43928819162907:43928819163243 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc377cc) = 0 -43928819164025:43928819164363 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc377c8) = 0 -43928819164025:43928819165141 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fffcdc37a10) = 0 -43928819166352:43928819166715 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc377f4) = 0 -43928819167483:43928819167828 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc377f4) = 0 -43928819167483:43928819168617 26045:26045 hsa_iterate_agents(1, 0x7fffcdc37970) = 0 -43928819169589:43928819653388 26045:26045 hsa_amd_memory_pool_allocate(, , , 0x1d43cd0) = 0 -43928819654666:43928819672465 26045:26045 hsa_amd_agents_allow_access(, 0x1d6a7f0, 0, 0x4000000) = 0 -43928819674787:43928819676489 26045:26045 hsa_signal_create(0, , 0, 0x1d43cf0) = 0 -43928819677286:43928819678215 26045:26045 hsa_signal_create(0, , 0, 0x1d43d10) = 0 -43928819679042:43928820154075 26045:26045 hsa_amd_memory_pool_allocate(, , , 0x1d43cd8) = 0 -43928820155264:43928820171958 26045:26045 hsa_amd_agents_allow_access(, 0x1d6a7f0, 0, 0x4800000) = 0 -43928820172893:43928820174180 26045:26045 hsa_signal_create(0, , 0, 0x1d43cf8) = 0 -43928820175016:43928820175885 26045:26045 hsa_signal_create(0, , 0, 0x1d43d18) = 0 -43928820177416:43928820177793 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc377cc) = 0 -43928820178637:43928820178982 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc377c8) = 0 -43928820179817:43928820180150 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc377cc) = 0 -43928820180988:43928820181324 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc377c8) = 0 -43928820180988:43928820182100 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fffcdc37a10) = 0 -43928820183361:43928820183769 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc377f4) = 0 -43928820184543:43928820184953 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc377f4) = 0 -43928820184543:43928820186848 26045:26045 hsa_iterate_agents(1, 0x7fffcdc37970) = 0 -43928820187774:43928820661205 26045:26045 hsa_amd_memory_pool_allocate(, , , 0x1d44310) = 0 -43928820662276:43928820678100 26045:26045 hsa_amd_agents_allow_access(, 0x1d6a7f0, 0, 0x5000000) = 0 -43928820679016:43928820680215 26045:26045 hsa_signal_create(0, , 0, 0x1d44330) = 0 -43928820680967:43928820681811 26045:26045 hsa_signal_create(0, , 0, 0x1d44350) = 0 -43928820682618:43928821157014 26045:26045 hsa_amd_memory_pool_allocate(, , , 0x1d44318) = 0 -43928821158075:43928821173448 26045:26045 hsa_amd_agents_allow_access(, 0x1d6a7f0, 0, 0x5800000) = 0 -43928821174359:43928821175500 26045:26045 hsa_signal_create(0, , 0, 0x1d44338) = 0 -43928821176233:43928821177104 26045:26045 hsa_signal_create(0, , 0, 0x1d44358) = 0 -43928821180446:43928821197812 26045:26045 hsa_amd_memory_lock(0x7f153c4b8380, , 0x1d6a4b0, 1, 0x7f153c4b8388) = 0 -43928821203025:43928821203421 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc382a4) = 0 -43928821203025:43928821204162 26045:26045 hsa_iterate_agents(1, 0x7f153b86f1d8) = 1 -43928821206149:43928821206557 26045:26045 hsa_agent_get_info(, 40962, 0x1d44ac8) = 0 -43928821207918:43928821208256 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc380bc) = 0 -43928821209223:43928821209574 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc380bc) = 0 -43928821209223:43928821210347 26045:26045 hsa_iterate_agents(1, 0x7fffcdc3821c) = 0 -43928821211105:43928821211536 26045:26045 hsa_agent_get_info(, 40969, 0x1d44ad0) = 0 -43928821212270:43928821214862 26045:26045 hsa_agent_get_info(, 0, 0x7fffcdc38290) = 0 -43928821216805:43928821217171 26045:26045 hsa_agent_get_info(, 16, 0x7fffcdc3824c) = 0 -43928821217964:43928821218310 26045:26045 hsa_agent_get_info(, 6, 0x1d44be4) = 0 -43928821219050:43928821219389 26045:26045 hsa_agent_get_info(, 8, 0x1d44be8) = 0 -43928821220239:43928821220583 26045:26045 hsa_agent_get_info(, 7, 0x7fffcdc3820e) = 0 -43928821221351:43928821221696 26045:26045 hsa_agent_get_info(, 9, 0x7fffcdc38230) = 0 -43928821222484:43928821222850 26045:26045 hsa_agent_get_info(, 40963, 0x1d44c04) = 0 -43928821224207:43928821224568 26045:26045 hsa_system_get_info(3, 0x7fffcdc38240) = 0 -43928821225350:43928821225703 26045:26045 hsa_agent_get_info(, 40966, 0x7fffcdc3820c) = 0 -43928821226439:43928821226794 26045:26045 hsa_agent_get_info(, 40975, 0x1d44c3c) = 0 -43928821227531:43928821227880 26045:26045 hsa_agent_get_info(, 40962, 0x1d44c20) = 0 -43928821228621:43928821228976 26045:26045 hsa_agent_get_info(, 18, 0x7fffcdc38280) = 0 -43928821231522:43928821231888 26045:26045 hsa_agent_get_info(, 40970, 0x7fffcdc38218) = 0 -43928821234216:43928821234593 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc3807c) = 0 -43928821236636:43928821236975 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc3807c) = 0 -43928821237796:43928821238130 26045:26045 hsa_amd_memory_pool_get_info(, 2, 0x1d44bd8) = 0 -43928821237796:43928821238867 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d44ad0) = 0 -43928821252280:43928821253380 26045:26045 hsa_signal_create(1, , 0x7fffcdc37f48, 0x1d44e88) = 0 -43928821258394:43928821258839 26045:26045 hsa_region_get_info(, 2, 0x1d44bd0) = 0 -43928821259604:43928821259949 26045:26045 hsa_region_get_info(, 40963, 0x1d44c08) = 0 -43928821260721:43928821261054 26045:26045 hsa_region_get_info(, 40962, 0x1d44c0c) = 0 -43928821261841:43928821262197 26045:26045 hsa_agent_get_info(, 4, 0x7fffcdc38214) = 0 -43928821262967:43928821303493 26045:26045 hsa_agent_get_info(, 12288, 0x1d44c68) = 0 -43928821304373:43928821304811 26045:26045 hsa_agent_get_info(, 12291, 0x1d44c6c) = 0 -43928821305590:43928821305966 26045:26045 hsa_agent_get_info(, 12295, 0x1d44c74) = 0 -43928821306735:43928821307105 26045:26045 hsa_agent_get_info(, 40974, 0x7fffcdc38270) = 0 -43928821307876:43928821308226 26045:26045 hsa_agent_get_info(, 19, 0x7fffcdc38228) = 0 -43928821310002:43928821323222 26045:26045 hsa_isa_get_info_alt(, 0, 0x7fffcdc38220) = 0 -43928821326057:43928821329564 26045:26045 hsa_isa_get_info_alt(, 1, 0x1d447d0) = 0 -43928821345785:43928821346161 26045:26045 hsa_system_get_info(3, 0x7fffcdc385b0) = 0 -43928821347112:43928821347751 26045:26045 hsa_system_get_info(2, 0x7fffcdc385e0) = 0 -43928821351324:43928821351976 26045:26045 hsa_system_get_info(2, 0x7fffcdc385e0) = 0 -43928823525445:43928823526222 26045:26045 hsa_system_get_info(2, 0x7fffcdc385e0) = 0 -43928823534661:43928823571234 26045:26045 hsa_amd_memory_pool_allocate(, , , 0x7fffcdc383a8) = 0 -43928823575592:43928823576221 26045:26045 hsa_system_get_info(2, 0x7fffcdc385e0) = 0 -43928823579162:43928823579793 26045:26045 hsa_system_get_info(2, 0x7fffcdc385e0) = 0 -43928823581249:43928823604613 26045:26045 hsa_amd_memory_pool_allocate(, , , 0x7fffcdc383a8) = 0 -43928823605991:43928823606632 26045:26045 hsa_system_get_info(2, 0x7fffcdc385e0) = 0 -43928823617129:43928823617774 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43928823622797:43928823624003 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43928823626445:43928823626902 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43928823627752:43928823628314 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43928823629092:43928823629471 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43928823631185:43928823631524 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38264) = 0 -43928823631185:43928823632334 26045:26045 hsa_iterate_agents(1, 0x7fffcdc383c0) = 1 -43928823633956:43928823634463 26045:26045 hsa_region_get_info(, 0, 0x7fffcdc383bc) = 0 -43928823635500:43928823635957 26045:26045 hsa_region_get_info(, 1, 0x7fffcdc383b8) = 0 -43928823636957:43928823637408 26045:26045 hsa_region_get_info(, 0, 0x7fffcdc383bc) = 0 -43928823638320:43928823638752 26045:26045 hsa_region_get_info(, 1, 0x7fffcdc383b8) = 0 -43928823638320:43928823639683 26045:26045 hsa_agent_iterate_regions(, 1, 0x7fffcdc38500) = 1 -43928823651914:43928824161501 26045:26045 hsa_memory_allocate(, , 0x7fffcdc38508) = 0 -43928824163804:43928824164195 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38264) = 0 -43928824163804:43928824164975 26045:26045 hsa_iterate_agents(1, 0x7fffcdc383c0) = 1 -43928824166461:43928824168385 26045:26045 hsa_signal_create(1, , 0x7fffcdc38508, 0x7fffcdc38500) = 0 -43928824429542:43928824430152 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43928824434116:43928824434498 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc37ec0) = 0 -43928824436034:43928824436471 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc37d40) = 0 -43928824437266:43928824437611 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc37d44) = 0 -43928824438425:43928824438782 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc37d40) = 0 -43928824439515:43928824439856 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc37d44) = 0 -43928824439515:43928824440636 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d4a850) = 1 -43928824441793:43928824442130 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc37d40) = 0 -43928824442859:43928824443191 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc37d44) = 0 -43928824442859:43928824443950 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d4a860) = 1 -43928824456520:43928824456961 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc37ec0) = 0 -43928824457818:43928824461936 26045:26045 hsa_agent_get_info(, 0, 0x1d4a944) = 0 -43928824464336:43928824464696 26045:26045 hsa_agent_get_info(, 6, 0x1d4a984) = 0 -43928824465437:43928824465796 26045:26045 hsa_agent_get_info(, 14, 0x1d4a988) = 0 -43928824466532:43928824466883 26045:26045 hsa_agent_get_info(, 4, 0x1d4a98c) = 0 -43928824469219:43928824469569 26045:26045 hsa_agent_get_info(, 40962, 0x1d4a9a8) = 0 -43928824470307:43928824470649 26045:26045 hsa_agent_get_info(, 40970, 0x1d4a9ac) = 0 -43928824471384:43928824471720 26045:26045 hsa_agent_get_info(, 40971, 0x1d4a9b0) = 0 -43928824472458:43928824472808 26045:26045 hsa_agent_get_info(, 40972, 0x1d4a9b4) = 0 -43928824473541:43928824473877 26045:26045 hsa_agent_get_info(, 40973, 0x1d4a9b8) = 0 -43928824475087:43928824475419 26045:26045 hsa_amd_memory_pool_get_info(, 0, 0x7fffcdc37d30) = 0 -43928824476149:43928824476494 26045:26045 hsa_amd_memory_pool_get_info(, 1, 0x7fffcdc37d34) = 0 -43928824476149:43928824477252 26045:26045 hsa_amd_agent_iterate_memory_pools(, 1, 0x1d4a998) = 1 -43928824476149:43928824481825 26045:26045 hsa_iterate_agents(1, 0x1d4a660) = 0 -43928824482797:43928824589956 26045:26045 hsa_system_get_major_extension_table(, , , 0x1d4a6f8) = 0 -43928824591434:43928824591840 26045:26045 hsa_system_get_major_extension_table(, , , 0x1d4a748) = 0 -43928824592784:43928824593135 26045:26045 hsa_system_get_info(3, 0x7fffcdc38038) = 0 -43928824606887:43928824607534 26045:26045 hsa_system_get_info(2, 0x1d4b210) = 0 -43928824609541:43928824610168 26045:26045 hsa_system_get_info(2, 0x1d4b218) = 0 -43928824610956:43928824611577 26045:26045 hsa_system_get_info(2, 0x1d4b220) = 0 -43928824612326:43928824612946 26045:26045 hsa_system_get_info(2, 0x1d4b228) = 0 -43928824613693:43928824614311 26045:26045 hsa_system_get_info(2, 0x1d4b230) = 0 -43928824615060:43928824615679 26045:26045 hsa_system_get_info(2, 0x1d4b238) = 0 -43928824616427:43928824617043 26045:26045 hsa_system_get_info(2, 0x1d4b240) = 0 -43928824617790:43928824618408 26045:26045 hsa_system_get_info(2, 0x1d4b248) = 0 -43928824619153:43928824619775 26045:26045 hsa_system_get_info(2, 0x1d4b250) = 0 -43928824620521:43928824621161 26045:26045 hsa_system_get_info(2, 0x1d4b258) = 0 -43928824621907:43928824622522 26045:26045 hsa_system_get_info(2, 0x1d4b260) = 0 -43928824623272:43928824623887 26045:26045 hsa_system_get_info(2, 0x1d4b268) = 0 -43928824624629:43928824625250 26045:26045 hsa_system_get_info(2, 0x1d4b270) = 0 -43928824625998:43928824626620 26045:26045 hsa_system_get_info(2, 0x1d4b278) = 0 -43928824627369:43928824627991 26045:26045 hsa_system_get_info(2, 0x1d4b280) = 0 -43928824628741:43928824629358 26045:26045 hsa_system_get_info(2, 0x1d4b288) = 0 -43928824631362:43928824631982 26045:26045 hsa_system_get_info(2, 0x1d4b290) = 0 -43928824632731:43928824633349 26045:26045 hsa_system_get_info(2, 0x1d4b298) = 0 -43928824634095:43928824634714 26045:26045 hsa_system_get_info(2, 0x1d4b2a0) = 0 -43928824635461:43928824636078 26045:26045 hsa_system_get_info(2, 0x1d4b2a8) = 0 -43928824636824:43928824637441 26045:26045 hsa_system_get_info(2, 0x1d4b2b0) = 0 -43928824638186:43928824638806 26045:26045 hsa_system_get_info(2, 0x1d4b2b8) = 0 -43928824639612:43928824640233 26045:26045 hsa_system_get_info(2, 0x1d4b2c0) = 0 -43928824640979:43928824641598 26045:26045 hsa_system_get_info(2, 0x1d4b2c8) = 0 -43928824642346:43928824642960 26045:26045 hsa_system_get_info(2, 0x1d4b2d0) = 0 -43928824643708:43928824644327 26045:26045 hsa_system_get_info(2, 0x1d4b2d8) = 0 -43928824645076:43928824645699 26045:26045 hsa_system_get_info(2, 0x1d4b2e0) = 0 -43928824646448:43928824647068 26045:26045 hsa_system_get_info(2, 0x1d4b2e8) = 0 -43928824647817:43928824648438 26045:26045 hsa_system_get_info(2, 0x1d4b2f0) = 0 -43928824649186:43928824649822 26045:26045 hsa_system_get_info(2, 0x1d4b2f8) = 0 -43928824650571:43928824651189 26045:26045 hsa_system_get_info(2, 0x1d4b300) = 0 -43928824651934:43928824652561 26045:26045 hsa_system_get_info(2, 0x1d4b308) = 0 -43928824653306:43928824653924 26045:26045 hsa_system_get_info(2, 0x1d4b310) = 0 -43928824654671:43928824655292 26045:26045 hsa_system_get_info(2, 0x1d4b318) = 0 -43928824656041:43928824656658 26045:26045 hsa_system_get_info(2, 0x1d4b320) = 0 -43928824657406:43928824658034 26045:26045 hsa_system_get_info(2, 0x1d4b328) = 0 -43928824658782:43928824659403 26045:26045 hsa_system_get_info(2, 0x1d4b330) = 0 -43928824660154:43928824660772 26045:26045 hsa_system_get_info(2, 0x1d4b338) = 0 -43928824661519:43928824662144 26045:26045 hsa_system_get_info(2, 0x1d4b340) = 0 -43928824662890:43928824663516 26045:26045 hsa_system_get_info(2, 0x1d4b348) = 0 -43928824664265:43928824664885 26045:26045 hsa_system_get_info(2, 0x1d4b350) = 0 -43928824665631:43928824666252 26045:26045 hsa_system_get_info(2, 0x1d4b358) = 0 -43928824667001:43928824667621 26045:26045 hsa_system_get_info(2, 0x1d4b360) = 0 -43928824668372:43928824668995 26045:26045 hsa_system_get_info(2, 0x1d4b368) = 0 -43928824669763:43928824670382 26045:26045 hsa_system_get_info(2, 0x1d4b370) = 0 -43928824671921:43928824672540 26045:26045 hsa_system_get_info(2, 0x1d4b378) = 0 -43928824673290:43928824673910 26045:26045 hsa_system_get_info(2, 0x1d4b380) = 0 -43928824674655:43928824675275 26045:26045 hsa_system_get_info(2, 0x1d4b388) = 0 -43928824676019:43928824676638 26045:26045 hsa_system_get_info(2, 0x1d4b390) = 0 -43928824677386:43928824678007 26045:26045 hsa_system_get_info(2, 0x1d4b398) = 0 -43928824678759:43928824679380 26045:26045 hsa_system_get_info(2, 0x1d4b3a0) = 0 -43928824680124:43928824680741 26045:26045 hsa_system_get_info(2, 0x1d4b3a8) = 0 -43928824681488:43928824682108 26045:26045 hsa_system_get_info(2, 0x1d4b3b0) = 0 -43928824682851:43928824683476 26045:26045 hsa_system_get_info(2, 0x1d4b3b8) = 0 -43928824684219:43928824684840 26045:26045 hsa_system_get_info(2, 0x1d4b3c0) = 0 -43928824685582:43928824686207 26045:26045 hsa_system_get_info(2, 0x1d4b3c8) = 0 -43928824686953:43928824687575 26045:26045 hsa_system_get_info(2, 0x1d4b3d0) = 0 -43928824688322:43928824688943 26045:26045 hsa_system_get_info(2, 0x1d4b3d8) = 0 -43928824689692:43928824690316 26045:26045 hsa_system_get_info(2, 0x1d4b3e0) = 0 -43928824691063:43928824691684 26045:26045 hsa_system_get_info(2, 0x1d4b3e8) = 0 -43928824692434:43928824693073 26045:26045 hsa_system_get_info(2, 0x1d4b3f0) = 0 -43928824693818:43928824694438 26045:26045 hsa_system_get_info(2, 0x1d4b3f8) = 0 -43928824695186:43928824695804 26045:26045 hsa_system_get_info(2, 0x1d4b400) = 0 -43928824696551:43928824697173 26045:26045 hsa_system_get_info(2, 0x1d4b408) = 0 -43928824697920:43928824698538 26045:26045 hsa_system_get_info(2, 0x1d4b410) = 0 -43928824699282:43928824699902 26045:26045 hsa_system_get_info(2, 0x1d4b418) = 0 -43928824700649:43928824701267 26045:26045 hsa_system_get_info(2, 0x1d4b420) = 0 -43928824702016:43928824702637 26045:26045 hsa_system_get_info(2, 0x1d4b428) = 0 -43928824703384:43928824703999 26045:26045 hsa_system_get_info(2, 0x1d4b430) = 0 -43928824704744:43928824705361 26045:26045 hsa_system_get_info(2, 0x1d4b438) = 0 -43928824706109:43928824706726 26045:26045 hsa_system_get_info(2, 0x1d4b440) = 0 -43928824707474:43928824708101 26045:26045 hsa_system_get_info(2, 0x1d4b448) = 0 -43928824708848:43928824709465 26045:26045 hsa_system_get_info(2, 0x1d4b450) = 0 -43928824710967:43928824711595 26045:26045 hsa_system_get_info(2, 0x1d4b458) = 0 -43928824712339:43928824712957 26045:26045 hsa_system_get_info(2, 0x1d4b460) = 0 -43928824713707:43928824714324 26045:26045 hsa_system_get_info(2, 0x1d4b468) = 0 -43928824715070:43928824715692 26045:26045 hsa_system_get_info(2, 0x1d4b470) = 0 -43928824716440:43928824717059 26045:26045 hsa_system_get_info(2, 0x1d4b478) = 0 -43928824717803:43928824718421 26045:26045 hsa_system_get_info(2, 0x1d4b480) = 0 -43928824719170:43928824719793 26045:26045 hsa_system_get_info(2, 0x1d4b488) = 0 -43928824720541:43928824721169 26045:26045 hsa_system_get_info(2, 0x1d4b490) = 0 -43928824721913:43928824722535 26045:26045 hsa_system_get_info(2, 0x1d4b498) = 0 -43928824723283:43928824723904 26045:26045 hsa_system_get_info(2, 0x1d4b4a0) = 0 -43928824724647:43928824725267 26045:26045 hsa_system_get_info(2, 0x1d4b4a8) = 0 -43928824726012:43928824726630 26045:26045 hsa_system_get_info(2, 0x1d4b4b0) = 0 -43928824727376:43928824728007 26045:26045 hsa_system_get_info(2, 0x1d4b4b8) = 0 -43928824728752:43928824729369 26045:26045 hsa_system_get_info(2, 0x1d4b4c0) = 0 -43928824730115:43928824730733 26045:26045 hsa_system_get_info(2, 0x1d4b4c8) = 0 -43928824731480:43928824732095 26045:26045 hsa_system_get_info(2, 0x1d4b4d0) = 0 -43928824732839:43928824733460 26045:26045 hsa_system_get_info(2, 0x1d4b4d8) = 0 -43928824734205:43928824734823 26045:26045 hsa_system_get_info(2, 0x1d4b4e0) = 0 -43928824735567:43928824736189 26045:26045 hsa_system_get_info(2, 0x1d4b4e8) = 0 -43928824736931:43928824737551 26045:26045 hsa_system_get_info(2, 0x1d4b4f0) = 0 -43928824738297:43928824738917 26045:26045 hsa_system_get_info(2, 0x1d4b4f8) = 0 -43928824739662:43928824740282 26045:26045 hsa_system_get_info(2, 0x1d4b500) = 0 -43928824741029:43928824741645 26045:26045 hsa_system_get_info(2, 0x1d4b508) = 0 -43928824742391:43928824743007 26045:26045 hsa_system_get_info(2, 0x1d4b510) = 0 -43928824743754:43928824744375 26045:26045 hsa_system_get_info(2, 0x1d4b518) = 0 -43928824745121:43928824745738 26045:26045 hsa_system_get_info(2, 0x1d4b520) = 0 -43928824746483:43928824747105 26045:26045 hsa_system_get_info(2, 0x1d4b528) = 0 -43928824747869:43928824748488 26045:26045 hsa_system_get_info(2, 0x1d4b530) = 0 -43928824749940:43928824750565 26045:26045 hsa_system_get_info(2, 0x1d4b538) = 0 -43928824751325:43928824751945 26045:26045 hsa_system_get_info(2, 0x1d4b540) = 0 -43928824752692:43928824753316 26045:26045 hsa_system_get_info(2, 0x1d4b548) = 0 -43928824754061:43928824754682 26045:26045 hsa_system_get_info(2, 0x1d4b550) = 0 -43928824755429:43928824756050 26045:26045 hsa_system_get_info(2, 0x1d4b558) = 0 -43928824756795:43928824757413 26045:26045 hsa_system_get_info(2, 0x1d4b560) = 0 -43928824758162:43928824758781 26045:26045 hsa_system_get_info(2, 0x1d4b568) = 0 -43928824759525:43928824760146 26045:26045 hsa_system_get_info(2, 0x1d4b570) = 0 -43928824760912:43928824761526 26045:26045 hsa_system_get_info(2, 0x1d4b578) = 0 -43928824762273:43928824762894 26045:26045 hsa_system_get_info(2, 0x1d4b580) = 0 -43928824763639:43928824764259 26045:26045 hsa_system_get_info(2, 0x1d4b588) = 0 -43928824765006:43928824765624 26045:26045 hsa_system_get_info(2, 0x1d4b590) = 0 -43928824766367:43928824766990 26045:26045 hsa_system_get_info(2, 0x1d4b598) = 0 -43928824767741:43928824768369 26045:26045 hsa_system_get_info(2, 0x1d4b5a0) = 0 -43928824769120:43928824769742 26045:26045 hsa_system_get_info(2, 0x1d4b5a8) = 0 -43928824770489:43928824771113 26045:26045 hsa_system_get_info(2, 0x1d4b5b0) = 0 -43928824771862:43928824772487 26045:26045 hsa_system_get_info(2, 0x1d4b5b8) = 0 -43928824773232:43928824773855 26045:26045 hsa_system_get_info(2, 0x1d4b5c0) = 0 -43928824774601:43928824775224 26045:26045 hsa_system_get_info(2, 0x1d4b5c8) = 0 -43928824775972:43928824776593 26045:26045 hsa_system_get_info(2, 0x1d4b5d0) = 0 -43928824777340:43928824777952 26045:26045 hsa_system_get_info(2, 0x1d4b5d8) = 0 -43928824778702:43928824779324 26045:26045 hsa_system_get_info(2, 0x1d4b5e0) = 0 -43928824780071:43928824780713 26045:26045 hsa_system_get_info(2, 0x1d4b5e8) = 0 -43928824781459:43928824782084 26045:26045 hsa_system_get_info(2, 0x1d4b5f0) = 0 -43928824782833:43928824783453 26045:26045 hsa_system_get_info(2, 0x1d4b5f8) = 0 -43928824784200:43928824784821 26045:26045 hsa_system_get_info(2, 0x1d4b600) = 0 -43928824785572:43928824786195 26045:26045 hsa_system_get_info(2, 0x1d4b608) = 0 -43928824786969:43928824787591 26045:26045 hsa_system_get_info(2, 0x1d4b610) = 0 -43928824788340:43928824788964 26045:26045 hsa_system_get_info(2, 0x1d4b618) = 0 -43928824790477:43928824791097 26045:26045 hsa_system_get_info(2, 0x1d4b620) = 0 -43928824791844:43928824792462 26045:26045 hsa_system_get_info(2, 0x1d4b628) = 0 -43928824793211:43928824793830 26045:26045 hsa_system_get_info(2, 0x1d4b630) = 0 -43928824794575:43928824795191 26045:26045 hsa_system_get_info(2, 0x1d4b638) = 0 -43928824795934:43928824796553 26045:26045 hsa_system_get_info(2, 0x1d4b640) = 0 -43928824797301:43928824797921 26045:26045 hsa_system_get_info(2, 0x1d4b648) = 0 -43928824798668:43928824799286 26045:26045 hsa_system_get_info(2, 0x1d4b650) = 0 -43928824800033:43928824800654 26045:26045 hsa_system_get_info(2, 0x1d4b658) = 0 -43928824801399:43928824802018 26045:26045 hsa_system_get_info(2, 0x1d4b660) = 0 -43928824802764:43928824803380 26045:26045 hsa_system_get_info(2, 0x1d4b668) = 0 -43928824804122:43928824804745 26045:26045 hsa_system_get_info(2, 0x1d4b670) = 0 -43928824805492:43928824806109 26045:26045 hsa_system_get_info(2, 0x1d4b678) = 0 -43928824806857:43928824807477 26045:26045 hsa_system_get_info(2, 0x1d4b680) = 0 -43928824808237:43928824808855 26045:26045 hsa_system_get_info(2, 0x1d4b688) = 0 -43928824809605:43928824810230 26045:26045 hsa_system_get_info(2, 0x1d4b690) = 0 -43928824810980:43928824811596 26045:26045 hsa_system_get_info(2, 0x1d4b698) = 0 -43928824812342:43928824812962 26045:26045 hsa_system_get_info(2, 0x1d4b6a0) = 0 -43928824813713:43928824814335 26045:26045 hsa_system_get_info(2, 0x1d4b6a8) = 0 -43928824815083:43928824815704 26045:26045 hsa_system_get_info(2, 0x1d4b6b0) = 0 -43928824816449:43928824817066 26045:26045 hsa_system_get_info(2, 0x1d4b6b8) = 0 -43928824817819:43928824818438 26045:26045 hsa_system_get_info(2, 0x1d4b6c0) = 0 -43928824819180:43928824819799 26045:26045 hsa_system_get_info(2, 0x1d4b6c8) = 0 -43928824820549:43928824821171 26045:26045 hsa_system_get_info(2, 0x1d4b6d0) = 0 -43928824821918:43928824822539 26045:26045 hsa_system_get_info(2, 0x1d4b6d8) = 0 -43928824823289:43928824823908 26045:26045 hsa_system_get_info(2, 0x1d4b6e0) = 0 -43928824824654:43928824825280 26045:26045 hsa_system_get_info(2, 0x1d4b6e8) = 0 -43928824826030:43928824826650 26045:26045 hsa_system_get_info(2, 0x1d4b6f0) = 0 -43928824827405:43928824828042 26045:26045 hsa_system_get_info(2, 0x1d4b6f8) = 0 -43928824829561:43928824830182 26045:26045 hsa_system_get_info(2, 0x1d4b700) = 0 -43928824830932:43928824831552 26045:26045 hsa_system_get_info(2, 0x1d4b708) = 0 -43928824832296:43928824832921 26045:26045 hsa_system_get_info(2, 0x1d4b710) = 0 -43928824833672:43928824834295 26045:26045 hsa_system_get_info(2, 0x1d4b718) = 0 -43928824835044:43928824835665 26045:26045 hsa_system_get_info(2, 0x1d4b720) = 0 -43928824836411:43928824837029 26045:26045 hsa_system_get_info(2, 0x1d4b728) = 0 -43928824837775:43928824838396 26045:26045 hsa_system_get_info(2, 0x1d4b730) = 0 -43928824839142:43928824839766 26045:26045 hsa_system_get_info(2, 0x1d4b738) = 0 -43928824840513:43928824841137 26045:26045 hsa_system_get_info(2, 0x1d4b740) = 0 -43928824841887:43928824842508 26045:26045 hsa_system_get_info(2, 0x1d4b748) = 0 -43928824843258:43928824843879 26045:26045 hsa_system_get_info(2, 0x1d4b750) = 0 -43928824844625:43928824845249 26045:26045 hsa_system_get_info(2, 0x1d4b758) = 0 -43928824846009:43928824846629 26045:26045 hsa_system_get_info(2, 0x1d4b760) = 0 -43928824847374:43928824848001 26045:26045 hsa_system_get_info(2, 0x1d4b768) = 0 -43928824848748:43928824849364 26045:26045 hsa_system_get_info(2, 0x1d4b770) = 0 -43928824850111:43928824850728 26045:26045 hsa_system_get_info(2, 0x1d4b778) = 0 -43928824851475:43928824852095 26045:26045 hsa_system_get_info(2, 0x1d4b780) = 0 -43928824852843:43928824853464 26045:26045 hsa_system_get_info(2, 0x1d4b788) = 0 -43928824854208:43928824854827 26045:26045 hsa_system_get_info(2, 0x1d4b790) = 0 -43928824855574:43928824856189 26045:26045 hsa_system_get_info(2, 0x1d4b798) = 0 -43928824856939:43928824857557 26045:26045 hsa_system_get_info(2, 0x1d4b7a0) = 0 -43928824858301:43928824858920 26045:26045 hsa_system_get_info(2, 0x1d4b7a8) = 0 -43928824859668:43928824860287 26045:26045 hsa_system_get_info(2, 0x1d4b7b0) = 0 -43928824861033:43928824861653 26045:26045 hsa_system_get_info(2, 0x1d4b7b8) = 0 -43928824862404:43928824863030 26045:26045 hsa_system_get_info(2, 0x1d4b7c0) = 0 -43928824863773:43928824864390 26045:26045 hsa_system_get_info(2, 0x1d4b7c8) = 0 -43928824865136:43928824865754 26045:26045 hsa_system_get_info(2, 0x1d4b7d0) = 0 -43928824866535:43928824867152 26045:26045 hsa_system_get_info(2, 0x1d4b7d8) = 0 -43928824867896:43928824868515 26045:26045 hsa_system_get_info(2, 0x1d4b7e0) = 0 -43928824869994:43928824870619 26045:26045 hsa_system_get_info(2, 0x1d4b7e8) = 0 -43928824871365:43928824871990 26045:26045 hsa_system_get_info(2, 0x1d4b7f0) = 0 -43928824872738:43928824873361 26045:26045 hsa_system_get_info(2, 0x1d4b7f8) = 0 -43928824874108:43928824874732 26045:26045 hsa_system_get_info(2, 0x1d4b800) = 0 -43928824875480:43928824876107 26045:26045 hsa_system_get_info(2, 0x1d4b808) = 0 -43928824876854:43928824877480 26045:26045 hsa_system_get_info(2, 0x1d4b810) = 0 -43928824878224:43928824878850 26045:26045 hsa_system_get_info(2, 0x1d4b818) = 0 -43928824879594:43928824880215 26045:26045 hsa_system_get_info(2, 0x1d4b820) = 0 -43928824880963:43928824881582 26045:26045 hsa_system_get_info(2, 0x1d4b828) = 0 -43928824882331:43928824882951 26045:26045 hsa_system_get_info(2, 0x1d4b830) = 0 -43928824883701:43928824884318 26045:26045 hsa_system_get_info(2, 0x1d4b838) = 0 -43928824885065:43928824885686 26045:26045 hsa_system_get_info(2, 0x1d4b840) = 0 -43928824886435:43928824887056 26045:26045 hsa_system_get_info(2, 0x1d4b848) = 0 -43928824887814:43928824888434 26045:26045 hsa_system_get_info(2, 0x1d4b850) = 0 -43928824889184:43928824889800 26045:26045 hsa_system_get_info(2, 0x1d4b858) = 0 -43928824890548:43928824891168 26045:26045 hsa_system_get_info(2, 0x1d4b860) = 0 -43928824891919:43928824892538 26045:26045 hsa_system_get_info(2, 0x1d4b868) = 0 -43928824893286:43928824893907 26045:26045 hsa_system_get_info(2, 0x1d4b870) = 0 -43928824894652:43928824895268 26045:26045 hsa_system_get_info(2, 0x1d4b878) = 0 -43928824896018:43928824896636 26045:26045 hsa_system_get_info(2, 0x1d4b880) = 0 -43928824897382:43928824897996 26045:26045 hsa_system_get_info(2, 0x1d4b888) = 0 -43928824898745:43928824899366 26045:26045 hsa_system_get_info(2, 0x1d4b890) = 0 -43928824900113:43928824900732 26045:26045 hsa_system_get_info(2, 0x1d4b898) = 0 -43928824901481:43928824902098 26045:26045 hsa_system_get_info(2, 0x1d4b8a0) = 0 -43928824902845:43928824903469 26045:26045 hsa_system_get_info(2, 0x1d4b8a8) = 0 -43928824904216:43928824904837 26045:26045 hsa_system_get_info(2, 0x1d4b8b0) = 0 -43928824905581:43928824906220 26045:26045 hsa_system_get_info(2, 0x1d4b8b8) = 0 -43928824906975:43928824907589 26045:26045 hsa_system_get_info(2, 0x1d4b8c0) = 0 -43928824909051:43928824909671 26045:26045 hsa_system_get_info(2, 0x1d4b8c8) = 0 -43928824910418:43928824911039 26045:26045 hsa_system_get_info(2, 0x1d4b8d0) = 0 -43928824911783:43928824912401 26045:26045 hsa_system_get_info(2, 0x1d4b8d8) = 0 -43928824913154:43928824913775 26045:26045 hsa_system_get_info(2, 0x1d4b8e0) = 0 -43928824914523:43928824915140 26045:26045 hsa_system_get_info(2, 0x1d4b8e8) = 0 -43928824915889:43928824916509 26045:26045 hsa_system_get_info(2, 0x1d4b8f0) = 0 -43928824917255:43928824917872 26045:26045 hsa_system_get_info(2, 0x1d4b8f8) = 0 -43928824918617:43928824919237 26045:26045 hsa_system_get_info(2, 0x1d4b900) = 0 -43928824919986:43928824920609 26045:26045 hsa_system_get_info(2, 0x1d4b908) = 0 -43928824921359:43928824921983 26045:26045 hsa_system_get_info(2, 0x1d4b910) = 0 -43928824922729:43928824923354 26045:26045 hsa_system_get_info(2, 0x1d4b918) = 0 -43928824924098:43928824924717 26045:26045 hsa_system_get_info(2, 0x1d4b920) = 0 -43928824925462:43928824926085 26045:26045 hsa_system_get_info(2, 0x1d4b928) = 0 -43928824926850:43928824927467 26045:26045 hsa_system_get_info(2, 0x1d4b930) = 0 -43928824928211:43928824928832 26045:26045 hsa_system_get_info(2, 0x1d4b938) = 0 -43928824929579:43928824930199 26045:26045 hsa_system_get_info(2, 0x1d4b940) = 0 -43928824930945:43928824931571 26045:26045 hsa_system_get_info(2, 0x1d4b948) = 0 -43928824932316:43928824932935 26045:26045 hsa_system_get_info(2, 0x1d4b950) = 0 -43928824933683:43928824934302 26045:26045 hsa_system_get_info(2, 0x1d4b958) = 0 -43928824935051:43928824935670 26045:26045 hsa_system_get_info(2, 0x1d4b960) = 0 -43928824936417:43928824937035 26045:26045 hsa_system_get_info(2, 0x1d4b968) = 0 -43928824937784:43928824938404 26045:26045 hsa_system_get_info(2, 0x1d4b970) = 0 -43928824939146:43928824939766 26045:26045 hsa_system_get_info(2, 0x1d4b978) = 0 -43928824940514:43928824941134 26045:26045 hsa_system_get_info(2, 0x1d4b980) = 0 -43928824941880:43928824942502 26045:26045 hsa_system_get_info(2, 0x1d4b988) = 0 -43928824943252:43928824943869 26045:26045 hsa_system_get_info(2, 0x1d4b990) = 0 -43928824944632:43928824945252 26045:26045 hsa_system_get_info(2, 0x1d4b998) = 0 -43928824946013:43928824946637 26045:26045 hsa_system_get_info(2, 0x1d4b9a0) = 0 -43928824947383:43928824948005 26045:26045 hsa_system_get_info(2, 0x1d4b9a8) = 0 -43928824949482:43928824950111 26045:26045 hsa_system_get_info(2, 0x1d4b9b0) = 0 -43928824950864:43928824951506 26045:26045 hsa_system_get_info(2, 0x1d4b9b8) = 0 -43928824952260:43928824952877 26045:26045 hsa_system_get_info(2, 0x1d4b9c0) = 0 -43928824953622:43928824954245 26045:26045 hsa_system_get_info(2, 0x1d4b9c8) = 0 -43928824954993:43928824955614 26045:26045 hsa_system_get_info(2, 0x1d4b9d0) = 0 -43928824956364:43928824956989 26045:26045 hsa_system_get_info(2, 0x1d4b9d8) = 0 -43928824957738:43928824958361 26045:26045 hsa_system_get_info(2, 0x1d4b9e0) = 0 -43928824959111:43928824959730 26045:26045 hsa_system_get_info(2, 0x1d4b9e8) = 0 -43928824960476:43928824961100 26045:26045 hsa_system_get_info(2, 0x1d4b9f0) = 0 -43928824961851:43928824962470 26045:26045 hsa_system_get_info(2, 0x1d4b9f8) = 0 -43928824963219:43928824963833 26045:26045 hsa_system_get_info(2, 0x1d4ba00) = 0 -43928824964581:43928824965204 26045:26045 hsa_system_get_info(2, 0x1d4ba08) = 0 -43928824965952:43928824966570 26045:26045 hsa_system_get_info(2, 0x1d4ba10) = 0 -43928824967316:43928824967939 26045:26045 hsa_system_get_info(2, 0x1d4ba18) = 0 -43928824968686:43928824969304 26045:26045 hsa_system_get_info(2, 0x1d4ba20) = 0 -43928824970050:43928824970668 26045:26045 hsa_system_get_info(2, 0x1d4ba28) = 0 -43928824971431:43928824972045 26045:26045 hsa_system_get_info(2, 0x1d4ba30) = 0 -43928824972792:43928824973415 26045:26045 hsa_system_get_info(2, 0x1d4ba38) = 0 -43928824974160:43928824974780 26045:26045 hsa_system_get_info(2, 0x1d4ba40) = 0 -43928824975526:43928824976151 26045:26045 hsa_system_get_info(2, 0x1d4ba48) = 0 -43928824976898:43928824977520 26045:26045 hsa_system_get_info(2, 0x1d4ba50) = 0 -43928824978270:43928824978890 26045:26045 hsa_system_get_info(2, 0x1d4ba58) = 0 -43928824979638:43928824980259 26045:26045 hsa_system_get_info(2, 0x1d4ba60) = 0 -43928824981008:43928824981623 26045:26045 hsa_system_get_info(2, 0x1d4ba68) = 0 -43928824982370:43928824982984 26045:26045 hsa_system_get_info(2, 0x1d4ba70) = 0 -43928824983732:43928824984353 26045:26045 hsa_system_get_info(2, 0x1d4ba78) = 0 -43928824985101:43928824985722 26045:26045 hsa_system_get_info(2, 0x1d4ba80) = 0 -43928824986472:43928824987090 26045:26045 hsa_system_get_info(2, 0x1d4ba88) = 0 -43928824988553:43928824989169 26045:26045 hsa_system_get_info(2, 0x1d4ba90) = 0 -43928824989918:43928824990542 26045:26045 hsa_system_get_info(2, 0x1d4ba98) = 0 -43928824991287:43928824991906 26045:26045 hsa_system_get_info(2, 0x1d4baa0) = 0 -43928824992649:43928824993269 26045:26045 hsa_system_get_info(2, 0x1d4baa8) = 0 -43928824994017:43928824994639 26045:26045 hsa_system_get_info(2, 0x1d4bab0) = 0 -43928824995386:43928824996002 26045:26045 hsa_system_get_info(2, 0x1d4bab8) = 0 -43928824996750:43928824997371 26045:26045 hsa_system_get_info(2, 0x1d4bac0) = 0 -43928824998119:43928824998738 26045:26045 hsa_system_get_info(2, 0x1d4bac8) = 0 -43928824999485:43928825000109 26045:26045 hsa_system_get_info(2, 0x1d4bad0) = 0 -43928825000855:43928825001479 26045:26045 hsa_system_get_info(2, 0x1d4bad8) = 0 -43928825002224:43928825002846 26045:26045 hsa_system_get_info(2, 0x1d4bae0) = 0 -43928825003593:43928825004212 26045:26045 hsa_system_get_info(2, 0x1d4bae8) = 0 -43928825004960:43928825005595 26045:26045 hsa_system_get_info(2, 0x1d4baf0) = 0 -43928825006342:43928825006959 26045:26045 hsa_system_get_info(2, 0x1d4baf8) = 0 -43928825007707:43928825008326 26045:26045 hsa_system_get_info(2, 0x1d4bb00) = 0 -43928825009073:43928825009690 26045:26045 hsa_system_get_info(2, 0x1d4bb08) = 0 -43928825010439:43928825011060 26045:26045 hsa_system_get_info(2, 0x1d4bb10) = 0 -43928825011808:43928825012425 26045:26045 hsa_system_get_info(2, 0x1d4bb18) = 0 -43928825013172:43928825013795 26045:26045 hsa_system_get_info(2, 0x1d4bb20) = 0 -43928825014542:43928825015159 26045:26045 hsa_system_get_info(2, 0x1d4bb28) = 0 -43928825015907:43928825016528 26045:26045 hsa_system_get_info(2, 0x1d4bb30) = 0 -43928825017272:43928825017899 26045:26045 hsa_system_get_info(2, 0x1d4bb38) = 0 -43928825018642:43928825019259 26045:26045 hsa_system_get_info(2, 0x1d4bb40) = 0 -43928825020006:43928825020625 26045:26045 hsa_system_get_info(2, 0x1d4bb48) = 0 -43928825021371:43928825021994 26045:26045 hsa_system_get_info(2, 0x1d4bb50) = 0 -43928825022741:43928825023363 26045:26045 hsa_system_get_info(2, 0x1d4bb58) = 0 -43928825024109:43928825024728 26045:26045 hsa_system_get_info(2, 0x1d4bb60) = 0 -43928825025495:43928825026109 26045:26045 hsa_system_get_info(2, 0x1d4bb68) = 0 -43928825026860:43928825027480 26045:26045 hsa_system_get_info(2, 0x1d4bb70) = 0 -43928825028935:43928825029559 26045:26045 hsa_system_get_info(2, 0x1d4bb78) = 0 -43928825030310:43928825030931 26045:26045 hsa_system_get_info(2, 0x1d4bb80) = 0 -43928825031677:43928825032299 26045:26045 hsa_system_get_info(2, 0x1d4bb88) = 0 -43928825033044:43928825033669 26045:26045 hsa_system_get_info(2, 0x1d4bb90) = 0 -43928825034417:43928825035034 26045:26045 hsa_system_get_info(2, 0x1d4bb98) = 0 -43928825035791:43928825036413 26045:26045 hsa_system_get_info(2, 0x1d4bba0) = 0 -43928825037161:43928825037777 26045:26045 hsa_system_get_info(2, 0x1d4bba8) = 0 -43928825038526:43928825039150 26045:26045 hsa_system_get_info(2, 0x1d4bbb0) = 0 -43928825039898:43928825040517 26045:26045 hsa_system_get_info(2, 0x1d4bbb8) = 0 -43928825041265:43928825041884 26045:26045 hsa_system_get_info(2, 0x1d4bbc0) = 0 -43928825042633:43928825043253 26045:26045 hsa_system_get_info(2, 0x1d4bbc8) = 0 -43928825043999:43928825044624 26045:26045 hsa_system_get_info(2, 0x1d4bbd0) = 0 -43928825045369:43928825045990 26045:26045 hsa_system_get_info(2, 0x1d4bbd8) = 0 -43928825046755:43928825047378 26045:26045 hsa_system_get_info(2, 0x1d4bbe0) = 0 -43928825048127:43928825048750 26045:26045 hsa_system_get_info(2, 0x1d4bbe8) = 0 -43928825049500:43928825050121 26045:26045 hsa_system_get_info(2, 0x1d4bbf0) = 0 -43928825050870:43928825051494 26045:26045 hsa_system_get_info(2, 0x1d4bbf8) = 0 -43928825052248:43928825052869 26045:26045 hsa_system_get_info(2, 0x1d4bc00) = 0 -43928825053619:43928825054244 26045:26045 hsa_system_get_info(2, 0x1d4bc08) = 0 -43928825054987:43928825055610 26045:26045 hsa_system_get_info(2, 0x1d4bc10) = 0 -43928825056355:43928825056977 26045:26045 hsa_system_get_info(2, 0x1d4bc18) = 0 -43928825057725:43928825058346 26045:26045 hsa_system_get_info(2, 0x1d4bc20) = 0 -43928825059093:43928825059709 26045:26045 hsa_system_get_info(2, 0x1d4bc28) = 0 -43928825060459:43928825061080 26045:26045 hsa_system_get_info(2, 0x1d4bc30) = 0 -43928825061829:43928825062447 26045:26045 hsa_system_get_info(2, 0x1d4bc38) = 0 -43928825063210:43928825063830 26045:26045 hsa_system_get_info(2, 0x1d4bc40) = 0 -43928825064576:43928825065191 26045:26045 hsa_system_get_info(2, 0x1d4bc48) = 0 -43928825065941:43928825066568 26045:26045 hsa_system_get_info(2, 0x1d4bc50) = 0 -43928825068028:43928825068651 26045:26045 hsa_system_get_info(2, 0x1d4bc58) = 0 -43928825069398:43928825070024 26045:26045 hsa_system_get_info(2, 0x1d4bc60) = 0 -43928825070768:43928825071380 26045:26045 hsa_system_get_info(2, 0x1d4bc68) = 0 -43928825072126:43928825072749 26045:26045 hsa_system_get_info(2, 0x1d4bc70) = 0 -43928825073496:43928825074115 26045:26045 hsa_system_get_info(2, 0x1d4bc78) = 0 -43928825074864:43928825075484 26045:26045 hsa_system_get_info(2, 0x1d4bc80) = 0 -43928825076229:43928825076849 26045:26045 hsa_system_get_info(2, 0x1d4bc88) = 0 -43928825077602:43928825078223 26045:26045 hsa_system_get_info(2, 0x1d4bc90) = 0 -43928825078970:43928825079590 26045:26045 hsa_system_get_info(2, 0x1d4bc98) = 0 -43928825080339:43928825080959 26045:26045 hsa_system_get_info(2, 0x1d4bca0) = 0 -43928825081710:43928825082328 26045:26045 hsa_system_get_info(2, 0x1d4bca8) = 0 -43928825083078:43928825083701 26045:26045 hsa_system_get_info(2, 0x1d4bcb0) = 0 -43928825084449:43928825085067 26045:26045 hsa_system_get_info(2, 0x1d4bcb8) = 0 -43928825085831:43928825086451 26045:26045 hsa_system_get_info(2, 0x1d4bcc0) = 0 -43928825087195:43928825087822 26045:26045 hsa_system_get_info(2, 0x1d4bcc8) = 0 -43928825088566:43928825089183 26045:26045 hsa_system_get_info(2, 0x1d4bcd0) = 0 -43928825089933:43928825090555 26045:26045 hsa_system_get_info(2, 0x1d4bcd8) = 0 -43928825091303:43928825091921 26045:26045 hsa_system_get_info(2, 0x1d4bce0) = 0 -43928825092666:43928825093288 26045:26045 hsa_system_get_info(2, 0x1d4bce8) = 0 -43928825094037:43928825094652 26045:26045 hsa_system_get_info(2, 0x1d4bcf0) = 0 -43928825095396:43928825096024 26045:26045 hsa_system_get_info(2, 0x1d4bcf8) = 0 -43928825096773:43928825097389 26045:26045 hsa_system_get_info(2, 0x1d4bd00) = 0 -43928825098139:43928825098758 26045:26045 hsa_system_get_info(2, 0x1d4bd08) = 0 -43928825099506:43928825100128 26045:26045 hsa_system_get_info(2, 0x1d4bd10) = 0 -43928825100875:43928825101491 26045:26045 hsa_system_get_info(2, 0x1d4bd18) = 0 -43928825102239:43928825102858 26045:26045 hsa_system_get_info(2, 0x1d4bd20) = 0 -43928825103602:43928825104222 26045:26045 hsa_system_get_info(2, 0x1d4bd28) = 0 -43928825104984:43928825105606 26045:26045 hsa_system_get_info(2, 0x1d4bd30) = 0 -43928825107069:43928825107701 26045:26045 hsa_system_get_info(2, 0x1d4bd38) = 0 -43928825108446:43928825109072 26045:26045 hsa_system_get_info(2, 0x1d4bd40) = 0 -43928825109831:43928825110456 26045:26045 hsa_system_get_info(2, 0x1d4bd48) = 0 -43928825111207:43928825111832 26045:26045 hsa_system_get_info(2, 0x1d4bd50) = 0 -43928825112580:43928825113198 26045:26045 hsa_system_get_info(2, 0x1d4bd58) = 0 -43928825113949:43928825114571 26045:26045 hsa_system_get_info(2, 0x1d4bd60) = 0 -43928825115321:43928825115949 26045:26045 hsa_system_get_info(2, 0x1d4bd68) = 0 -43928825116700:43928825117317 26045:26045 hsa_system_get_info(2, 0x1d4bd70) = 0 -43928825118066:43928825118686 26045:26045 hsa_system_get_info(2, 0x1d4bd78) = 0 -43928825119433:43928825120056 26045:26045 hsa_system_get_info(2, 0x1d4bd80) = 0 -43928825120804:43928825121429 26045:26045 hsa_system_get_info(2, 0x1d4bd88) = 0 -43928825122173:43928825122795 26045:26045 hsa_system_get_info(2, 0x1d4bd90) = 0 -43928825123543:43928825124166 26045:26045 hsa_system_get_info(2, 0x1d4bd98) = 0 -43928825124913:43928825125532 26045:26045 hsa_system_get_info(2, 0x1d4bda0) = 0 -43928825126278:43928825126900 26045:26045 hsa_system_get_info(2, 0x1d4bda8) = 0 -43928825127651:43928825128266 26045:26045 hsa_system_get_info(2, 0x1d4bdb0) = 0 -43928825129015:43928825129632 26045:26045 hsa_system_get_info(2, 0x1d4bdb8) = 0 -43928825130397:43928825131015 26045:26045 hsa_system_get_info(2, 0x1d4bdc0) = 0 -43928825131761:43928825132379 26045:26045 hsa_system_get_info(2, 0x1d4bdc8) = 0 -43928825133130:43928825133749 26045:26045 hsa_system_get_info(2, 0x1d4bdd0) = 0 -43928825134496:43928825135112 26045:26045 hsa_system_get_info(2, 0x1d4bdd8) = 0 -43928825135860:43928825136479 26045:26045 hsa_system_get_info(2, 0x1d4bde0) = 0 -43928825137228:43928825137843 26045:26045 hsa_system_get_info(2, 0x1d4bde8) = 0 -43928825138587:43928825139205 26045:26045 hsa_system_get_info(2, 0x1d4bdf0) = 0 -43928825139953:43928825140572 26045:26045 hsa_system_get_info(2, 0x1d4bdf8) = 0 -43928825141321:43928825141939 26045:26045 hsa_system_get_info(2, 0x1d4be00) = 0 -43928825142686:43928825143311 26045:26045 hsa_system_get_info(2, 0x1d4be08) = 0 -43928825144068:43928825144688 26045:26045 hsa_system_get_info(2, 0x1d4be10) = 0 -43928825145435:43928825146056 26045:26045 hsa_system_get_info(2, 0x1d4be18) = 0 -43928825148259:43928825148896 26045:26045 hsa_system_get_info(2, 0x1d4be20) = 0 -43928825149646:43928825150266 26045:26045 hsa_system_get_info(2, 0x1d4be28) = 0 -43928825151011:43928825151640 26045:26045 hsa_system_get_info(2, 0x1d4be30) = 0 -43928825152389:43928825153013 26045:26045 hsa_system_get_info(2, 0x1d4be38) = 0 -43928825153761:43928825154386 26045:26045 hsa_system_get_info(2, 0x1d4be40) = 0 -43928825155133:43928825155760 26045:26045 hsa_system_get_info(2, 0x1d4be48) = 0 -43928825156507:43928825157129 26045:26045 hsa_system_get_info(2, 0x1d4be50) = 0 -43928825157882:43928825158499 26045:26045 hsa_system_get_info(2, 0x1d4be58) = 0 -43928825159245:43928825159864 26045:26045 hsa_system_get_info(2, 0x1d4be60) = 0 -43928825160611:43928825161230 26045:26045 hsa_system_get_info(2, 0x1d4be68) = 0 -43928825161976:43928825162597 26045:26045 hsa_system_get_info(2, 0x1d4be70) = 0 -43928825163345:43928825163966 26045:26045 hsa_system_get_info(2, 0x1d4be78) = 0 -43928825164735:43928825165353 26045:26045 hsa_system_get_info(2, 0x1d4be80) = 0 -43928825166103:43928825166721 26045:26045 hsa_system_get_info(2, 0x1d4be88) = 0 -43928825167469:43928825168092 26045:26045 hsa_system_get_info(2, 0x1d4be90) = 0 -43928825168842:43928825169459 26045:26045 hsa_system_get_info(2, 0x1d4be98) = 0 -43928825170208:43928825170833 26045:26045 hsa_system_get_info(2, 0x1d4bea0) = 0 -43928825171582:43928825172203 26045:26045 hsa_system_get_info(2, 0x1d4bea8) = 0 -43928825172954:43928825173575 26045:26045 hsa_system_get_info(2, 0x1d4beb0) = 0 -43928825174325:43928825174949 26045:26045 hsa_system_get_info(2, 0x1d4beb8) = 0 -43928825175696:43928825176320 26045:26045 hsa_system_get_info(2, 0x1d4bec0) = 0 -43928825177067:43928825177690 26045:26045 hsa_system_get_info(2, 0x1d4bec8) = 0 -43928825178440:43928825179063 26045:26045 hsa_system_get_info(2, 0x1d4bed0) = 0 -43928825179812:43928825180434 26045:26045 hsa_system_get_info(2, 0x1d4bed8) = 0 -43928825181182:43928825181804 26045:26045 hsa_system_get_info(2, 0x1d4bee0) = 0 -43928825182566:43928825183188 26045:26045 hsa_system_get_info(2, 0x1d4bee8) = 0 -43928825183938:43928825184559 26045:26045 hsa_system_get_info(2, 0x1d4bef0) = 0 -43928825185311:43928825185935 26045:26045 hsa_system_get_info(2, 0x1d4bef8) = 0 -43928825187397:43928825188026 26045:26045 hsa_system_get_info(2, 0x1d4bf00) = 0 -43928825188770:43928825189392 26045:26045 hsa_system_get_info(2, 0x1d4bf08) = 0 -43928825190142:43928825190758 26045:26045 hsa_system_get_info(2, 0x1d4bf10) = 0 -43928825191504:43928825192122 26045:26045 hsa_system_get_info(2, 0x1d4bf18) = 0 -43928825192870:43928825193485 26045:26045 hsa_system_get_info(2, 0x1d4bf20) = 0 -43928825194235:43928825194855 26045:26045 hsa_system_get_info(2, 0x1d4bf28) = 0 -43928825195604:43928825196224 26045:26045 hsa_system_get_info(2, 0x1d4bf30) = 0 -43928825196971:43928825197591 26045:26045 hsa_system_get_info(2, 0x1d4bf38) = 0 -43928825198338:43928825198959 26045:26045 hsa_system_get_info(2, 0x1d4bf40) = 0 -43928825199706:43928825200326 26045:26045 hsa_system_get_info(2, 0x1d4bf48) = 0 -43928825201074:43928825201693 26045:26045 hsa_system_get_info(2, 0x1d4bf50) = 0 -43928825202440:43928825203058 26045:26045 hsa_system_get_info(2, 0x1d4bf58) = 0 -43928825203822:43928825204440 26045:26045 hsa_system_get_info(2, 0x1d4bf60) = 0 -43928825205185:43928825205807 26045:26045 hsa_system_get_info(2, 0x1d4bf68) = 0 -43928825206551:43928825207172 26045:26045 hsa_system_get_info(2, 0x1d4bf70) = 0 -43928825207920:43928825208542 26045:26045 hsa_system_get_info(2, 0x1d4bf78) = 0 -43928825209292:43928825209914 26045:26045 hsa_system_get_info(2, 0x1d4bf80) = 0 -43928825210664:43928825211290 26045:26045 hsa_system_get_info(2, 0x1d4bf88) = 0 -43928825212037:43928825212661 26045:26045 hsa_system_get_info(2, 0x1d4bf90) = 0 -43928825213404:43928825214032 26045:26045 hsa_system_get_info(2, 0x1d4bf98) = 0 -43928825214777:43928825215397 26045:26045 hsa_system_get_info(2, 0x1d4bfa0) = 0 -43928825216145:43928825216763 26045:26045 hsa_system_get_info(2, 0x1d4bfa8) = 0 -43928825217509:43928825218136 26045:26045 hsa_system_get_info(2, 0x1d4bfb0) = 0 -43928825218885:43928825219504 26045:26045 hsa_system_get_info(2, 0x1d4bfb8) = 0 -43928825220248:43928825220869 26045:26045 hsa_system_get_info(2, 0x1d4bfc0) = 0 -43928825221617:43928825222237 26045:26045 hsa_system_get_info(2, 0x1d4bfc8) = 0 -43928825222996:43928825223614 26045:26045 hsa_system_get_info(2, 0x1d4bfd0) = 0 -43928825224370:43928825224990 26045:26045 hsa_system_get_info(2, 0x1d4bfd8) = 0 -43928825225739:43928825226358 26045:26045 hsa_system_get_info(2, 0x1d4bfe0) = 0 -43928825227813:43928825228434 26045:26045 hsa_system_get_info(2, 0x1d4bfe8) = 0 -43928825229184:43928825229802 26045:26045 hsa_system_get_info(2, 0x1d4bff0) = 0 -43928825230551:43928825231171 26045:26045 hsa_system_get_info(2, 0x1d4bff8) = 0 -43928825231917:43928825232541 26045:26045 hsa_system_get_info(2, 0x1d4c000) = 0 -43928825233286:43928825233906 26045:26045 hsa_system_get_info(2, 0x1d4c008) = 0 -43928825234654:43928825235276 26045:26045 hsa_system_get_info(2, 0x1d4c010) = 0 -43928825236026:43928825236646 26045:26045 hsa_system_get_info(2, 0x1d4c018) = 0 -43928825237396:43928825238018 26045:26045 hsa_system_get_info(2, 0x1d4c020) = 0 -43928825238768:43928825239388 26045:26045 hsa_system_get_info(2, 0x1d4c028) = 0 -43928825240136:43928825240751 26045:26045 hsa_system_get_info(2, 0x1d4c030) = 0 -43928825241500:43928825242118 26045:26045 hsa_system_get_info(2, 0x1d4c038) = 0 -43928825242864:43928825243487 26045:26045 hsa_system_get_info(2, 0x1d4c040) = 0 -43928825244234:43928825244853 26045:26045 hsa_system_get_info(2, 0x1d4c048) = 0 -43928825245614:43928825246235 26045:26045 hsa_system_get_info(2, 0x1d4c050) = 0 -43928825246982:43928825247604 26045:26045 hsa_system_get_info(2, 0x1d4c058) = 0 -43928825248352:43928825248968 26045:26045 hsa_system_get_info(2, 0x1d4c060) = 0 -43928825249715:43928825250336 26045:26045 hsa_system_get_info(2, 0x1d4c068) = 0 -43928825251078:43928825251700 26045:26045 hsa_system_get_info(2, 0x1d4c070) = 0 -43928825252450:43928825253074 26045:26045 hsa_system_get_info(2, 0x1d4c078) = 0 -43928825253821:43928825254440 26045:26045 hsa_system_get_info(2, 0x1d4c080) = 0 -43928825255187:43928825255806 26045:26045 hsa_system_get_info(2, 0x1d4c088) = 0 -43928825256551:43928825257169 26045:26045 hsa_system_get_info(2, 0x1d4c090) = 0 -43928825257917:43928825258536 26045:26045 hsa_system_get_info(2, 0x1d4c098) = 0 -43928825259282:43928825259899 26045:26045 hsa_system_get_info(2, 0x1d4c0a0) = 0 -43928825260647:43928825261265 26045:26045 hsa_system_get_info(2, 0x1d4c0a8) = 0 -43928825262013:43928825262631 26045:26045 hsa_system_get_info(2, 0x1d4c0b0) = 0 -43928825263379:43928825263994 26045:26045 hsa_system_get_info(2, 0x1d4c0b8) = 0 -43928825264740:43928825265373 26045:26045 hsa_system_get_info(2, 0x1d4c0c0) = 0 -43928825267852:43928825268475 26045:26045 hsa_system_get_info(2, 0x1d4c0c8) = 0 -43928825269223:43928825269846 26045:26045 hsa_system_get_info(2, 0x1d4c0d0) = 0 -43928825270589:43928825271214 26045:26045 hsa_system_get_info(2, 0x1d4c0d8) = 0 -43928825271969:43928825272605 26045:26045 hsa_system_get_info(2, 0x1d4c0e0) = 0 -43928825273351:43928825273972 26045:26045 hsa_system_get_info(2, 0x1d4c0e8) = 0 -43928825274721:43928825275336 26045:26045 hsa_system_get_info(2, 0x1d4c0f0) = 0 -43928825276083:43928825276704 26045:26045 hsa_system_get_info(2, 0x1d4c0f8) = 0 -43928825277448:43928825278068 26045:26045 hsa_system_get_info(2, 0x1d4c100) = 0 -43928825278813:43928825279431 26045:26045 hsa_system_get_info(2, 0x1d4c108) = 0 -43928825280179:43928825280796 26045:26045 hsa_system_get_info(2, 0x1d4c110) = 0 -43928825281546:43928825282162 26045:26045 hsa_system_get_info(2, 0x1d4c118) = 0 -43928825282908:43928825283525 26045:26045 hsa_system_get_info(2, 0x1d4c120) = 0 -43928825284273:43928825284895 26045:26045 hsa_system_get_info(2, 0x1d4c128) = 0 -43928825285643:43928825286262 26045:26045 hsa_system_get_info(2, 0x1d4c130) = 0 -43928825287005:43928825287626 26045:26045 hsa_system_get_info(2, 0x1d4c138) = 0 -43928825288371:43928825288988 26045:26045 hsa_system_get_info(2, 0x1d4c140) = 0 -43928825289736:43928825290352 26045:26045 hsa_system_get_info(2, 0x1d4c148) = 0 -43928825291099:43928825291720 26045:26045 hsa_system_get_info(2, 0x1d4c150) = 0 -43928825292486:43928825293122 26045:26045 hsa_system_get_info(2, 0x1d4c158) = 0 -43928825293869:43928825294492 26045:26045 hsa_system_get_info(2, 0x1d4c160) = 0 -43928825295240:43928825295855 26045:26045 hsa_system_get_info(2, 0x1d4c168) = 0 -43928825296605:43928825297226 26045:26045 hsa_system_get_info(2, 0x1d4c170) = 0 -43928825297974:43928825298596 26045:26045 hsa_system_get_info(2, 0x1d4c178) = 0 -43928825299345:43928825299970 26045:26045 hsa_system_get_info(2, 0x1d4c180) = 0 -43928825300715:43928825301334 26045:26045 hsa_system_get_info(2, 0x1d4c188) = 0 -43928825302081:43928825302699 26045:26045 hsa_system_get_info(2, 0x1d4c190) = 0 -43928825303446:43928825304066 26045:26045 hsa_system_get_info(2, 0x1d4c198) = 0 -43928825304826:43928825305444 26045:26045 hsa_system_get_info(2, 0x1d4c1a0) = 0 -43928825306193:43928825306815 26045:26045 hsa_system_get_info(2, 0x1d4c1a8) = 0 -43928825308302:43928825308928 26045:26045 hsa_system_get_info(2, 0x1d4c1b0) = 0 -43928825309680:43928825310301 26045:26045 hsa_system_get_info(2, 0x1d4c1b8) = 0 -43928825311046:43928825311668 26045:26045 hsa_system_get_info(2, 0x1d4c1c0) = 0 -43928825312418:43928825313038 26045:26045 hsa_system_get_info(2, 0x1d4c1c8) = 0 -43928825313789:43928825314412 26045:26045 hsa_system_get_info(2, 0x1d4c1d0) = 0 -43928825315159:43928825315781 26045:26045 hsa_system_get_info(2, 0x1d4c1d8) = 0 -43928825316530:43928825317151 26045:26045 hsa_system_get_info(2, 0x1d4c1e0) = 0 -43928825317895:43928825318512 26045:26045 hsa_system_get_info(2, 0x1d4c1e8) = 0 -43928825319258:43928825319876 26045:26045 hsa_system_get_info(2, 0x1d4c1f0) = 0 -43928825320624:43928825321243 26045:26045 hsa_system_get_info(2, 0x1d4c1f8) = 0 -43928825321988:43928825322610 26045:26045 hsa_system_get_info(2, 0x1d4c200) = 0 -43928825323357:43928825323977 26045:26045 hsa_system_get_info(2, 0x1d4c208) = 0 -43928825324721:43928825325344 26045:26045 hsa_system_get_info(2, 0x1d4c210) = 0 -43928825326112:43928825326730 26045:26045 hsa_system_get_info(2, 0x1d4c218) = 0 -43928825327477:43928825328091 26045:26045 hsa_system_get_info(2, 0x1d4c220) = 0 -43928825328839:43928825329457 26045:26045 hsa_system_get_info(2, 0x1d4c228) = 0 -43928825330208:43928825330828 26045:26045 hsa_system_get_info(2, 0x1d4c230) = 0 -43928825331571:43928825332195 26045:26045 hsa_system_get_info(2, 0x1d4c238) = 0 -43928825332939:43928825333557 26045:26045 hsa_system_get_info(2, 0x1d4c240) = 0 -43928825334305:43928825334927 26045:26045 hsa_system_get_info(2, 0x1d4c248) = 0 -43928825335677:43928825336294 26045:26045 hsa_system_get_info(2, 0x1d4c250) = 0 -43928825337041:43928825337657 26045:26045 hsa_system_get_info(2, 0x1d4c258) = 0 -43928825338404:43928825339022 26045:26045 hsa_system_get_info(2, 0x1d4c260) = 0 -43928825339769:43928825340388 26045:26045 hsa_system_get_info(2, 0x1d4c268) = 0 -43928825341134:43928825341757 26045:26045 hsa_system_get_info(2, 0x1d4c270) = 0 -43928825342504:43928825343122 26045:26045 hsa_system_get_info(2, 0x1d4c278) = 0 -43928825343870:43928825344495 26045:26045 hsa_system_get_info(2, 0x1d4c280) = 0 -43928825345269:43928825345892 26045:26045 hsa_system_get_info(2, 0x1d4c288) = 0 -43928825347423:43928825348053 26045:26045 hsa_system_get_info(2, 0x1d4c290) = 0 -43928825348801:43928825349422 26045:26045 hsa_system_get_info(2, 0x1d4c298) = 0 -43928825350161:43928825350775 26045:26045 hsa_system_get_info(2, 0x1d4c2a0) = 0 -43928825351520:43928825352137 26045:26045 hsa_system_get_info(2, 0x1d4c2a8) = 0 -43928825352890:43928825353506 26045:26045 hsa_system_get_info(2, 0x1d4c2b0) = 0 -43928825354254:43928825354874 26045:26045 hsa_system_get_info(2, 0x1d4c2b8) = 0 -43928825355617:43928825356240 26045:26045 hsa_system_get_info(2, 0x1d4c2c0) = 0 -43928825356985:43928825357601 26045:26045 hsa_system_get_info(2, 0x1d4c2c8) = 0 -43928825358349:43928825358969 26045:26045 hsa_system_get_info(2, 0x1d4c2d0) = 0 -43928825359718:43928825360348 26045:26045 hsa_system_get_info(2, 0x1d4c2d8) = 0 -43928825361098:43928825361719 26045:26045 hsa_system_get_info(2, 0x1d4c2e0) = 0 -43928825362483:43928825363106 26045:26045 hsa_system_get_info(2, 0x1d4c2e8) = 0 -43928825363852:43928825364474 26045:26045 hsa_system_get_info(2, 0x1d4c2f0) = 0 -43928825365223:43928825365845 26045:26045 hsa_system_get_info(2, 0x1d4c2f8) = 0 -43928825366594:43928825367216 26045:26045 hsa_system_get_info(2, 0x1d4c300) = 0 -43928825367971:43928825368590 26045:26045 hsa_system_get_info(2, 0x1d4c308) = 0 -43928825369337:43928825369962 26045:26045 hsa_system_get_info(2, 0x1d4c310) = 0 -43928825370713:43928825371331 26045:26045 hsa_system_get_info(2, 0x1d4c318) = 0 -43928825372079:43928825372698 26045:26045 hsa_system_get_info(2, 0x1d4c320) = 0 -43928825373446:43928825374068 26045:26045 hsa_system_get_info(2, 0x1d4c328) = 0 -43928825374820:43928825375439 26045:26045 hsa_system_get_info(2, 0x1d4c330) = 0 -43928825376190:43928825376808 26045:26045 hsa_system_get_info(2, 0x1d4c338) = 0 -43928825377557:43928825378176 26045:26045 hsa_system_get_info(2, 0x1d4c340) = 0 -43928825378925:43928825379546 26045:26045 hsa_system_get_info(2, 0x1d4c348) = 0 -43928825380293:43928825380913 26045:26045 hsa_system_get_info(2, 0x1d4c350) = 0 -43928825381662:43928825382282 26045:26045 hsa_system_get_info(2, 0x1d4c358) = 0 -43928825383043:43928825383661 26045:26045 hsa_system_get_info(2, 0x1d4c360) = 0 -43928825384413:43928825385032 26045:26045 hsa_system_get_info(2, 0x1d4c368) = 0 -43928825385776:43928825386395 26045:26045 hsa_system_get_info(2, 0x1d4c370) = 0 -43928825387936:43928825388564 26045:26045 hsa_system_get_info(2, 0x1d4c378) = 0 -43928825389316:43928825389933 26045:26045 hsa_system_get_info(2, 0x1d4c380) = 0 -43928825390677:43928825391290 26045:26045 hsa_system_get_info(2, 0x1d4c388) = 0 -43928825392036:43928825392657 26045:26045 hsa_system_get_info(2, 0x1d4c390) = 0 -43928825393405:43928825394017 26045:26045 hsa_system_get_info(2, 0x1d4c398) = 0 -43928825394767:43928825395386 26045:26045 hsa_system_get_info(2, 0x1d4c3a0) = 0 -43928825396135:43928825396751 26045:26045 hsa_system_get_info(2, 0x1d4c3a8) = 0 -43928825397499:43928825398118 26045:26045 hsa_system_get_info(2, 0x1d4c3b0) = 0 -43928825398863:43928825399483 26045:26045 hsa_system_get_info(2, 0x1d4c3b8) = 0 -43928825400231:43928825400845 26045:26045 hsa_system_get_info(2, 0x1d4c3c0) = 0 -43928825401593:43928825402212 26045:26045 hsa_system_get_info(2, 0x1d4c3c8) = 0 -43928825402957:43928825403574 26045:26045 hsa_system_get_info(2, 0x1d4c3d0) = 0 -43928825404323:43928825404942 26045:26045 hsa_system_get_info(2, 0x1d4c3d8) = 0 -43928825405686:43928825406309 26045:26045 hsa_system_get_info(2, 0x1d4c3e0) = 0 -43928825407074:43928825407695 26045:26045 hsa_system_get_info(2, 0x1d4c3e8) = 0 -43928825408444:43928825409067 26045:26045 hsa_system_get_info(2, 0x1d4c3f0) = 0 -43928825409815:43928825410434 26045:26045 hsa_system_get_info(2, 0x1d4c3f8) = 0 -43928825411180:43928825411798 26045:26045 hsa_system_get_info(2, 0x1d4c400) = 0 -43928825412546:43928825413161 26045:26045 hsa_system_get_info(2, 0x1d4c408) = 0 -43928825413910:43928825414523 26045:26045 hsa_system_get_info(2, 0x1d4c410) = 0 -43928825415269:43928825415887 26045:26045 hsa_system_get_info(2, 0x1d4c418) = 0 -43928825416634:43928825417257 26045:26045 hsa_system_get_info(2, 0x1d4c420) = 0 -43928825418003:43928825418621 26045:26045 hsa_system_get_info(2, 0x1d4c428) = 0 -43928825419365:43928825419981 26045:26045 hsa_system_get_info(2, 0x1d4c430) = 0 -43928825420731:43928825421347 26045:26045 hsa_system_get_info(2, 0x1d4c438) = 0 -43928825422096:43928825422715 26045:26045 hsa_system_get_info(2, 0x1d4c440) = 0 -43928825423464:43928825424088 26045:26045 hsa_system_get_info(2, 0x1d4c448) = 0 -43928825424837:43928825425476 26045:26045 hsa_system_get_info(2, 0x1d4c450) = 0 -43928825426970:43928825427599 26045:26045 hsa_system_get_info(2, 0x1d4c458) = 0 -43928825428345:43928825428962 26045:26045 hsa_system_get_info(2, 0x1d4c460) = 0 -43928825429707:43928825430326 26045:26045 hsa_system_get_info(2, 0x1d4c468) = 0 -43928825431070:43928825431689 26045:26045 hsa_system_get_info(2, 0x1d4c470) = 0 -43928825432438:43928825433052 26045:26045 hsa_system_get_info(2, 0x1d4c478) = 0 -43928825433800:43928825434415 26045:26045 hsa_system_get_info(2, 0x1d4c480) = 0 -43928825435162:43928825435783 26045:26045 hsa_system_get_info(2, 0x1d4c488) = 0 -43928825436525:43928825437145 26045:26045 hsa_system_get_info(2, 0x1d4c490) = 0 -43928825437893:43928825438510 26045:26045 hsa_system_get_info(2, 0x1d4c498) = 0 -43928825439253:43928825439876 26045:26045 hsa_system_get_info(2, 0x1d4c4a0) = 0 -43928825440625:43928825441245 26045:26045 hsa_system_get_info(2, 0x1d4c4a8) = 0 -43928825441988:43928825442609 26045:26045 hsa_system_get_info(2, 0x1d4c4b0) = 0 -43928825443365:43928825443989 26045:26045 hsa_system_get_info(2, 0x1d4c4b8) = 0 -43928825444734:43928825445374 26045:26045 hsa_system_get_info(2, 0x1d4c4c0) = 0 -43928825446121:43928825446742 26045:26045 hsa_system_get_info(2, 0x1d4c4c8) = 0 -43928825447487:43928825448108 26045:26045 hsa_system_get_info(2, 0x1d4c4d0) = 0 -43928825448856:43928825449480 26045:26045 hsa_system_get_info(2, 0x1d4c4d8) = 0 -43928825450230:43928825450850 26045:26045 hsa_system_get_info(2, 0x1d4c4e0) = 0 -43928825451600:43928825452221 26045:26045 hsa_system_get_info(2, 0x1d4c4e8) = 0 -43928825452970:43928825453588 26045:26045 hsa_system_get_info(2, 0x1d4c4f0) = 0 -43928825454335:43928825454962 26045:26045 hsa_system_get_info(2, 0x1d4c4f8) = 0 -43928825455713:43928825456334 26045:26045 hsa_system_get_info(2, 0x1d4c500) = 0 -43928825457083:43928825457706 26045:26045 hsa_system_get_info(2, 0x1d4c508) = 0 -43928825458456:43928825459076 26045:26045 hsa_system_get_info(2, 0x1d4c510) = 0 -43928825459825:43928825460448 26045:26045 hsa_system_get_info(2, 0x1d4c518) = 0 -43928825461193:43928825461810 26045:26045 hsa_system_get_info(2, 0x1d4c520) = 0 -43928825462556:43928825463176 26045:26045 hsa_system_get_info(2, 0x1d4c528) = 0 -43928825463925:43928825464546 26045:26045 hsa_system_get_info(2, 0x1d4c530) = 0 -43928825466100:43928825466728 26045:26045 hsa_system_get_info(2, 0x1d4c538) = 0 -43928825467474:43928825468098 26045:26045 hsa_system_get_info(2, 0x1d4c540) = 0 -43928825468841:43928825469464 26045:26045 hsa_system_get_info(2, 0x1d4c548) = 0 -43928825470211:43928825470834 26045:26045 hsa_system_get_info(2, 0x1d4c550) = 0 -43928825471584:43928825472211 26045:26045 hsa_system_get_info(2, 0x1d4c558) = 0 -43928825472959:43928825473582 26045:26045 hsa_system_get_info(2, 0x1d4c560) = 0 -43928825474327:43928825474950 26045:26045 hsa_system_get_info(2, 0x1d4c568) = 0 -43928825475696:43928825476321 26045:26045 hsa_system_get_info(2, 0x1d4c570) = 0 -43928825477069:43928825477693 26045:26045 hsa_system_get_info(2, 0x1d4c578) = 0 -43928825478443:43928825479065 26045:26045 hsa_system_get_info(2, 0x1d4c580) = 0 -43928825479816:43928825480437 26045:26045 hsa_system_get_info(2, 0x1d4c588) = 0 -43928825481184:43928825481802 26045:26045 hsa_system_get_info(2, 0x1d4c590) = 0 -43928825482547:43928825483165 26045:26045 hsa_system_get_info(2, 0x1d4c598) = 0 -43928825483910:43928825484548 26045:26045 hsa_system_get_info(2, 0x1d4c5a0) = 0 -43928825485298:43928825485918 26045:26045 hsa_system_get_info(2, 0x1d4c5a8) = 0 -43928825486662:43928825487282 26045:26045 hsa_system_get_info(2, 0x1d4c5b0) = 0 -43928825488028:43928825488650 26045:26045 hsa_system_get_info(2, 0x1d4c5b8) = 0 -43928825489395:43928825490016 26045:26045 hsa_system_get_info(2, 0x1d4c5c0) = 0 -43928825490764:43928825491391 26045:26045 hsa_system_get_info(2, 0x1d4c5c8) = 0 -43928825492136:43928825492758 26045:26045 hsa_system_get_info(2, 0x1d4c5d0) = 0 -43928825493507:43928825494133 26045:26045 hsa_system_get_info(2, 0x1d4c5d8) = 0 -43928825494884:43928825495504 26045:26045 hsa_system_get_info(2, 0x1d4c5e0) = 0 -43928825496250:43928825496873 26045:26045 hsa_system_get_info(2, 0x1d4c5e8) = 0 -43928825497620:43928825498238 26045:26045 hsa_system_get_info(2, 0x1d4c5f0) = 0 -43928825498987:43928825499606 26045:26045 hsa_system_get_info(2, 0x1d4c5f8) = 0 -43928825500352:43928825500970 26045:26045 hsa_system_get_info(2, 0x1d4c600) = 0 -43928825501718:43928825502337 26045:26045 hsa_system_get_info(2, 0x1d4c608) = 0 -43928825503111:43928825503727 26045:26045 hsa_system_get_info(2, 0x1d4c610) = 0 -43928825504492:43928825505110 26045:26045 hsa_system_get_info(2, 0x1d4c618) = 0 -43928825506652:43928825507274 26045:26045 hsa_system_get_info(2, 0x1d4c620) = 0 -43928825508021:43928825508636 26045:26045 hsa_system_get_info(2, 0x1d4c628) = 0 -43928825509384:43928825509996 26045:26045 hsa_system_get_info(2, 0x1d4c630) = 0 -43928825510747:43928825511362 26045:26045 hsa_system_get_info(2, 0x1d4c638) = 0 -43928825512104:43928825512725 26045:26045 hsa_system_get_info(2, 0x1d4c640) = 0 -43928825513473:43928825514090 26045:26045 hsa_system_get_info(2, 0x1d4c648) = 0 -43928825514836:43928825515455 26045:26045 hsa_system_get_info(2, 0x1d4c650) = 0 -43928825516200:43928825516820 26045:26045 hsa_system_get_info(2, 0x1d4c658) = 0 -43928825517569:43928825518188 26045:26045 hsa_system_get_info(2, 0x1d4c660) = 0 -43928825518931:43928825519549 26045:26045 hsa_system_get_info(2, 0x1d4c668) = 0 -43928825520297:43928825520911 26045:26045 hsa_system_get_info(2, 0x1d4c670) = 0 -43928825521658:43928825522274 26045:26045 hsa_system_get_info(2, 0x1d4c678) = 0 -43928825523021:43928825523640 26045:26045 hsa_system_get_info(2, 0x1d4c680) = 0 -43928825524385:43928825525002 26045:26045 hsa_system_get_info(2, 0x1d4c688) = 0 -43928825525764:43928825526387 26045:26045 hsa_system_get_info(2, 0x1d4c690) = 0 -43928825527131:43928825527752 26045:26045 hsa_system_get_info(2, 0x1d4c698) = 0 -43928825528498:43928825529117 26045:26045 hsa_system_get_info(2, 0x1d4c6a0) = 0 -43928825529859:43928825530477 26045:26045 hsa_system_get_info(2, 0x1d4c6a8) = 0 -43928825531223:43928825531847 26045:26045 hsa_system_get_info(2, 0x1d4c6b0) = 0 -43928825532590:43928825533210 26045:26045 hsa_system_get_info(2, 0x1d4c6b8) = 0 -43928825533956:43928825534578 26045:26045 hsa_system_get_info(2, 0x1d4c6c0) = 0 -43928825535325:43928825535941 26045:26045 hsa_system_get_info(2, 0x1d4c6c8) = 0 -43928825536688:43928825537301 26045:26045 hsa_system_get_info(2, 0x1d4c6d0) = 0 -43928825538047:43928825538669 26045:26045 hsa_system_get_info(2, 0x1d4c6d8) = 0 -43928825539418:43928825540035 26045:26045 hsa_system_get_info(2, 0x1d4c6e0) = 0 -43928825540785:43928825541404 26045:26045 hsa_system_get_info(2, 0x1d4c6e8) = 0 -43928825542152:43928825542769 26045:26045 hsa_system_get_info(2, 0x1d4c6f0) = 0 -43928825543524:43928825544158 26045:26045 hsa_system_get_info(2, 0x1d4c6f8) = 0 -43928825545639:43928825546267 26045:26045 hsa_system_get_info(2, 0x1d4c700) = 0 -43928825547018:43928825547637 26045:26045 hsa_system_get_info(2, 0x1d4c708) = 0 -43928825548387:43928825549009 26045:26045 hsa_system_get_info(2, 0x1d4c710) = 0 -43928825549755:43928825550374 26045:26045 hsa_system_get_info(2, 0x1d4c718) = 0 -43928825551119:43928825551741 26045:26045 hsa_system_get_info(2, 0x1d4c720) = 0 -43928825552488:43928825553099 26045:26045 hsa_system_get_info(2, 0x1d4c728) = 0 -43928825553842:43928825554464 26045:26045 hsa_system_get_info(2, 0x1d4c730) = 0 -43928825555213:43928825555840 26045:26045 hsa_system_get_info(2, 0x1d4c738) = 0 -43928825556583:43928825557209 26045:26045 hsa_system_get_info(2, 0x1d4c740) = 0 -43928825557956:43928825558576 26045:26045 hsa_system_get_info(2, 0x1d4c748) = 0 -43928825559325:43928825559947 26045:26045 hsa_system_get_info(2, 0x1d4c750) = 0 -43928825560695:43928825561320 26045:26045 hsa_system_get_info(2, 0x1d4c758) = 0 -43928825562066:43928825562684 26045:26045 hsa_system_get_info(2, 0x1d4c760) = 0 -43928825563433:43928825564056 26045:26045 hsa_system_get_info(2, 0x1d4c768) = 0 -43928825564803:43928825565422 26045:26045 hsa_system_get_info(2, 0x1d4c770) = 0 -43928825566180:43928825566808 26045:26045 hsa_system_get_info(2, 0x1d4c778) = 0 -43928825567558:43928825568179 26045:26045 hsa_system_get_info(2, 0x1d4c780) = 0 -43928825568930:43928825569557 26045:26045 hsa_system_get_info(2, 0x1d4c788) = 0 -43928825570302:43928825570919 26045:26045 hsa_system_get_info(2, 0x1d4c790) = 0 -43928825571670:43928825572289 26045:26045 hsa_system_get_info(2, 0x1d4c798) = 0 -43928825573034:43928825573652 26045:26045 hsa_system_get_info(2, 0x1d4c7a0) = 0 -43928825574399:43928825575022 26045:26045 hsa_system_get_info(2, 0x1d4c7a8) = 0 -43928825575770:43928825576392 26045:26045 hsa_system_get_info(2, 0x1d4c7b0) = 0 -43928825577137:43928825577761 26045:26045 hsa_system_get_info(2, 0x1d4c7b8) = 0 -43928825578513:43928825579133 26045:26045 hsa_system_get_info(2, 0x1d4c7c0) = 0 -43928825579882:43928825580502 26045:26045 hsa_system_get_info(2, 0x1d4c7c8) = 0 -43928825581247:43928825581864 26045:26045 hsa_system_get_info(2, 0x1d4c7d0) = 0 -43928825582628:43928825583244 26045:26045 hsa_system_get_info(2, 0x1d4c7d8) = 0 -43928825584004:43928825584625 26045:26045 hsa_system_get_info(2, 0x1d4c7e0) = 0 -43928825586109:43928825586736 26045:26045 hsa_system_get_info(2, 0x1d4c7e8) = 0 -43928825587480:43928825588099 26045:26045 hsa_system_get_info(2, 0x1d4c7f0) = 0 -43928825588847:43928825589469 26045:26045 hsa_system_get_info(2, 0x1d4c7f8) = 0 -43928825590219:43928825590838 26045:26045 hsa_system_get_info(2, 0x1d4c800) = 0 -43928825591583:43928825592204 26045:26045 hsa_system_get_info(2, 0x1d4c808) = 0 -43928825592952:43928825593574 26045:26045 hsa_system_get_info(2, 0x1d4c810) = 0 -43928825594325:43928825594946 26045:26045 hsa_system_get_info(2, 0x1d4c818) = 0 -43928825595694:43928825596314 26045:26045 hsa_system_get_info(2, 0x1d4c820) = 0 -43928825597063:43928825597685 26045:26045 hsa_system_get_info(2, 0x1d4c828) = 0 -43928825598429:43928825599046 26045:26045 hsa_system_get_info(2, 0x1d4c830) = 0 -43928825599796:43928825600414 26045:26045 hsa_system_get_info(2, 0x1d4c838) = 0 -43928825601160:43928825601776 26045:26045 hsa_system_get_info(2, 0x1d4c840) = 0 -43928825602520:43928825603139 26045:26045 hsa_system_get_info(2, 0x1d4c848) = 0 -43928825603885:43928825604522 26045:26045 hsa_system_get_info(2, 0x1d4c850) = 0 -43928825605266:43928825605883 26045:26045 hsa_system_get_info(2, 0x1d4c858) = 0 -43928825606631:43928825607257 26045:26045 hsa_system_get_info(2, 0x1d4c860) = 0 -43928825607999:43928825608618 26045:26045 hsa_system_get_info(2, 0x1d4c868) = 0 -43928825609364:43928825609983 26045:26045 hsa_system_get_info(2, 0x1d4c870) = 0 -43928825610730:43928825611349 26045:26045 hsa_system_get_info(2, 0x1d4c878) = 0 -43928825612094:43928825612715 26045:26045 hsa_system_get_info(2, 0x1d4c880) = 0 -43928825613463:43928825614080 26045:26045 hsa_system_get_info(2, 0x1d4c888) = 0 -43928825614828:43928825615452 26045:26045 hsa_system_get_info(2, 0x1d4c890) = 0 -43928825616199:43928825616815 26045:26045 hsa_system_get_info(2, 0x1d4c898) = 0 -43928825617566:43928825618184 26045:26045 hsa_system_get_info(2, 0x1d4c8a0) = 0 -43928825618934:43928825619554 26045:26045 hsa_system_get_info(2, 0x1d4c8a8) = 0 -43928825620301:43928825620919 26045:26045 hsa_system_get_info(2, 0x1d4c8b0) = 0 -43928825621668:43928825622287 26045:26045 hsa_system_get_info(2, 0x1d4c8b8) = 0 -43928825623039:43928825623658 26045:26045 hsa_system_get_info(2, 0x1d4c8c0) = 0 -43928825625129:43928825625762 26045:26045 hsa_system_get_info(2, 0x1d4c8c8) = 0 -43928825626510:43928825627133 26045:26045 hsa_system_get_info(2, 0x1d4c8d0) = 0 -43928825627881:43928825628499 26045:26045 hsa_system_get_info(2, 0x1d4c8d8) = 0 -43928825629250:43928825629870 26045:26045 hsa_system_get_info(2, 0x1d4c8e0) = 0 -43928825630616:43928825631243 26045:26045 hsa_system_get_info(2, 0x1d4c8e8) = 0 -43928825631991:43928825632609 26045:26045 hsa_system_get_info(2, 0x1d4c8f0) = 0 -43928825633355:43928825633976 26045:26045 hsa_system_get_info(2, 0x1d4c8f8) = 0 -43928825634724:43928825635343 26045:26045 hsa_system_get_info(2, 0x1d4c900) = 0 -43928825636093:43928825636709 26045:26045 hsa_system_get_info(2, 0x1d4c908) = 0 -43928825637456:43928825638078 26045:26045 hsa_system_get_info(2, 0x1d4c910) = 0 -43928825638822:43928825639447 26045:26045 hsa_system_get_info(2, 0x1d4c918) = 0 -43928825640191:43928825640812 26045:26045 hsa_system_get_info(2, 0x1d4c920) = 0 -43928825641558:43928825642183 26045:26045 hsa_system_get_info(2, 0x1d4c928) = 0 -43928825642930:43928825643569 26045:26045 hsa_system_get_info(2, 0x1d4c930) = 0 -43928825644314:43928825644933 26045:26045 hsa_system_get_info(2, 0x1d4c938) = 0 -43928825645680:43928825646299 26045:26045 hsa_system_get_info(2, 0x1d4c940) = 0 -43928825647044:43928825647666 26045:26045 hsa_system_get_info(2, 0x1d4c948) = 0 -43928825648420:43928825649045 26045:26045 hsa_system_get_info(2, 0x1d4c950) = 0 -43928825649796:43928825650409 26045:26045 hsa_system_get_info(2, 0x1d4c958) = 0 -43928825651156:43928825651779 26045:26045 hsa_system_get_info(2, 0x1d4c960) = 0 -43928825652525:43928825653143 26045:26045 hsa_system_get_info(2, 0x1d4c968) = 0 -43928825653889:43928825654506 26045:26045 hsa_system_get_info(2, 0x1d4c970) = 0 -43928825655254:43928825655868 26045:26045 hsa_system_get_info(2, 0x1d4c978) = 0 -43928825656616:43928825657245 26045:26045 hsa_system_get_info(2, 0x1d4c980) = 0 -43928825657993:43928825658617 26045:26045 hsa_system_get_info(2, 0x1d4c988) = 0 -43928825659361:43928825659978 26045:26045 hsa_system_get_info(2, 0x1d4c990) = 0 -43928825660724:43928825661343 26045:26045 hsa_system_get_info(2, 0x1d4c998) = 0 -43928825662091:43928825662728 26045:26045 hsa_system_get_info(2, 0x1d4c9a0) = 0 -43928825663475:43928825664097 26045:26045 hsa_system_get_info(2, 0x1d4c9a8) = 0 -43928825665585:43928825666205 26045:26045 hsa_system_get_info(2, 0x1d4c9b0) = 0 -43928825666957:43928825667576 26045:26045 hsa_system_get_info(2, 0x1d4c9b8) = 0 -43928825668322:43928825668944 26045:26045 hsa_system_get_info(2, 0x1d4c9c0) = 0 -43928825669690:43928825670307 26045:26045 hsa_system_get_info(2, 0x1d4c9c8) = 0 -43928825671053:43928825671669 26045:26045 hsa_system_get_info(2, 0x1d4c9d0) = 0 -43928825672414:43928825673034 26045:26045 hsa_system_get_info(2, 0x1d4c9d8) = 0 -43928825673781:43928825674399 26045:26045 hsa_system_get_info(2, 0x1d4c9e0) = 0 -43928825675147:43928825675768 26045:26045 hsa_system_get_info(2, 0x1d4c9e8) = 0 -43928825676512:43928825677131 26045:26045 hsa_system_get_info(2, 0x1d4c9f0) = 0 -43928825677879:43928825678499 26045:26045 hsa_system_get_info(2, 0x1d4c9f8) = 0 -43928825679245:43928825679862 26045:26045 hsa_system_get_info(2, 0x1d4ca00) = 0 -43928825680609:43928825681233 26045:26045 hsa_system_get_info(2, 0x1d4ca08) = 0 -43928825681979:43928825682604 26045:26045 hsa_system_get_info(2, 0x1d4ca10) = 0 -43928825683351:43928825683992 26045:26045 hsa_system_get_info(2, 0x1d4ca18) = 0 -43928825684741:43928825685363 26045:26045 hsa_system_get_info(2, 0x1d4ca20) = 0 -43928825686128:43928825686746 26045:26045 hsa_system_get_info(2, 0x1d4ca28) = 0 -43928825687488:43928825688114 26045:26045 hsa_system_get_info(2, 0x1d4ca30) = 0 -43928825688858:43928825689480 26045:26045 hsa_system_get_info(2, 0x1d4ca38) = 0 -43928825690228:43928825690856 26045:26045 hsa_system_get_info(2, 0x1d4ca40) = 0 -43928825691602:43928825692227 26045:26045 hsa_system_get_info(2, 0x1d4ca48) = 0 -43928825692977:43928825693597 26045:26045 hsa_system_get_info(2, 0x1d4ca50) = 0 -43928825694344:43928825694962 26045:26045 hsa_system_get_info(2, 0x1d4ca58) = 0 -43928825695710:43928825696330 26045:26045 hsa_system_get_info(2, 0x1d4ca60) = 0 -43928825697079:43928825697698 26045:26045 hsa_system_get_info(2, 0x1d4ca68) = 0 -43928825698446:43928825699069 26045:26045 hsa_system_get_info(2, 0x1d4ca70) = 0 -43928825699836:43928825700457 26045:26045 hsa_system_get_info(2, 0x1d4ca78) = 0 -43928825701211:43928825701832 26045:26045 hsa_system_get_info(2, 0x1d4ca80) = 0 -43928825702584:43928825703203 26045:26045 hsa_system_get_info(2, 0x1d4ca88) = 0 -43928825705260:43928825705893 26045:26045 hsa_system_get_info(2, 0x1d4ca90) = 0 -43928825706641:43928825707275 26045:26045 hsa_system_get_info(2, 0x1d4ca98) = 0 -43928825708021:43928825708648 26045:26045 hsa_system_get_info(2, 0x1d4caa0) = 0 -43928825709399:43928825710017 26045:26045 hsa_system_get_info(2, 0x1d4caa8) = 0 -43928825710766:43928825711388 26045:26045 hsa_system_get_info(2, 0x1d4cab0) = 0 -43928825712142:43928825712765 26045:26045 hsa_system_get_info(2, 0x1d4cab8) = 0 -43928825713511:43928825714130 26045:26045 hsa_system_get_info(2, 0x1d4cac0) = 0 -43928825714875:43928825715496 26045:26045 hsa_system_get_info(2, 0x1d4cac8) = 0 -43928825716245:43928825716865 26045:26045 hsa_system_get_info(2, 0x1d4cad0) = 0 -43928825717613:43928825718230 26045:26045 hsa_system_get_info(2, 0x1d4cad8) = 0 -43928825718975:43928825719593 26045:26045 hsa_system_get_info(2, 0x1d4cae0) = 0 -43928825720358:43928825720977 26045:26045 hsa_system_get_info(2, 0x1d4cae8) = 0 -43928825721722:43928825722339 26045:26045 hsa_system_get_info(2, 0x1d4caf0) = 0 -43928825723087:43928825723708 26045:26045 hsa_system_get_info(2, 0x1d4caf8) = 0 -43928825724456:43928825725077 26045:26045 hsa_system_get_info(2, 0x1d4cb00) = 0 -43928825725826:43928825726447 26045:26045 hsa_system_get_info(2, 0x1d4cb08) = 0 -43928825727191:43928825727812 26045:26045 hsa_system_get_info(2, 0x1d4cb10) = 0 -43928825728560:43928825729178 26045:26045 hsa_system_get_info(2, 0x1d4cb18) = 0 -43928825729924:43928825730542 26045:26045 hsa_system_get_info(2, 0x1d4cb20) = 0 -43928825731291:43928825731914 26045:26045 hsa_system_get_info(2, 0x1d4cb28) = 0 -43928825732660:43928825733281 26045:26045 hsa_system_get_info(2, 0x1d4cb30) = 0 -43928825734031:43928825734646 26045:26045 hsa_system_get_info(2, 0x1d4cb38) = 0 -43928825735393:43928825736012 26045:26045 hsa_system_get_info(2, 0x1d4cb40) = 0 -43928825736758:43928825737379 26045:26045 hsa_system_get_info(2, 0x1d4cb48) = 0 -43928825738126:43928825738749 26045:26045 hsa_system_get_info(2, 0x1d4cb50) = 0 -43928825739510:43928825740127 26045:26045 hsa_system_get_info(2, 0x1d4cb58) = 0 -43928825740876:43928825741494 26045:26045 hsa_system_get_info(2, 0x1d4cb60) = 0 -43928825742249:43928825742868 26045:26045 hsa_system_get_info(2, 0x1d4cb68) = 0 -43928825743616:43928825744232 26045:26045 hsa_system_get_info(2, 0x1d4cb70) = 0 -43928825745823:43928825746451 26045:26045 hsa_system_get_info(2, 0x1d4cb78) = 0 -43928825747199:43928825747822 26045:26045 hsa_system_get_info(2, 0x1d4cb80) = 0 -43928825748569:43928825749185 26045:26045 hsa_system_get_info(2, 0x1d4cb88) = 0 -43928825749929:43928825750545 26045:26045 hsa_system_get_info(2, 0x1d4cb90) = 0 -43928825751292:43928825751905 26045:26045 hsa_system_get_info(2, 0x1d4cb98) = 0 -43928825752656:43928825753275 26045:26045 hsa_system_get_info(2, 0x1d4cba0) = 0 -43928825754023:43928825754645 26045:26045 hsa_system_get_info(2, 0x1d4cba8) = 0 -43928825755386:43928825756008 26045:26045 hsa_system_get_info(2, 0x1d4cbb0) = 0 -43928825756757:43928825757376 26045:26045 hsa_system_get_info(2, 0x1d4cbb8) = 0 -43928825758120:43928825758741 26045:26045 hsa_system_get_info(2, 0x1d4cbc0) = 0 -43928825759489:43928825760116 26045:26045 hsa_system_get_info(2, 0x1d4cbc8) = 0 -43928825760866:43928825761488 26045:26045 hsa_system_get_info(2, 0x1d4cbd0) = 0 -43928825762236:43928825762857 26045:26045 hsa_system_get_info(2, 0x1d4cbd8) = 0 -43928825763602:43928825764222 26045:26045 hsa_system_get_info(2, 0x1d4cbe0) = 0 -43928825764985:43928825765610 26045:26045 hsa_system_get_info(2, 0x1d4cbe8) = 0 -43928825766360:43928825766974 26045:26045 hsa_system_get_info(2, 0x1d4cbf0) = 0 -43928825767723:43928825768343 26045:26045 hsa_system_get_info(2, 0x1d4cbf8) = 0 -43928825769091:43928825769712 26045:26045 hsa_system_get_info(2, 0x1d4cc00) = 0 -43928825770460:43928825771078 26045:26045 hsa_system_get_info(2, 0x1d4cc08) = 0 -43928825771827:43928825772445 26045:26045 hsa_system_get_info(2, 0x1d4cc10) = 0 -43928825773194:43928825773815 26045:26045 hsa_system_get_info(2, 0x1d4cc18) = 0 -43928825774557:43928825775181 26045:26045 hsa_system_get_info(2, 0x1d4cc20) = 0 -43928825775928:43928825776548 26045:26045 hsa_system_get_info(2, 0x1d4cc28) = 0 -43928825777290:43928825777908 26045:26045 hsa_system_get_info(2, 0x1d4cc30) = 0 -43928825778655:43928825779273 26045:26045 hsa_system_get_info(2, 0x1d4cc38) = 0 -43928825780020:43928825780639 26045:26045 hsa_system_get_info(2, 0x1d4cc40) = 0 -43928825781387:43928825782008 26045:26045 hsa_system_get_info(2, 0x1d4cc48) = 0 -43928825782754:43928825783392 26045:26045 hsa_system_get_info(2, 0x1d4cc50) = 0 -43928825784931:43928825785555 26045:26045 hsa_system_get_info(2, 0x1d4cc58) = 0 -43928825786305:43928825786926 26045:26045 hsa_system_get_info(2, 0x1d4cc60) = 0 -43928825787674:43928825788294 26045:26045 hsa_system_get_info(2, 0x1d4cc68) = 0 -43928825789041:43928825789663 26045:26045 hsa_system_get_info(2, 0x1d4cc70) = 0 -43928825790412:43928825791029 26045:26045 hsa_system_get_info(2, 0x1d4cc78) = 0 -43928825791778:43928825792400 26045:26045 hsa_system_get_info(2, 0x1d4cc80) = 0 -43928825793148:43928825793771 26045:26045 hsa_system_get_info(2, 0x1d4cc88) = 0 -43928825794519:43928825795136 26045:26045 hsa_system_get_info(2, 0x1d4cc90) = 0 -43928825795880:43928825796499 26045:26045 hsa_system_get_info(2, 0x1d4cc98) = 0 -43928825797247:43928825797866 26045:26045 hsa_system_get_info(2, 0x1d4cca0) = 0 -43928825798614:43928825799234 26045:26045 hsa_system_get_info(2, 0x1d4cca8) = 0 -43928825799978:43928825800600 26045:26045 hsa_system_get_info(2, 0x1d4ccb0) = 0 -43928825801344:43928825801963 26045:26045 hsa_system_get_info(2, 0x1d4ccb8) = 0 -43928825802711:43928825803353 26045:26045 hsa_system_get_info(2, 0x1d4ccc0) = 0 -43928825804100:43928825804720 26045:26045 hsa_system_get_info(2, 0x1d4ccc8) = 0 -43928825805466:43928825806088 26045:26045 hsa_system_get_info(2, 0x1d4ccd0) = 0 -43928825806837:43928825807455 26045:26045 hsa_system_get_info(2, 0x1d4ccd8) = 0 -43928825808202:43928825808823 26045:26045 hsa_system_get_info(2, 0x1d4cce0) = 0 -43928825809569:43928825810188 26045:26045 hsa_system_get_info(2, 0x1d4cce8) = 0 -43928825810935:43928825811561 26045:26045 hsa_system_get_info(2, 0x1d4ccf0) = 0 -43928825812310:43928825812926 26045:26045 hsa_system_get_info(2, 0x1d4ccf8) = 0 -43928825813671:43928825814291 26045:26045 hsa_system_get_info(2, 0x1d4cd00) = 0 -43928825815038:43928825815656 26045:26045 hsa_system_get_info(2, 0x1d4cd08) = 0 -43928825816400:43928825817020 26045:26045 hsa_system_get_info(2, 0x1d4cd10) = 0 -43928825817763:43928825818390 26045:26045 hsa_system_get_info(2, 0x1d4cd18) = 0 -43928825819134:43928825819752 26045:26045 hsa_system_get_info(2, 0x1d4cd20) = 0 -43928825820501:43928825821123 26045:26045 hsa_system_get_info(2, 0x1d4cd28) = 0 -43928825821883:43928825822503 26045:26045 hsa_system_get_info(2, 0x1d4cd30) = 0 -43928825823981:43928825824608 26045:26045 hsa_system_get_info(2, 0x1d4cd38) = 0 -43928825825355:43928825825975 26045:26045 hsa_system_get_info(2, 0x1d4cd40) = 0 -43928825826723:43928825827343 26045:26045 hsa_system_get_info(2, 0x1d4cd48) = 0 -43928825828107:43928825828727 26045:26045 hsa_system_get_info(2, 0x1d4cd50) = 0 -43928825829475:43928825830088 26045:26045 hsa_system_get_info(2, 0x1d4cd58) = 0 -43928825830837:43928825831452 26045:26045 hsa_system_get_info(2, 0x1d4cd60) = 0 -43928825832196:43928825832812 26045:26045 hsa_system_get_info(2, 0x1d4cd68) = 0 -43928825833561:43928825834183 26045:26045 hsa_system_get_info(2, 0x1d4cd70) = 0 -43928825834931:43928825835554 26045:26045 hsa_system_get_info(2, 0x1d4cd78) = 0 -43928825836301:43928825836915 26045:26045 hsa_system_get_info(2, 0x1d4cd80) = 0 -43928825837662:43928825838284 26045:26045 hsa_system_get_info(2, 0x1d4cd88) = 0 -43928825839033:43928825839651 26045:26045 hsa_system_get_info(2, 0x1d4cd90) = 0 -43928825840396:43928825841014 26045:26045 hsa_system_get_info(2, 0x1d4cd98) = 0 -43928825841756:43928825842377 26045:26045 hsa_system_get_info(2, 0x1d4cda0) = 0 -43928825843122:43928825843745 26045:26045 hsa_system_get_info(2, 0x1d4cda8) = 0 -43928825844494:43928825845111 26045:26045 hsa_system_get_info(2, 0x1d4cdb0) = 0 -43928825845859:43928825846479 26045:26045 hsa_system_get_info(2, 0x1d4cdb8) = 0 -43928825847238:43928825847856 26045:26045 hsa_system_get_info(2, 0x1d4cdc0) = 0 -43928825848607:43928825849231 26045:26045 hsa_system_get_info(2, 0x1d4cdc8) = 0 -43928825849979:43928825850597 26045:26045 hsa_system_get_info(2, 0x1d4cdd0) = 0 -43928825851343:43928825851961 26045:26045 hsa_system_get_info(2, 0x1d4cdd8) = 0 -43928825852708:43928825853324 26045:26045 hsa_system_get_info(2, 0x1d4cde0) = 0 -43928825854073:43928825854691 26045:26045 hsa_system_get_info(2, 0x1d4cde8) = 0 -43928825855441:43928825856055 26045:26045 hsa_system_get_info(2, 0x1d4cdf0) = 0 -43928825856803:43928825857422 26045:26045 hsa_system_get_info(2, 0x1d4cdf8) = 0 -43928825858172:43928825858789 26045:26045 hsa_system_get_info(2, 0x1d4ce00) = 0 -43928825859534:43928825860153 26045:26045 hsa_system_get_info(2, 0x1d4ce08) = 0 -43928825860923:43928825861548 26045:26045 hsa_system_get_info(2, 0x1d4ce10) = 0 -43928825862296:43928825862915 26045:26045 hsa_system_get_info(2, 0x1d4ce18) = 0 -43928825864399:43928825865032 26045:26045 hsa_system_get_info(2, 0x1d4ce20) = 0 -43928825865783:43928825866400 26045:26045 hsa_system_get_info(2, 0x1d4ce28) = 0 -43928825867146:43928825867760 26045:26045 hsa_system_get_info(2, 0x1d4ce30) = 0 -43928825868508:43928825869123 26045:26045 hsa_system_get_info(2, 0x1d4ce38) = 0 -43928825869870:43928825870493 26045:26045 hsa_system_get_info(2, 0x1d4ce40) = 0 -43928825871238:43928825871855 26045:26045 hsa_system_get_info(2, 0x1d4ce48) = 0 -43928825872602:43928825873215 26045:26045 hsa_system_get_info(2, 0x1d4ce50) = 0 -43928825873956:43928825874583 26045:26045 hsa_system_get_info(2, 0x1d4ce58) = 0 -43928825875328:43928825875951 26045:26045 hsa_system_get_info(2, 0x1d4ce60) = 0 -43928825876693:43928825877313 26045:26045 hsa_system_get_info(2, 0x1d4ce68) = 0 -43928825878058:43928825878675 26045:26045 hsa_system_get_info(2, 0x1d4ce70) = 0 -43928825879423:43928825880047 26045:26045 hsa_system_get_info(2, 0x1d4ce78) = 0 -43928825880790:43928825881414 26045:26045 hsa_system_get_info(2, 0x1d4ce80) = 0 -43928825882162:43928825882785 26045:26045 hsa_system_get_info(2, 0x1d4ce88) = 0 -43928825883547:43928825884163 26045:26045 hsa_system_get_info(2, 0x1d4ce90) = 0 -43928825884909:43928825885528 26045:26045 hsa_system_get_info(2, 0x1d4ce98) = 0 -43928825886274:43928825886894 26045:26045 hsa_system_get_info(2, 0x1d4cea0) = 0 -43928825887642:43928825888261 26045:26045 hsa_system_get_info(2, 0x1d4cea8) = 0 -43928825889006:43928825889626 26045:26045 hsa_system_get_info(2, 0x1d4ceb0) = 0 -43928825890375:43928825890993 26045:26045 hsa_system_get_info(2, 0x1d4ceb8) = 0 -43928825891741:43928825892360 26045:26045 hsa_system_get_info(2, 0x1d4cec0) = 0 -43928825893112:43928825893731 26045:26045 hsa_system_get_info(2, 0x1d4cec8) = 0 -43928825894477:43928825895099 26045:26045 hsa_system_get_info(2, 0x1d4ced0) = 0 -43928825895848:43928825896468 26045:26045 hsa_system_get_info(2, 0x1d4ced8) = 0 -43928825897218:43928825897839 26045:26045 hsa_system_get_info(2, 0x1d4cee0) = 0 -43928825898587:43928825899207 26045:26045 hsa_system_get_info(2, 0x1d4cee8) = 0 -43928825899956:43928825900576 26045:26045 hsa_system_get_info(2, 0x1d4cef0) = 0 -43928825901326:43928825901961 26045:26045 hsa_system_get_info(2, 0x1d4cef8) = 0 -43928825903438:43928825904062 26045:26045 hsa_system_get_info(2, 0x1d4cf00) = 0 -43928825904810:43928825905429 26045:26045 hsa_system_get_info(2, 0x1d4cf08) = 0 -43928825906172:43928825906790 26045:26045 hsa_system_get_info(2, 0x1d4cf10) = 0 -43928825907535:43928825908154 26045:26045 hsa_system_get_info(2, 0x1d4cf18) = 0 -43928825908897:43928825909524 26045:26045 hsa_system_get_info(2, 0x1d4cf20) = 0 -43928825910274:43928825910887 26045:26045 hsa_system_get_info(2, 0x1d4cf28) = 0 -43928825911629:43928825912254 26045:26045 hsa_system_get_info(2, 0x1d4cf30) = 0 -43928825913002:43928825913620 26045:26045 hsa_system_get_info(2, 0x1d4cf38) = 0 -43928825914366:43928825914989 26045:26045 hsa_system_get_info(2, 0x1d4cf40) = 0 -43928825915738:43928825916358 26045:26045 hsa_system_get_info(2, 0x1d4cf48) = 0 -43928825917099:43928825917717 26045:26045 hsa_system_get_info(2, 0x1d4cf50) = 0 -43928825918465:43928825919082 26045:26045 hsa_system_get_info(2, 0x1d4cf58) = 0 -43928825919828:43928825920444 26045:26045 hsa_system_get_info(2, 0x1d4cf60) = 0 -43928825921194:43928825921821 26045:26045 hsa_system_get_info(2, 0x1d4cf68) = 0 -43928825922569:43928825923192 26045:26045 hsa_system_get_info(2, 0x1d4cf70) = 0 -43928825923963:43928825924582 26045:26045 hsa_system_get_info(2, 0x1d4cf78) = 0 -43928825925329:43928825925946 26045:26045 hsa_system_get_info(2, 0x1d4cf80) = 0 -43928825926695:43928825927315 26045:26045 hsa_system_get_info(2, 0x1d4cf88) = 0 -43928825928058:43928825928683 26045:26045 hsa_system_get_info(2, 0x1d4cf90) = 0 -43928825929433:43928825930055 26045:26045 hsa_system_get_info(2, 0x1d4cf98) = 0 -43928825930802:43928825931424 26045:26045 hsa_system_get_info(2, 0x1d4cfa0) = 0 -43928825932171:43928825932794 26045:26045 hsa_system_get_info(2, 0x1d4cfa8) = 0 -43928825933544:43928825934161 26045:26045 hsa_system_get_info(2, 0x1d4cfb0) = 0 -43928825934907:43928825935528 26045:26045 hsa_system_get_info(2, 0x1d4cfb8) = 0 -43928825936272:43928825936890 26045:26045 hsa_system_get_info(2, 0x1d4cfc0) = 0 -43928825937637:43928825938253 26045:26045 hsa_system_get_info(2, 0x1d4cfc8) = 0 -43928825939003:43928825939624 26045:26045 hsa_system_get_info(2, 0x1d4cfd0) = 0 -43928825940385:43928825941004 26045:26045 hsa_system_get_info(2, 0x1d4cfd8) = 0 -43928825941753:43928825942373 26045:26045 hsa_system_get_info(2, 0x1d4cfe0) = 0 -43928825943875:43928825944501 26045:26045 hsa_system_get_info(2, 0x1d4cfe8) = 0 -43928825945247:43928825945864 26045:26045 hsa_system_get_info(2, 0x1d4cff0) = 0 -43928825946612:43928825947228 26045:26045 hsa_system_get_info(2, 0x1d4cff8) = 0 -43928825947975:43928825948595 26045:26045 hsa_system_get_info(2, 0x1d4d000) = 0 -43928825949337:43928825949953 26045:26045 hsa_system_get_info(2, 0x1d4d008) = 0 -43928825950694:43928825951309 26045:26045 hsa_system_get_info(2, 0x1d4d010) = 0 -43928825952055:43928825952669 26045:26045 hsa_system_get_info(2, 0x1d4d018) = 0 -43928825953415:43928825954033 26045:26045 hsa_system_get_info(2, 0x1d4d020) = 0 -43928825954780:43928825955400 26045:26045 hsa_system_get_info(2, 0x1d4d028) = 0 -43928825956147:43928825956764 26045:26045 hsa_system_get_info(2, 0x1d4d030) = 0 -43928825957510:43928825958129 26045:26045 hsa_system_get_info(2, 0x1d4d038) = 0 -43928825958874:43928825959499 26045:26045 hsa_system_get_info(2, 0x1d4d040) = 0 -43928825960244:43928825960864 26045:26045 hsa_system_get_info(2, 0x1d4d048) = 0 -43928825961606:43928825962231 26045:26045 hsa_system_get_info(2, 0x1d4d050) = 0 -43928825962987:43928825963609 26045:26045 hsa_system_get_info(2, 0x1d4d058) = 0 -43928825964358:43928825964978 26045:26045 hsa_system_get_info(2, 0x1d4d060) = 0 -43928825965726:43928825966345 26045:26045 hsa_system_get_info(2, 0x1d4d068) = 0 -43928825967091:43928825967710 26045:26045 hsa_system_get_info(2, 0x1d4d070) = 0 -43928825968458:43928825969077 26045:26045 hsa_system_get_info(2, 0x1d4d078) = 0 -43928825969822:43928825970448 26045:26045 hsa_system_get_info(2, 0x1d4d080) = 0 -43928825971197:43928825971819 26045:26045 hsa_system_get_info(2, 0x1d4d088) = 0 -43928825972567:43928825973191 26045:26045 hsa_system_get_info(2, 0x1d4d090) = 0 -43928825973935:43928825974555 26045:26045 hsa_system_get_info(2, 0x1d4d098) = 0 -43928825975303:43928825975923 26045:26045 hsa_system_get_info(2, 0x1d4d0a0) = 0 -43928825976669:43928825977287 26045:26045 hsa_system_get_info(2, 0x1d4d0a8) = 0 -43928825978032:43928825978650 26045:26045 hsa_system_get_info(2, 0x1d4d0b0) = 0 -43928825979395:43928825980013 26045:26045 hsa_system_get_info(2, 0x1d4d0b8) = 0 -43928825980764:43928825981385 26045:26045 hsa_system_get_info(2, 0x1d4d0c0) = 0 -43928825982895:43928825983517 26045:26045 hsa_system_get_info(2, 0x1d4d0c8) = 0 -43928825984261:43928825984879 26045:26045 hsa_system_get_info(2, 0x1d4d0d0) = 0 -43928825985620:43928825986244 26045:26045 hsa_system_get_info(2, 0x1d4d0d8) = 0 -43928825986992:43928825987613 26045:26045 hsa_system_get_info(2, 0x1d4d0e0) = 0 -43928825988362:43928825988982 26045:26045 hsa_system_get_info(2, 0x1d4d0e8) = 0 -43928825989731:43928825990350 26045:26045 hsa_system_get_info(2, 0x1d4d0f0) = 0 -43928825991095:43928825991714 26045:26045 hsa_system_get_info(2, 0x1d4d0f8) = 0 -43928825992460:43928825993258 26045:26045 hsa_system_get_info(2, 0x1d4d100) = 0 -43928825994010:43928825994626 26045:26045 hsa_system_get_info(2, 0x1d4d108) = 0 -43928825995372:43928825995990 26045:26045 hsa_system_get_info(2, 0x1d4d110) = 0 -43928825996736:43928825997362 26045:26045 hsa_system_get_info(2, 0x1d4d118) = 0 -43928825998108:43928825998728 26045:26045 hsa_system_get_info(2, 0x1d4d120) = 0 -43928825999474:43928826000096 26045:26045 hsa_system_get_info(2, 0x1d4d128) = 0 -43928826000844:43928826001477 26045:26045 hsa_system_get_info(2, 0x1d4d130) = 0 -43928826002224:43928826002848 26045:26045 hsa_system_get_info(2, 0x1d4d138) = 0 -43928826003595:43928826004216 26045:26045 hsa_system_get_info(2, 0x1d4d140) = 0 -43928826004961:43928826005587 26045:26045 hsa_system_get_info(2, 0x1d4d148) = 0 -43928826022682:43928826023338 26045:26045 hsa_system_get_info(2, 0x1d4b210) = 0 -43928826024107:43928826024720 26045:26045 hsa_system_get_info(2, 0x1d4b218) = 0 -43928826025464:43928826026083 26045:26045 hsa_system_get_info(2, 0x1d4b220) = 0 -43928826026829:43928826027449 26045:26045 hsa_system_get_info(2, 0x1d4b228) = 0 -43928826028193:43928826028815 26045:26045 hsa_system_get_info(2, 0x1d4b230) = 0 -43928826029560:43928826030183 26045:26045 hsa_system_get_info(2, 0x1d4b238) = 0 -43928826030930:43928826031547 26045:26045 hsa_system_get_info(2, 0x1d4b240) = 0 -43928826032296:43928826032915 26045:26045 hsa_system_get_info(2, 0x1d4b248) = 0 -43928826033662:43928826034283 26045:26045 hsa_system_get_info(2, 0x1d4b250) = 0 -43928826035029:43928826035647 26045:26045 hsa_system_get_info(2, 0x1d4b258) = 0 -43928826036403:43928826037025 26045:26045 hsa_system_get_info(2, 0x1d4b260) = 0 -43928826037774:43928826038392 26045:26045 hsa_system_get_info(2, 0x1d4b268) = 0 -43928826039945:43928826040573 26045:26045 hsa_system_get_info(2, 0x1d4b270) = 0 -43928826041319:43928826041944 26045:26045 hsa_system_get_info(2, 0x1d4b278) = 0 -43928826042694:43928826043313 26045:26045 hsa_system_get_info(2, 0x1d4b280) = 0 -43928826044061:43928826044679 26045:26045 hsa_system_get_info(2, 0x1d4b288) = 0 -43928826045423:43928826046045 26045:26045 hsa_system_get_info(2, 0x1d4b290) = 0 -43928826046793:43928826047415 26045:26045 hsa_system_get_info(2, 0x1d4b298) = 0 -43928826048162:43928826048781 26045:26045 hsa_system_get_info(2, 0x1d4b2a0) = 0 -43928826049531:43928826050146 26045:26045 hsa_system_get_info(2, 0x1d4b2a8) = 0 -43928826050893:43928826051512 26045:26045 hsa_system_get_info(2, 0x1d4b2b0) = 0 -43928826052260:43928826052883 26045:26045 hsa_system_get_info(2, 0x1d4b2b8) = 0 -43928826053630:43928826054248 26045:26045 hsa_system_get_info(2, 0x1d4b2c0) = 0 -43928826054991:43928826055610 26045:26045 hsa_system_get_info(2, 0x1d4b2c8) = 0 -43928826056357:43928826056979 26045:26045 hsa_system_get_info(2, 0x1d4b2d0) = 0 -43928826057729:43928826058367 26045:26045 hsa_system_get_info(2, 0x1d4b2d8) = 0 -43928826059114:43928826059741 26045:26045 hsa_system_get_info(2, 0x1d4b2e0) = 0 -43928826060490:43928826061108 26045:26045 hsa_system_get_info(2, 0x1d4b2e8) = 0 -43928826061911:43928826062535 26045:26045 hsa_system_get_info(2, 0x1d4b2f0) = 0 -43928826063285:43928826063912 26045:26045 hsa_system_get_info(2, 0x1d4b2f8) = 0 -43928826064664:43928826065285 26045:26045 hsa_system_get_info(2, 0x1d4b300) = 0 -43928826066031:43928826066652 26045:26045 hsa_system_get_info(2, 0x1d4b308) = 0 -43928826067398:43928826068021 26045:26045 hsa_system_get_info(2, 0x1d4b310) = 0 -43928826068768:43928826069383 26045:26045 hsa_system_get_info(2, 0x1d4b318) = 0 -43928826070130:43928826070757 26045:26045 hsa_system_get_info(2, 0x1d4b320) = 0 -43928826071508:43928826072140 26045:26045 hsa_system_get_info(2, 0x1d4b328) = 0 -43928826072888:43928826073510 26045:26045 hsa_system_get_info(2, 0x1d4b330) = 0 -43928826074262:43928826074885 26045:26045 hsa_system_get_info(2, 0x1d4b338) = 0 -43928826075633:43928826076257 26045:26045 hsa_system_get_info(2, 0x1d4b340) = 0 -43928826077002:43928826077624 26045:26045 hsa_system_get_info(2, 0x1d4b348) = 0 -43928826079104:43928826079736 26045:26045 hsa_system_get_info(2, 0x1d4b350) = 0 -43928826080482:43928826081105 26045:26045 hsa_system_get_info(2, 0x1d4b358) = 0 -43928826081853:43928826082472 26045:26045 hsa_system_get_info(2, 0x1d4b360) = 0 -43928826083214:43928826083834 26045:26045 hsa_system_get_info(2, 0x1d4b368) = 0 -43928826084581:43928826085206 26045:26045 hsa_system_get_info(2, 0x1d4b370) = 0 -43928826085954:43928826086574 26045:26045 hsa_system_get_info(2, 0x1d4b378) = 0 -43928826087320:43928826087939 26045:26045 hsa_system_get_info(2, 0x1d4b380) = 0 -43928826088689:43928826089311 26045:26045 hsa_system_get_info(2, 0x1d4b388) = 0 -43928826090059:43928826090680 26045:26045 hsa_system_get_info(2, 0x1d4b390) = 0 -43928826091430:43928826092051 26045:26045 hsa_system_get_info(2, 0x1d4b398) = 0 -43928826092797:43928826093418 26045:26045 hsa_system_get_info(2, 0x1d4b3a0) = 0 -43928826094168:43928826094788 26045:26045 hsa_system_get_info(2, 0x1d4b3a8) = 0 -43928826095534:43928826096163 26045:26045 hsa_system_get_info(2, 0x1d4b3b0) = 0 -43928826096909:43928826097532 26045:26045 hsa_system_get_info(2, 0x1d4b3b8) = 0 -43928826098304:43928826098921 26045:26045 hsa_system_get_info(2, 0x1d4b3c0) = 0 -43928826099667:43928826100287 26045:26045 hsa_system_get_info(2, 0x1d4b3c8) = 0 -43928826101032:43928826101654 26045:26045 hsa_system_get_info(2, 0x1d4b3d0) = 0 -43928826102405:43928826103024 26045:26045 hsa_system_get_info(2, 0x1d4b3d8) = 0 -43928826103769:43928826104390 26045:26045 hsa_system_get_info(2, 0x1d4b3e0) = 0 -43928826105137:43928826105757 26045:26045 hsa_system_get_info(2, 0x1d4b3e8) = 0 -43928826106501:43928826107119 26045:26045 hsa_system_get_info(2, 0x1d4b3f0) = 0 -43928826107867:43928826108482 26045:26045 hsa_system_get_info(2, 0x1d4b3f8) = 0 -43928826109231:43928826109855 26045:26045 hsa_system_get_info(2, 0x1d4b400) = 0 -43928826110602:43928826111223 26045:26045 hsa_system_get_info(2, 0x1d4b408) = 0 -43928826111971:43928826112594 26045:26045 hsa_system_get_info(2, 0x1d4b410) = 0 -43928826113342:43928826113960 26045:26045 hsa_system_get_info(2, 0x1d4b418) = 0 -43928826114712:43928826115331 26045:26045 hsa_system_get_info(2, 0x1d4b420) = 0 -43928826116082:43928826116706 26045:26045 hsa_system_get_info(2, 0x1d4b428) = 0 -43928826117466:43928826118088 26045:26045 hsa_system_get_info(2, 0x1d4b430) = 0 -43928826119659:43928826120285 26045:26045 hsa_system_get_info(2, 0x1d4b438) = 0 -43928826121035:43928826121659 26045:26045 hsa_system_get_info(2, 0x1d4b440) = 0 -43928826122408:43928826123034 26045:26045 hsa_system_get_info(2, 0x1d4b448) = 0 -43928826123781:43928826124407 26045:26045 hsa_system_get_info(2, 0x1d4b450) = 0 -43928826125154:43928826125775 26045:26045 hsa_system_get_info(2, 0x1d4b458) = 0 -43928826126520:43928826127140 26045:26045 hsa_system_get_info(2, 0x1d4b460) = 0 -43928826127883:43928826128500 26045:26045 hsa_system_get_info(2, 0x1d4b468) = 0 -43928826129247:43928826129864 26045:26045 hsa_system_get_info(2, 0x1d4b470) = 0 -43928826130610:43928826131232 26045:26045 hsa_system_get_info(2, 0x1d4b478) = 0 -43928826131975:43928826132596 26045:26045 hsa_system_get_info(2, 0x1d4b480) = 0 -43928826133343:43928826133963 26045:26045 hsa_system_get_info(2, 0x1d4b488) = 0 -43928826134711:43928826135330 26045:26045 hsa_system_get_info(2, 0x1d4b490) = 0 -43928826136074:43928826136691 26045:26045 hsa_system_get_info(2, 0x1d4b498) = 0 -43928826137436:43928826138073 26045:26045 hsa_system_get_info(2, 0x1d4b4a0) = 0 -43928826138825:43928826139447 26045:26045 hsa_system_get_info(2, 0x1d4b4a8) = 0 -43928826140194:43928826140815 26045:26045 hsa_system_get_info(2, 0x1d4b4b0) = 0 -43928826141567:43928826142186 26045:26045 hsa_system_get_info(2, 0x1d4b4b8) = 0 -43928826142935:43928826143555 26045:26045 hsa_system_get_info(2, 0x1d4b4c0) = 0 -43928826144299:43928826144918 26045:26045 hsa_system_get_info(2, 0x1d4b4c8) = 0 -43928826145663:43928826146291 26045:26045 hsa_system_get_info(2, 0x1d4b4d0) = 0 -43928826147041:43928826147660 26045:26045 hsa_system_get_info(2, 0x1d4b4d8) = 0 -43928826148405:43928826149022 26045:26045 hsa_system_get_info(2, 0x1d4b4e0) = 0 -43928826149772:43928826150384 26045:26045 hsa_system_get_info(2, 0x1d4b4e8) = 0 -43928826151130:43928826151749 26045:26045 hsa_system_get_info(2, 0x1d4b4f0) = 0 -43928826152493:43928826153114 26045:26045 hsa_system_get_info(2, 0x1d4b4f8) = 0 -43928826153862:43928826154486 26045:26045 hsa_system_get_info(2, 0x1d4b500) = 0 -43928826155236:43928826155853 26045:26045 hsa_system_get_info(2, 0x1d4b508) = 0 -43928826156597:43928826157229 26045:26045 hsa_system_get_info(2, 0x1d4b510) = 0 -43928826158738:43928826159357 26045:26045 hsa_system_get_info(2, 0x1d4b518) = 0 -43928826160101:43928826160728 26045:26045 hsa_system_get_info(2, 0x1d4b520) = 0 -43928826161471:43928826162092 26045:26045 hsa_system_get_info(2, 0x1d4b528) = 0 -43928826162838:43928826163460 26045:26045 hsa_system_get_info(2, 0x1d4b530) = 0 -43928826164208:43928826164827 26045:26045 hsa_system_get_info(2, 0x1d4b538) = 0 -43928826165572:43928826166198 26045:26045 hsa_system_get_info(2, 0x1d4b540) = 0 -43928826166942:43928826167564 26045:26045 hsa_system_get_info(2, 0x1d4b548) = 0 -43928826168306:43928826168923 26045:26045 hsa_system_get_info(2, 0x1d4b550) = 0 -43928826169667:43928826170291 26045:26045 hsa_system_get_info(2, 0x1d4b558) = 0 -43928826171038:43928826171663 26045:26045 hsa_system_get_info(2, 0x1d4b560) = 0 -43928826172408:43928826173032 26045:26045 hsa_system_get_info(2, 0x1d4b568) = 0 -43928826173776:43928826174396 26045:26045 hsa_system_get_info(2, 0x1d4b570) = 0 -43928826175143:43928826175759 26045:26045 hsa_system_get_info(2, 0x1d4b578) = 0 -43928826176509:43928826177142 26045:26045 hsa_system_get_info(2, 0x1d4b580) = 0 -43928826177889:43928826178509 26045:26045 hsa_system_get_info(2, 0x1d4b588) = 0 -43928826179256:43928826179876 26045:26045 hsa_system_get_info(2, 0x1d4b590) = 0 -43928826180620:43928826181241 26045:26045 hsa_system_get_info(2, 0x1d4b598) = 0 -43928826181984:43928826182609 26045:26045 hsa_system_get_info(2, 0x1d4b5a0) = 0 -43928826183352:43928826183972 26045:26045 hsa_system_get_info(2, 0x1d4b5a8) = 0 -43928826184721:43928826185345 26045:26045 hsa_system_get_info(2, 0x1d4b5b0) = 0 -43928826186096:43928826186717 26045:26045 hsa_system_get_info(2, 0x1d4b5b8) = 0 -43928826187463:43928826188080 26045:26045 hsa_system_get_info(2, 0x1d4b5c0) = 0 -43928826188827:43928826189447 26045:26045 hsa_system_get_info(2, 0x1d4b5c8) = 0 -43928826190195:43928826190814 26045:26045 hsa_system_get_info(2, 0x1d4b5d0) = 0 -43928826191563:43928826192183 26045:26045 hsa_system_get_info(2, 0x1d4b5d8) = 0 -43928826192929:43928826193554 26045:26045 hsa_system_get_info(2, 0x1d4b5e0) = 0 -43928826194335:43928826194955 26045:26045 hsa_system_get_info(2, 0x1d4b5e8) = 0 -43928826195706:43928826196325 26045:26045 hsa_system_get_info(2, 0x1d4b5f0) = 0 -43928826197810:43928826198452 26045:26045 hsa_system_get_info(2, 0x1d4b5f8) = 0 -43928826199200:43928826199820 26045:26045 hsa_system_get_info(2, 0x1d4b600) = 0 -43928826200570:43928826201188 26045:26045 hsa_system_get_info(2, 0x1d4b608) = 0 -43928826201953:43928826202574 26045:26045 hsa_system_get_info(2, 0x1d4b610) = 0 -43928826203320:43928826203934 26045:26045 hsa_system_get_info(2, 0x1d4b618) = 0 -43928826204683:43928826205304 26045:26045 hsa_system_get_info(2, 0x1d4b620) = 0 -43928826206051:43928826206669 26045:26045 hsa_system_get_info(2, 0x1d4b628) = 0 -43928826207415:43928826208032 26045:26045 hsa_system_get_info(2, 0x1d4b630) = 0 -43928826208776:43928826209393 26045:26045 hsa_system_get_info(2, 0x1d4b638) = 0 -43928826210137:43928826210753 26045:26045 hsa_system_get_info(2, 0x1d4b640) = 0 -43928826211499:43928826212127 26045:26045 hsa_system_get_info(2, 0x1d4b648) = 0 -43928826212875:43928826213489 26045:26045 hsa_system_get_info(2, 0x1d4b650) = 0 -43928826214233:43928826214849 26045:26045 hsa_system_get_info(2, 0x1d4b658) = 0 -43928826215597:43928826216217 26045:26045 hsa_system_get_info(2, 0x1d4b660) = 0 -43928826216968:43928826217588 26045:26045 hsa_system_get_info(2, 0x1d4b668) = 0 -43928826218334:43928826218954 26045:26045 hsa_system_get_info(2, 0x1d4b670) = 0 -43928826219701:43928826220320 26045:26045 hsa_system_get_info(2, 0x1d4b678) = 0 -43928826221077:43928826221696 26045:26045 hsa_system_get_info(2, 0x1d4b680) = 0 -43928826222440:43928826223057 26045:26045 hsa_system_get_info(2, 0x1d4b688) = 0 -43928826223804:43928826224424 26045:26045 hsa_system_get_info(2, 0x1d4b690) = 0 -43928826225173:43928826225795 26045:26045 hsa_system_get_info(2, 0x1d4b698) = 0 -43928826226540:43928826227163 26045:26045 hsa_system_get_info(2, 0x1d4b6a0) = 0 -43928826227909:43928826228529 26045:26045 hsa_system_get_info(2, 0x1d4b6a8) = 0 -43928826229276:43928826229892 26045:26045 hsa_system_get_info(2, 0x1d4b6b0) = 0 -43928826230635:43928826231252 26045:26045 hsa_system_get_info(2, 0x1d4b6b8) = 0 -43928826232001:43928826232621 26045:26045 hsa_system_get_info(2, 0x1d4b6c0) = 0 -43928826233366:43928826233990 26045:26045 hsa_system_get_info(2, 0x1d4b6c8) = 0 -43928826234758:43928826235378 26045:26045 hsa_system_get_info(2, 0x1d4b6d0) = 0 -43928826236123:43928826236742 26045:26045 hsa_system_get_info(2, 0x1d4b6d8) = 0 -43928826238232:43928826238856 26045:26045 hsa_system_get_info(2, 0x1d4b6e0) = 0 -43928826239602:43928826240228 26045:26045 hsa_system_get_info(2, 0x1d4b6e8) = 0 -43928826240974:43928826241597 26045:26045 hsa_system_get_info(2, 0x1d4b6f0) = 0 -43928826242343:43928826242967 26045:26045 hsa_system_get_info(2, 0x1d4b6f8) = 0 -43928826243715:43928826244336 26045:26045 hsa_system_get_info(2, 0x1d4b700) = 0 -43928826245080:43928826245699 26045:26045 hsa_system_get_info(2, 0x1d4b708) = 0 -43928826246444:43928826247067 26045:26045 hsa_system_get_info(2, 0x1d4b710) = 0 -43928826247811:43928826248429 26045:26045 hsa_system_get_info(2, 0x1d4b718) = 0 -43928826249176:43928826249793 26045:26045 hsa_system_get_info(2, 0x1d4b720) = 0 -43928826250540:43928826251160 26045:26045 hsa_system_get_info(2, 0x1d4b728) = 0 -43928826251911:43928826252529 26045:26045 hsa_system_get_info(2, 0x1d4b730) = 0 -43928826253278:43928826253896 26045:26045 hsa_system_get_info(2, 0x1d4b738) = 0 -43928826254644:43928826255259 26045:26045 hsa_system_get_info(2, 0x1d4b740) = 0 -43928826256003:43928826256636 26045:26045 hsa_system_get_info(2, 0x1d4b748) = 0 -43928826257384:43928826258001 26045:26045 hsa_system_get_info(2, 0x1d4b750) = 0 -43928826258748:43928826259368 26045:26045 hsa_system_get_info(2, 0x1d4b758) = 0 -43928826260115:43928826260735 26045:26045 hsa_system_get_info(2, 0x1d4b760) = 0 -43928826261479:43928826262100 26045:26045 hsa_system_get_info(2, 0x1d4b768) = 0 -43928826262848:43928826263466 26045:26045 hsa_system_get_info(2, 0x1d4b770) = 0 -43928826264215:43928826264836 26045:26045 hsa_system_get_info(2, 0x1d4b778) = 0 -43928826265586:43928826266201 26045:26045 hsa_system_get_info(2, 0x1d4b780) = 0 -43928826266949:43928826267573 26045:26045 hsa_system_get_info(2, 0x1d4b788) = 0 -43928826268323:43928826268942 26045:26045 hsa_system_get_info(2, 0x1d4b790) = 0 -43928826269690:43928826270303 26045:26045 hsa_system_get_info(2, 0x1d4b798) = 0 -43928826271051:43928826271671 26045:26045 hsa_system_get_info(2, 0x1d4b7a0) = 0 -43928826272419:43928826273039 26045:26045 hsa_system_get_info(2, 0x1d4b7a8) = 0 -43928826273785:43928826274402 26045:26045 hsa_system_get_info(2, 0x1d4b7b0) = 0 -43928826275166:43928826275788 26045:26045 hsa_system_get_info(2, 0x1d4b7b8) = 0 -43928826277869:43928826278506 26045:26045 hsa_system_get_info(2, 0x1d4b7c0) = 0 -43928826279254:43928826279869 26045:26045 hsa_system_get_info(2, 0x1d4b7c8) = 0 -43928826280614:43928826281235 26045:26045 hsa_system_get_info(2, 0x1d4b7d0) = 0 -43928826281987:43928826282606 26045:26045 hsa_system_get_info(2, 0x1d4b7d8) = 0 -43928826283348:43928826283969 26045:26045 hsa_system_get_info(2, 0x1d4b7e0) = 0 -43928826284716:43928826285337 26045:26045 hsa_system_get_info(2, 0x1d4b7e8) = 0 -43928826286082:43928826286705 26045:26045 hsa_system_get_info(2, 0x1d4b7f0) = 0 -43928826287450:43928826288069 26045:26045 hsa_system_get_info(2, 0x1d4b7f8) = 0 -43928826288815:43928826289434 26045:26045 hsa_system_get_info(2, 0x1d4b800) = 0 -43928826290179:43928826290814 26045:26045 hsa_system_get_info(2, 0x1d4b808) = 0 -43928826291563:43928826292185 26045:26045 hsa_system_get_info(2, 0x1d4b810) = 0 -43928826292935:43928826293557 26045:26045 hsa_system_get_info(2, 0x1d4b818) = 0 -43928826294356:43928826294978 26045:26045 hsa_system_get_info(2, 0x1d4b820) = 0 -43928826295749:43928826296370 26045:26045 hsa_system_get_info(2, 0x1d4b828) = 0 -43928826297121:43928826297735 26045:26045 hsa_system_get_info(2, 0x1d4b830) = 0 -43928826298484:43928826299105 26045:26045 hsa_system_get_info(2, 0x1d4b838) = 0 -43928826299850:43928826300469 26045:26045 hsa_system_get_info(2, 0x1d4b840) = 0 -43928826301218:43928826301832 26045:26045 hsa_system_get_info(2, 0x1d4b848) = 0 -43928826302580:43928826303199 26045:26045 hsa_system_get_info(2, 0x1d4b850) = 0 -43928826303948:43928826304562 26045:26045 hsa_system_get_info(2, 0x1d4b858) = 0 -43928826305309:43928826305926 26045:26045 hsa_system_get_info(2, 0x1d4b860) = 0 -43928826306671:43928826307292 26045:26045 hsa_system_get_info(2, 0x1d4b868) = 0 -43928826308041:43928826308656 26045:26045 hsa_system_get_info(2, 0x1d4b870) = 0 -43928826309403:43928826310021 26045:26045 hsa_system_get_info(2, 0x1d4b878) = 0 -43928826310766:43928826311385 26045:26045 hsa_system_get_info(2, 0x1d4b880) = 0 -43928826312129:43928826312749 26045:26045 hsa_system_get_info(2, 0x1d4b888) = 0 -43928826313498:43928826314120 26045:26045 hsa_system_get_info(2, 0x1d4b890) = 0 -43928826314890:43928826315511 26045:26045 hsa_system_get_info(2, 0x1d4b898) = 0 -43928826316278:43928826316905 26045:26045 hsa_system_get_info(2, 0x1d4b8a0) = 0 -43928826318390:43928826319017 26045:26045 hsa_system_get_info(2, 0x1d4b8a8) = 0 -43928826319761:43928826320377 26045:26045 hsa_system_get_info(2, 0x1d4b8b0) = 0 -43928826321124:43928826321747 26045:26045 hsa_system_get_info(2, 0x1d4b8b8) = 0 -43928826322490:43928826323110 26045:26045 hsa_system_get_info(2, 0x1d4b8c0) = 0 -43928826323856:43928826324470 26045:26045 hsa_system_get_info(2, 0x1d4b8c8) = 0 -43928826325215:43928826325836 26045:26045 hsa_system_get_info(2, 0x1d4b8d0) = 0 -43928826326582:43928826327206 26045:26045 hsa_system_get_info(2, 0x1d4b8d8) = 0 -43928826327955:43928826328577 26045:26045 hsa_system_get_info(2, 0x1d4b8e0) = 0 -43928826329326:43928826329939 26045:26045 hsa_system_get_info(2, 0x1d4b8e8) = 0 -43928826330686:43928826331308 26045:26045 hsa_system_get_info(2, 0x1d4b8f0) = 0 -43928826332053:43928826332676 26045:26045 hsa_system_get_info(2, 0x1d4b8f8) = 0 -43928826333424:43928826334049 26045:26045 hsa_system_get_info(2, 0x1d4b900) = 0 -43928826334797:43928826335419 26045:26045 hsa_system_get_info(2, 0x1d4b908) = 0 -43928826336166:43928826336786 26045:26045 hsa_system_get_info(2, 0x1d4b910) = 0 -43928826337556:43928826338178 26045:26045 hsa_system_get_info(2, 0x1d4b918) = 0 -43928826338923:43928826339545 26045:26045 hsa_system_get_info(2, 0x1d4b920) = 0 -43928826340294:43928826340912 26045:26045 hsa_system_get_info(2, 0x1d4b928) = 0 -43928826341663:43928826342281 26045:26045 hsa_system_get_info(2, 0x1d4b930) = 0 -43928826343024:43928826343644 26045:26045 hsa_system_get_info(2, 0x1d4b938) = 0 -43928826344393:43928826345011 26045:26045 hsa_system_get_info(2, 0x1d4b940) = 0 -43928826345757:43928826346378 26045:26045 hsa_system_get_info(2, 0x1d4b948) = 0 -43928826347125:43928826347749 26045:26045 hsa_system_get_info(2, 0x1d4b950) = 0 -43928826348496:43928826349114 26045:26045 hsa_system_get_info(2, 0x1d4b958) = 0 -43928826349860:43928826350480 26045:26045 hsa_system_get_info(2, 0x1d4b960) = 0 -43928826351231:43928826351856 26045:26045 hsa_system_get_info(2, 0x1d4b968) = 0 -43928826352607:43928826353229 26045:26045 hsa_system_get_info(2, 0x1d4b970) = 0 -43928826353977:43928826354600 26045:26045 hsa_system_get_info(2, 0x1d4b978) = 0 -43928826355352:43928826355971 26045:26045 hsa_system_get_info(2, 0x1d4b980) = 0 -43928826357491:43928826358118 26045:26045 hsa_system_get_info(2, 0x1d4b988) = 0 -43928826358864:43928826359483 26045:26045 hsa_system_get_info(2, 0x1d4b990) = 0 -43928826360225:43928826360845 26045:26045 hsa_system_get_info(2, 0x1d4b998) = 0 -43928826361593:43928826362220 26045:26045 hsa_system_get_info(2, 0x1d4b9a0) = 0 -43928826362968:43928826363588 26045:26045 hsa_system_get_info(2, 0x1d4b9a8) = 0 -43928826364333:43928826364953 26045:26045 hsa_system_get_info(2, 0x1d4b9b0) = 0 -43928826365697:43928826366316 26045:26045 hsa_system_get_info(2, 0x1d4b9b8) = 0 -43928826367060:43928826367681 26045:26045 hsa_system_get_info(2, 0x1d4b9c0) = 0 -43928826368427:43928826369045 26045:26045 hsa_system_get_info(2, 0x1d4b9c8) = 0 -43928826369791:43928826370407 26045:26045 hsa_system_get_info(2, 0x1d4b9d0) = 0 -43928826371149:43928826371763 26045:26045 hsa_system_get_info(2, 0x1d4b9d8) = 0 -43928826372511:43928826373130 26045:26045 hsa_system_get_info(2, 0x1d4b9e0) = 0 -43928826373879:43928826374501 26045:26045 hsa_system_get_info(2, 0x1d4b9e8) = 0 -43928826375248:43928826375871 26045:26045 hsa_system_get_info(2, 0x1d4b9f0) = 0 -43928826376634:43928826377252 26045:26045 hsa_system_get_info(2, 0x1d4b9f8) = 0 -43928826378003:43928826378622 26045:26045 hsa_system_get_info(2, 0x1d4ba00) = 0 -43928826379370:43928826379984 26045:26045 hsa_system_get_info(2, 0x1d4ba08) = 0 -43928826380726:43928826381344 26045:26045 hsa_system_get_info(2, 0x1d4ba10) = 0 -43928826382088:43928826382709 26045:26045 hsa_system_get_info(2, 0x1d4ba18) = 0 -43928826383458:43928826384076 26045:26045 hsa_system_get_info(2, 0x1d4ba20) = 0 -43928826384820:43928826385444 26045:26045 hsa_system_get_info(2, 0x1d4ba28) = 0 -43928826386190:43928826386811 26045:26045 hsa_system_get_info(2, 0x1d4ba30) = 0 -43928826387558:43928826388180 26045:26045 hsa_system_get_info(2, 0x1d4ba38) = 0 -43928826388927:43928826389547 26045:26045 hsa_system_get_info(2, 0x1d4ba40) = 0 -43928826390293:43928826390914 26045:26045 hsa_system_get_info(2, 0x1d4ba48) = 0 -43928826391659:43928826392282 26045:26045 hsa_system_get_info(2, 0x1d4ba50) = 0 -43928826393026:43928826393644 26045:26045 hsa_system_get_info(2, 0x1d4ba58) = 0 -43928826394393:43928826395017 26045:26045 hsa_system_get_info(2, 0x1d4ba60) = 0 -43928826395783:43928826396403 26045:26045 hsa_system_get_info(2, 0x1d4ba68) = 0 -43928826397888:43928826398512 26045:26045 hsa_system_get_info(2, 0x1d4ba70) = 0 -43928826399256:43928826399883 26045:26045 hsa_system_get_info(2, 0x1d4ba78) = 0 -43928826400629:43928826401248 26045:26045 hsa_system_get_info(2, 0x1d4ba80) = 0 -43928826401997:43928826402620 26045:26045 hsa_system_get_info(2, 0x1d4ba88) = 0 -43928826403369:43928826403989 26045:26045 hsa_system_get_info(2, 0x1d4ba90) = 0 -43928826404737:43928826405355 26045:26045 hsa_system_get_info(2, 0x1d4ba98) = 0 -43928826406102:43928826406721 26045:26045 hsa_system_get_info(2, 0x1d4baa0) = 0 -43928826407470:43928826408089 26045:26045 hsa_system_get_info(2, 0x1d4baa8) = 0 -43928826408840:43928826409453 26045:26045 hsa_system_get_info(2, 0x1d4bab0) = 0 -43928826410203:43928826410820 26045:26045 hsa_system_get_info(2, 0x1d4bab8) = 0 -43928826411621:43928826412239 26045:26045 hsa_system_get_info(2, 0x1d4bac0) = 0 -43928826412987:43928826413612 26045:26045 hsa_system_get_info(2, 0x1d4bac8) = 0 -43928826414356:43928826414976 26045:26045 hsa_system_get_info(2, 0x1d4bad0) = 0 -43928826415724:43928826416344 26045:26045 hsa_system_get_info(2, 0x1d4bad8) = 0 -43928826417089:43928826417714 26045:26045 hsa_system_get_info(2, 0x1d4bae0) = 0 -43928826418463:43928826419087 26045:26045 hsa_system_get_info(2, 0x1d4bae8) = 0 -43928826419834:43928826420449 26045:26045 hsa_system_get_info(2, 0x1d4baf0) = 0 -43928826421196:43928826421816 26045:26045 hsa_system_get_info(2, 0x1d4baf8) = 0 -43928826422560:43928826423180 26045:26045 hsa_system_get_info(2, 0x1d4bb00) = 0 -43928826423929:43928826424547 26045:26045 hsa_system_get_info(2, 0x1d4bb08) = 0 -43928826425293:43928826425918 26045:26045 hsa_system_get_info(2, 0x1d4bb10) = 0 -43928826426665:43928826427285 26045:26045 hsa_system_get_info(2, 0x1d4bb18) = 0 -43928826428029:43928826428652 26045:26045 hsa_system_get_info(2, 0x1d4bb20) = 0 -43928826429399:43928826430015 26045:26045 hsa_system_get_info(2, 0x1d4bb28) = 0 -43928826430773:43928826431394 26045:26045 hsa_system_get_info(2, 0x1d4bb30) = 0 -43928826432142:43928826432762 26045:26045 hsa_system_get_info(2, 0x1d4bb38) = 0 -43928826433508:43928826434132 26045:26045 hsa_system_get_info(2, 0x1d4bb40) = 0 -43928826434880:43928826435503 26045:26045 hsa_system_get_info(2, 0x1d4bb48) = 0 -43928826437039:43928826437660 26045:26045 hsa_system_get_info(2, 0x1d4bb50) = 0 -43928826438408:43928826439027 26045:26045 hsa_system_get_info(2, 0x1d4bb58) = 0 -43928826439771:43928826440392 26045:26045 hsa_system_get_info(2, 0x1d4bb60) = 0 -43928826441138:43928826441761 26045:26045 hsa_system_get_info(2, 0x1d4bb68) = 0 -43928826442508:43928826443129 26045:26045 hsa_system_get_info(2, 0x1d4bb70) = 0 -43928826443872:43928826444489 26045:26045 hsa_system_get_info(2, 0x1d4bb78) = 0 -43928826445233:43928826445854 26045:26045 hsa_system_get_info(2, 0x1d4bb80) = 0 -43928826446595:43928826447217 26045:26045 hsa_system_get_info(2, 0x1d4bb88) = 0 -43928826447964:43928826448587 26045:26045 hsa_system_get_info(2, 0x1d4bb90) = 0 -43928826449333:43928826449956 26045:26045 hsa_system_get_info(2, 0x1d4bb98) = 0 -43928826450699:43928826451322 26045:26045 hsa_system_get_info(2, 0x1d4bba0) = 0 -43928826452067:43928826452688 26045:26045 hsa_system_get_info(2, 0x1d4bba8) = 0 -43928826453436:43928826454056 26045:26045 hsa_system_get_info(2, 0x1d4bbb0) = 0 -43928826454819:43928826455439 26045:26045 hsa_system_get_info(2, 0x1d4bbb8) = 0 -43928826456186:43928826456806 26045:26045 hsa_system_get_info(2, 0x1d4bbc0) = 0 -43928826457555:43928826458173 26045:26045 hsa_system_get_info(2, 0x1d4bbc8) = 0 -43928826458919:43928826459541 26045:26045 hsa_system_get_info(2, 0x1d4bbd0) = 0 -43928826460289:43928826460914 26045:26045 hsa_system_get_info(2, 0x1d4bbd8) = 0 -43928826461663:43928826462280 26045:26045 hsa_system_get_info(2, 0x1d4bbe0) = 0 -43928826463025:43928826463644 26045:26045 hsa_system_get_info(2, 0x1d4bbe8) = 0 -43928826464393:43928826465012 26045:26045 hsa_system_get_info(2, 0x1d4bbf0) = 0 -43928826465757:43928826466375 26045:26045 hsa_system_get_info(2, 0x1d4bbf8) = 0 -43928826467117:43928826467734 26045:26045 hsa_system_get_info(2, 0x1d4bc00) = 0 -43928826468482:43928826469098 26045:26045 hsa_system_get_info(2, 0x1d4bc08) = 0 -43928826469845:43928826470464 26045:26045 hsa_system_get_info(2, 0x1d4bc10) = 0 -43928826471210:43928826471834 26045:26045 hsa_system_get_info(2, 0x1d4bc18) = 0 -43928826472578:43928826473198 26045:26045 hsa_system_get_info(2, 0x1d4bc20) = 0 -43928826473965:43928826474582 26045:26045 hsa_system_get_info(2, 0x1d4bc28) = 0 -43928826475328:43928826475951 26045:26045 hsa_system_get_info(2, 0x1d4bc30) = 0 -43928826477453:43928826478079 26045:26045 hsa_system_get_info(2, 0x1d4bc38) = 0 -43928826478831:43928826479455 26045:26045 hsa_system_get_info(2, 0x1d4bc40) = 0 -43928826480202:43928826480829 26045:26045 hsa_system_get_info(2, 0x1d4bc48) = 0 -43928826481577:43928826482201 26045:26045 hsa_system_get_info(2, 0x1d4bc50) = 0 -43928826482951:43928826483568 26045:26045 hsa_system_get_info(2, 0x1d4bc58) = 0 -43928826484323:43928826484943 26045:26045 hsa_system_get_info(2, 0x1d4bc60) = 0 -43928826485691:43928826486313 26045:26045 hsa_system_get_info(2, 0x1d4bc68) = 0 -43928826487059:43928826487686 26045:26045 hsa_system_get_info(2, 0x1d4bc70) = 0 -43928826488435:43928826489050 26045:26045 hsa_system_get_info(2, 0x1d4bc78) = 0 -43928826489795:43928826490411 26045:26045 hsa_system_get_info(2, 0x1d4bc80) = 0 -43928826491156:43928826491772 26045:26045 hsa_system_get_info(2, 0x1d4bc88) = 0 -43928826492520:43928826493139 26045:26045 hsa_system_get_info(2, 0x1d4bc90) = 0 -43928826493882:43928826494508 26045:26045 hsa_system_get_info(2, 0x1d4bc98) = 0 -43928826495254:43928826495872 26045:26045 hsa_system_get_info(2, 0x1d4bca0) = 0 -43928826496634:43928826497252 26045:26045 hsa_system_get_info(2, 0x1d4bca8) = 0 -43928826497999:43928826498614 26045:26045 hsa_system_get_info(2, 0x1d4bcb0) = 0 -43928826499359:43928826499976 26045:26045 hsa_system_get_info(2, 0x1d4bcb8) = 0 -43928826500722:43928826501335 26045:26045 hsa_system_get_info(2, 0x1d4bcc0) = 0 -43928826502083:43928826502705 26045:26045 hsa_system_get_info(2, 0x1d4bcc8) = 0 -43928826503463:43928826504082 26045:26045 hsa_system_get_info(2, 0x1d4bcd0) = 0 -43928826504825:43928826505446 26045:26045 hsa_system_get_info(2, 0x1d4bcd8) = 0 -43928826506194:43928826506811 26045:26045 hsa_system_get_info(2, 0x1d4bce0) = 0 -43928826507561:43928826508182 26045:26045 hsa_system_get_info(2, 0x1d4bce8) = 0 -43928826508931:43928826509556 26045:26045 hsa_system_get_info(2, 0x1d4bcf0) = 0 -43928826510301:43928826510923 26045:26045 hsa_system_get_info(2, 0x1d4bcf8) = 0 -43928826511690:43928826512308 26045:26045 hsa_system_get_info(2, 0x1d4bd00) = 0 -43928826513057:43928826513678 26045:26045 hsa_system_get_info(2, 0x1d4bd08) = 0 -43928826514425:43928826515041 26045:26045 hsa_system_get_info(2, 0x1d4bd10) = 0 -43928826517370:43928826517995 26045:26045 hsa_system_get_info(2, 0x1d4bd18) = 0 -43928826518747:43928826519371 26045:26045 hsa_system_get_info(2, 0x1d4bd20) = 0 -43928826520118:43928826520738 26045:26045 hsa_system_get_info(2, 0x1d4bd28) = 0 -43928826521487:43928826522107 26045:26045 hsa_system_get_info(2, 0x1d4bd30) = 0 -43928826522854:43928826523476 26045:26045 hsa_system_get_info(2, 0x1d4bd38) = 0 -43928826524226:43928826524845 26045:26045 hsa_system_get_info(2, 0x1d4bd40) = 0 -43928826525590:43928826526210 26045:26045 hsa_system_get_info(2, 0x1d4bd48) = 0 -43928826526955:43928826527573 26045:26045 hsa_system_get_info(2, 0x1d4bd50) = 0 -43928826528319:43928826528942 26045:26045 hsa_system_get_info(2, 0x1d4bd58) = 0 -43928826529701:43928826530318 26045:26045 hsa_system_get_info(2, 0x1d4bd60) = 0 -43928826531061:43928826531684 26045:26045 hsa_system_get_info(2, 0x1d4bd68) = 0 -43928826532432:43928826533052 26045:26045 hsa_system_get_info(2, 0x1d4bd70) = 0 -43928826533797:43928826534417 26045:26045 hsa_system_get_info(2, 0x1d4bd78) = 0 -43928826535163:43928826535783 26045:26045 hsa_system_get_info(2, 0x1d4bd80) = 0 -43928826536527:43928826537151 26045:26045 hsa_system_get_info(2, 0x1d4bd88) = 0 -43928826537896:43928826538513 26045:26045 hsa_system_get_info(2, 0x1d4bd90) = 0 -43928826539256:43928826539876 26045:26045 hsa_system_get_info(2, 0x1d4bd98) = 0 -43928826540620:43928826541245 26045:26045 hsa_system_get_info(2, 0x1d4bda0) = 0 -43928826541990:43928826542614 26045:26045 hsa_system_get_info(2, 0x1d4bda8) = 0 -43928826543365:43928826543981 26045:26045 hsa_system_get_info(2, 0x1d4bdb0) = 0 -43928826544728:43928826545348 26045:26045 hsa_system_get_info(2, 0x1d4bdb8) = 0 -43928826546094:43928826546717 26045:26045 hsa_system_get_info(2, 0x1d4bdc0) = 0 -43928826547459:43928826548080 26045:26045 hsa_system_get_info(2, 0x1d4bdc8) = 0 -43928826548839:43928826549453 26045:26045 hsa_system_get_info(2, 0x1d4bdd0) = 0 -43928826550199:43928826550814 26045:26045 hsa_system_get_info(2, 0x1d4bdd8) = 0 -43928826551563:43928826552177 26045:26045 hsa_system_get_info(2, 0x1d4bde0) = 0 -43928826552923:43928826553541 26045:26045 hsa_system_get_info(2, 0x1d4bde8) = 0 -43928826554291:43928826554911 26045:26045 hsa_system_get_info(2, 0x1d4bdf0) = 0 -43928826556400:43928826557028 26045:26045 hsa_system_get_info(2, 0x1d4bdf8) = 0 -43928826557778:43928826558419 26045:26045 hsa_system_get_info(2, 0x1d4be00) = 0 -43928826559169:43928826559797 26045:26045 hsa_system_get_info(2, 0x1d4be08) = 0 -43928826560547:43928826561172 26045:26045 hsa_system_get_info(2, 0x1d4be10) = 0 -43928826561926:43928826562548 26045:26045 hsa_system_get_info(2, 0x1d4be18) = 0 -43928826563297:43928826563921 26045:26045 hsa_system_get_info(2, 0x1d4be20) = 0 -43928826564670:43928826565291 26045:26045 hsa_system_get_info(2, 0x1d4be28) = 0 -43928826566040:43928826566668 26045:26045 hsa_system_get_info(2, 0x1d4be30) = 0 -43928826567412:43928826568033 26045:26045 hsa_system_get_info(2, 0x1d4be38) = 0 -43928826568781:43928826569402 26045:26045 hsa_system_get_info(2, 0x1d4be40) = 0 -43928826570150:43928826570771 26045:26045 hsa_system_get_info(2, 0x1d4be48) = 0 -43928826571521:43928826572145 26045:26045 hsa_system_get_info(2, 0x1d4be50) = 0 -43928826572894:43928826573515 26045:26045 hsa_system_get_info(2, 0x1d4be58) = 0 -43928826574265:43928826574884 26045:26045 hsa_system_get_info(2, 0x1d4be60) = 0 -43928826575633:43928826576257 26045:26045 hsa_system_get_info(2, 0x1d4be68) = 0 -43928826577001:43928826577638 26045:26045 hsa_system_get_info(2, 0x1d4be70) = 0 -43928826578386:43928826579007 26045:26045 hsa_system_get_info(2, 0x1d4be78) = 0 -43928826579758:43928826580379 26045:26045 hsa_system_get_info(2, 0x1d4be80) = 0 -43928826581124:43928826581741 26045:26045 hsa_system_get_info(2, 0x1d4be88) = 0 -43928826582487:43928826583110 26045:26045 hsa_system_get_info(2, 0x1d4be90) = 0 -43928826583855:43928826584478 26045:26045 hsa_system_get_info(2, 0x1d4be98) = 0 -43928826585220:43928826585836 26045:26045 hsa_system_get_info(2, 0x1d4bea0) = 0 -43928826586586:43928826587205 26045:26045 hsa_system_get_info(2, 0x1d4bea8) = 0 -43928826587953:43928826588572 26045:26045 hsa_system_get_info(2, 0x1d4beb0) = 0 -43928826589322:43928826589943 26045:26045 hsa_system_get_info(2, 0x1d4beb8) = 0 -43928826590693:43928826591309 26045:26045 hsa_system_get_info(2, 0x1d4bec0) = 0 -43928826592059:43928826592680 26045:26045 hsa_system_get_info(2, 0x1d4bec8) = 0 -43928826593445:43928826594066 26045:26045 hsa_system_get_info(2, 0x1d4bed0) = 0 -43928826594810:43928826595430 26045:26045 hsa_system_get_info(2, 0x1d4bed8) = 0 -43928826596920:43928826597542 26045:26045 hsa_system_get_info(2, 0x1d4bee0) = 0 -43928826598293:43928826598912 26045:26045 hsa_system_get_info(2, 0x1d4bee8) = 0 -43928826599659:43928826600278 26045:26045 hsa_system_get_info(2, 0x1d4bef0) = 0 -43928826601024:43928826601642 26045:26045 hsa_system_get_info(2, 0x1d4bef8) = 0 -43928826602383:43928826603002 26045:26045 hsa_system_get_info(2, 0x1d4bf00) = 0 -43928826603751:43928826604372 26045:26045 hsa_system_get_info(2, 0x1d4bf08) = 0 -43928826605117:43928826605745 26045:26045 hsa_system_get_info(2, 0x1d4bf10) = 0 -43928826606486:43928826607107 26045:26045 hsa_system_get_info(2, 0x1d4bf18) = 0 -43928826607854:43928826608474 26045:26045 hsa_system_get_info(2, 0x1d4bf20) = 0 -43928826609223:43928826609843 26045:26045 hsa_system_get_info(2, 0x1d4bf28) = 0 -43928826610589:43928826611208 26045:26045 hsa_system_get_info(2, 0x1d4bf30) = 0 -43928826611951:43928826612569 26045:26045 hsa_system_get_info(2, 0x1d4bf38) = 0 -43928826613316:43928826613936 26045:26045 hsa_system_get_info(2, 0x1d4bf40) = 0 -43928826614682:43928826615303 26045:26045 hsa_system_get_info(2, 0x1d4bf48) = 0 -43928826616089:43928826616708 26045:26045 hsa_system_get_info(2, 0x1d4bf50) = 0 -43928826617454:43928826618075 26045:26045 hsa_system_get_info(2, 0x1d4bf58) = 0 -43928826618822:43928826619443 26045:26045 hsa_system_get_info(2, 0x1d4bf60) = 0 -43928826620191:43928826620809 26045:26045 hsa_system_get_info(2, 0x1d4bf68) = 0 -43928826621556:43928826622177 26045:26045 hsa_system_get_info(2, 0x1d4bf70) = 0 -43928826622923:43928826623543 26045:26045 hsa_system_get_info(2, 0x1d4bf78) = 0 -43928826624288:43928826624906 26045:26045 hsa_system_get_info(2, 0x1d4bf80) = 0 -43928826625649:43928826626273 26045:26045 hsa_system_get_info(2, 0x1d4bf88) = 0 -43928826627018:43928826627638 26045:26045 hsa_system_get_info(2, 0x1d4bf90) = 0 -43928826628383:43928826629000 26045:26045 hsa_system_get_info(2, 0x1d4bf98) = 0 -43928826629748:43928826630369 26045:26045 hsa_system_get_info(2, 0x1d4bfa0) = 0 -43928826631117:43928826631732 26045:26045 hsa_system_get_info(2, 0x1d4bfa8) = 0 -43928826632479:43928826633099 26045:26045 hsa_system_get_info(2, 0x1d4bfb0) = 0 -43928826633852:43928826634472 26045:26045 hsa_system_get_info(2, 0x1d4bfb8) = 0 -43928826635965:43928826636590 26045:26045 hsa_system_get_info(2, 0x1d4bfc0) = 0 -43928826637334:43928826637956 26045:26045 hsa_system_get_info(2, 0x1d4bfc8) = 0 -43928826638704:43928826639321 26045:26045 hsa_system_get_info(2, 0x1d4bfd0) = 0 -43928826640067:43928826640687 26045:26045 hsa_system_get_info(2, 0x1d4bfd8) = 0 -43928826641436:43928826642057 26045:26045 hsa_system_get_info(2, 0x1d4bfe0) = 0 -43928826642803:43928826643425 26045:26045 hsa_system_get_info(2, 0x1d4bfe8) = 0 -43928826644170:43928826644790 26045:26045 hsa_system_get_info(2, 0x1d4bff0) = 0 -43928826645536:43928826646158 26045:26045 hsa_system_get_info(2, 0x1d4bff8) = 0 -43928826646901:43928826647526 26045:26045 hsa_system_get_info(2, 0x1d4c000) = 0 -43928826648272:43928826648897 26045:26045 hsa_system_get_info(2, 0x1d4c008) = 0 -43928826649646:43928826650269 26045:26045 hsa_system_get_info(2, 0x1d4c010) = 0 -43928826651018:43928826651643 26045:26045 hsa_system_get_info(2, 0x1d4c018) = 0 -43928826652390:43928826653011 26045:26045 hsa_system_get_info(2, 0x1d4c020) = 0 -43928826653761:43928826654381 26045:26045 hsa_system_get_info(2, 0x1d4c028) = 0 -43928826655141:43928826655763 26045:26045 hsa_system_get_info(2, 0x1d4c030) = 0 -43928826656514:43928826657134 26045:26045 hsa_system_get_info(2, 0x1d4c038) = 0 -43928826657885:43928826658504 26045:26045 hsa_system_get_info(2, 0x1d4c040) = 0 -43928826659252:43928826659874 26045:26045 hsa_system_get_info(2, 0x1d4c048) = 0 -43928826660623:43928826661244 26045:26045 hsa_system_get_info(2, 0x1d4c050) = 0 -43928826661990:43928826662606 26045:26045 hsa_system_get_info(2, 0x1d4c058) = 0 -43928826663351:43928826663969 26045:26045 hsa_system_get_info(2, 0x1d4c060) = 0 -43928826664718:43928826665336 26045:26045 hsa_system_get_info(2, 0x1d4c068) = 0 -43928826666085:43928826666702 26045:26045 hsa_system_get_info(2, 0x1d4c070) = 0 -43928826667449:43928826668070 26045:26045 hsa_system_get_info(2, 0x1d4c078) = 0 -43928826668817:43928826669434 26045:26045 hsa_system_get_info(2, 0x1d4c080) = 0 -43928826670183:43928826670801 26045:26045 hsa_system_get_info(2, 0x1d4c088) = 0 -43928826671564:43928826672183 26045:26045 hsa_system_get_info(2, 0x1d4c090) = 0 -43928826672936:43928826673556 26045:26045 hsa_system_get_info(2, 0x1d4c098) = 0 -43928826674307:43928826674928 26045:26045 hsa_system_get_info(2, 0x1d4c0a0) = 0 -43928826676429:43928826677052 26045:26045 hsa_system_get_info(2, 0x1d4c0a8) = 0 -43928826677794:43928826678407 26045:26045 hsa_system_get_info(2, 0x1d4c0b0) = 0 -43928826679154:43928826679775 26045:26045 hsa_system_get_info(2, 0x1d4c0b8) = 0 -43928826680519:43928826681137 26045:26045 hsa_system_get_info(2, 0x1d4c0c0) = 0 -43928826681882:43928826682506 26045:26045 hsa_system_get_info(2, 0x1d4c0c8) = 0 -43928826683251:43928826683869 26045:26045 hsa_system_get_info(2, 0x1d4c0d0) = 0 -43928826684616:43928826685234 26045:26045 hsa_system_get_info(2, 0x1d4c0d8) = 0 -43928826685987:43928826686614 26045:26045 hsa_system_get_info(2, 0x1d4c0e0) = 0 -43928826687357:43928826687973 26045:26045 hsa_system_get_info(2, 0x1d4c0e8) = 0 -43928826688718:43928826689335 26045:26045 hsa_system_get_info(2, 0x1d4c0f0) = 0 -43928826690082:43928826690697 26045:26045 hsa_system_get_info(2, 0x1d4c0f8) = 0 -43928826691445:43928826692063 26045:26045 hsa_system_get_info(2, 0x1d4c100) = 0 -43928826692811:43928826693427 26045:26045 hsa_system_get_info(2, 0x1d4c108) = 0 -43928826694168:43928826694802 26045:26045 hsa_system_get_info(2, 0x1d4c110) = 0 -43928826695550:43928826696169 26045:26045 hsa_system_get_info(2, 0x1d4c118) = 0 -43928826696916:43928826697539 26045:26045 hsa_system_get_info(2, 0x1d4c120) = 0 -43928826698286:43928826698906 26045:26045 hsa_system_get_info(2, 0x1d4c128) = 0 -43928826699650:43928826700268 26045:26045 hsa_system_get_info(2, 0x1d4c130) = 0 -43928826701017:43928826701640 26045:26045 hsa_system_get_info(2, 0x1d4c138) = 0 -43928826702389:43928826703014 26045:26045 hsa_system_get_info(2, 0x1d4c140) = 0 -43928826703768:43928826704390 26045:26045 hsa_system_get_info(2, 0x1d4c148) = 0 -43928826705135:43928826705761 26045:26045 hsa_system_get_info(2, 0x1d4c150) = 0 -43928826706505:43928826707126 26045:26045 hsa_system_get_info(2, 0x1d4c158) = 0 -43928826707874:43928826708494 26045:26045 hsa_system_get_info(2, 0x1d4c160) = 0 -43928826709236:43928826709854 26045:26045 hsa_system_get_info(2, 0x1d4c168) = 0 -43928826710602:43928826711222 26045:26045 hsa_system_get_info(2, 0x1d4c170) = 0 -43928826711968:43928826712584 26045:26045 hsa_system_get_info(2, 0x1d4c178) = 0 -43928826713348:43928826713968 26045:26045 hsa_system_get_info(2, 0x1d4c180) = 0 -43928826715511:43928826716138 26045:26045 hsa_system_get_info(2, 0x1d4c188) = 0 -43928826716887:43928826717506 26045:26045 hsa_system_get_info(2, 0x1d4c190) = 0 -43928826718255:43928826718868 26045:26045 hsa_system_get_info(2, 0x1d4c198) = 0 -43928826719613:43928826720236 26045:26045 hsa_system_get_info(2, 0x1d4c1a0) = 0 -43928826720983:43928826721603 26045:26045 hsa_system_get_info(2, 0x1d4c1a8) = 0 -43928826722349:43928826722965 26045:26045 hsa_system_get_info(2, 0x1d4c1b0) = 0 -43928826723715:43928826724335 26045:26045 hsa_system_get_info(2, 0x1d4c1b8) = 0 -43928826725084:43928826725704 26045:26045 hsa_system_get_info(2, 0x1d4c1c0) = 0 -43928826726451:43928826727070 26045:26045 hsa_system_get_info(2, 0x1d4c1c8) = 0 -43928826727814:43928826728438 26045:26045 hsa_system_get_info(2, 0x1d4c1d0) = 0 -43928826729186:43928826729806 26045:26045 hsa_system_get_info(2, 0x1d4c1d8) = 0 -43928826730556:43928826731175 26045:26045 hsa_system_get_info(2, 0x1d4c1e0) = 0 -43928826731924:43928826732541 26045:26045 hsa_system_get_info(2, 0x1d4c1e8) = 0 -43928826733290:43928826733908 26045:26045 hsa_system_get_info(2, 0x1d4c1f0) = 0 -43928826734669:43928826735288 26045:26045 hsa_system_get_info(2, 0x1d4c1f8) = 0 -43928826736031:43928826736650 26045:26045 hsa_system_get_info(2, 0x1d4c200) = 0 -43928826737397:43928826738013 26045:26045 hsa_system_get_info(2, 0x1d4c208) = 0 -43928826738761:43928826739383 26045:26045 hsa_system_get_info(2, 0x1d4c210) = 0 -43928826740131:43928826740751 26045:26045 hsa_system_get_info(2, 0x1d4c218) = 0 -43928826741493:43928826742111 26045:26045 hsa_system_get_info(2, 0x1d4c220) = 0 -43928826742857:43928826743475 26045:26045 hsa_system_get_info(2, 0x1d4c228) = 0 -43928826744221:43928826744838 26045:26045 hsa_system_get_info(2, 0x1d4c230) = 0 -43928826745585:43928826746206 26045:26045 hsa_system_get_info(2, 0x1d4c238) = 0 -43928826746953:43928826747572 26045:26045 hsa_system_get_info(2, 0x1d4c240) = 0 -43928826748318:43928826748938 26045:26045 hsa_system_get_info(2, 0x1d4c248) = 0 -43928826749688:43928826750307 26045:26045 hsa_system_get_info(2, 0x1d4c250) = 0 -43928826751054:43928826751668 26045:26045 hsa_system_get_info(2, 0x1d4c258) = 0 -43928826752431:43928826753051 26045:26045 hsa_system_get_info(2, 0x1d4c260) = 0 -43928826753810:43928826754433 26045:26045 hsa_system_get_info(2, 0x1d4c268) = 0 -43928826755983:43928826756612 26045:26045 hsa_system_get_info(2, 0x1d4c270) = 0 -43928826757360:43928826757982 26045:26045 hsa_system_get_info(2, 0x1d4c278) = 0 -43928826758729:43928826759351 26045:26045 hsa_system_get_info(2, 0x1d4c280) = 0 -43928826760097:43928826760720 26045:26045 hsa_system_get_info(2, 0x1d4c288) = 0 -43928826761467:43928826762085 26045:26045 hsa_system_get_info(2, 0x1d4c290) = 0 -43928826762831:43928826763446 26045:26045 hsa_system_get_info(2, 0x1d4c298) = 0 -43928826764189:43928826764815 26045:26045 hsa_system_get_info(2, 0x1d4c2a0) = 0 -43928826765558:43928826766177 26045:26045 hsa_system_get_info(2, 0x1d4c2a8) = 0 -43928826766925:43928826767540 26045:26045 hsa_system_get_info(2, 0x1d4c2b0) = 0 -43928826768286:43928826768904 26045:26045 hsa_system_get_info(2, 0x1d4c2b8) = 0 -43928826769650:43928826770272 26045:26045 hsa_system_get_info(2, 0x1d4c2c0) = 0 -43928826771021:43928826771641 26045:26045 hsa_system_get_info(2, 0x1d4c2c8) = 0 -43928826772388:43928826773007 26045:26045 hsa_system_get_info(2, 0x1d4c2d0) = 0 -43928826773761:43928826774382 26045:26045 hsa_system_get_info(2, 0x1d4c2d8) = 0 -43928826775129:43928826775749 26045:26045 hsa_system_get_info(2, 0x1d4c2e0) = 0 -43928826776495:43928826777116 26045:26045 hsa_system_get_info(2, 0x1d4c2e8) = 0 -43928826777860:43928826778480 26045:26045 hsa_system_get_info(2, 0x1d4c2f0) = 0 -43928826779225:43928826779844 26045:26045 hsa_system_get_info(2, 0x1d4c2f8) = 0 -43928826780593:43928826781216 26045:26045 hsa_system_get_info(2, 0x1d4c300) = 0 -43928826781963:43928826782578 26045:26045 hsa_system_get_info(2, 0x1d4c308) = 0 -43928826783323:43928826783944 26045:26045 hsa_system_get_info(2, 0x1d4c310) = 0 -43928826784687:43928826785304 26045:26045 hsa_system_get_info(2, 0x1d4c318) = 0 -43928826786051:43928826786674 26045:26045 hsa_system_get_info(2, 0x1d4c320) = 0 -43928826787422:43928826788041 26045:26045 hsa_system_get_info(2, 0x1d4c328) = 0 -43928826788787:43928826789408 26045:26045 hsa_system_get_info(2, 0x1d4c330) = 0 -43928826790154:43928826790777 26045:26045 hsa_system_get_info(2, 0x1d4c338) = 0 -43928826791535:43928826792159 26045:26045 hsa_system_get_info(2, 0x1d4c340) = 0 -43928826792904:43928826793524 26045:26045 hsa_system_get_info(2, 0x1d4c348) = 0 -43928826795013:43928826795634 26045:26045 hsa_system_get_info(2, 0x1d4c350) = 0 -43928826796383:43928826797002 26045:26045 hsa_system_get_info(2, 0x1d4c358) = 0 -43928826797747:43928826798364 26045:26045 hsa_system_get_info(2, 0x1d4c360) = 0 -43928826799112:43928826799732 26045:26045 hsa_system_get_info(2, 0x1d4c368) = 0 -43928826800476:43928826801094 26045:26045 hsa_system_get_info(2, 0x1d4c370) = 0 -43928826801844:43928826802469 26045:26045 hsa_system_get_info(2, 0x1d4c378) = 0 -43928826803216:43928826803835 26045:26045 hsa_system_get_info(2, 0x1d4c380) = 0 -43928826804582:43928826805206 26045:26045 hsa_system_get_info(2, 0x1d4c388) = 0 -43928826805950:43928826806573 26045:26045 hsa_system_get_info(2, 0x1d4c390) = 0 -43928826807319:43928826807939 26045:26045 hsa_system_get_info(2, 0x1d4c398) = 0 -43928826808683:43928826809307 26045:26045 hsa_system_get_info(2, 0x1d4c3a0) = 0 -43928826810055:43928826810676 26045:26045 hsa_system_get_info(2, 0x1d4c3a8) = 0 -43928826811423:43928826812045 26045:26045 hsa_system_get_info(2, 0x1d4c3b0) = 0 -43928826812794:43928826813413 26045:26045 hsa_system_get_info(2, 0x1d4c3b8) = 0 -43928826814172:43928826814798 26045:26045 hsa_system_get_info(2, 0x1d4c3c0) = 0 -43928826815543:43928826816165 26045:26045 hsa_system_get_info(2, 0x1d4c3c8) = 0 -43928826816913:43928826817529 26045:26045 hsa_system_get_info(2, 0x1d4c3d0) = 0 -43928826818276:43928826818890 26045:26045 hsa_system_get_info(2, 0x1d4c3d8) = 0 -43928826819637:43928826820256 26045:26045 hsa_system_get_info(2, 0x1d4c3e0) = 0 -43928826820998:43928826821619 26045:26045 hsa_system_get_info(2, 0x1d4c3e8) = 0 -43928826822366:43928826822987 26045:26045 hsa_system_get_info(2, 0x1d4c3f0) = 0 -43928826823730:43928826824351 26045:26045 hsa_system_get_info(2, 0x1d4c3f8) = 0 -43928826825101:43928826825722 26045:26045 hsa_system_get_info(2, 0x1d4c400) = 0 -43928826826464:43928826827083 26045:26045 hsa_system_get_info(2, 0x1d4c408) = 0 -43928826827831:43928826828451 26045:26045 hsa_system_get_info(2, 0x1d4c410) = 0 -43928826829196:43928826829819 26045:26045 hsa_system_get_info(2, 0x1d4c418) = 0 -43928826830583:43928826831201 26045:26045 hsa_system_get_info(2, 0x1d4c420) = 0 -43928826831947:43928826832567 26045:26045 hsa_system_get_info(2, 0x1d4c428) = 0 -43928826833318:43928826833942 26045:26045 hsa_system_get_info(2, 0x1d4c430) = 0 -43928826836038:43928826836668 26045:26045 hsa_system_get_info(2, 0x1d4c438) = 0 -43928826837420:43928826838045 26045:26045 hsa_system_get_info(2, 0x1d4c440) = 0 -43928826838791:43928826839409 26045:26045 hsa_system_get_info(2, 0x1d4c448) = 0 -43928826840155:43928826840770 26045:26045 hsa_system_get_info(2, 0x1d4c450) = 0 -43928826841516:43928826842134 26045:26045 hsa_system_get_info(2, 0x1d4c458) = 0 -43928826842887:43928826843501 26045:26045 hsa_system_get_info(2, 0x1d4c460) = 0 -43928826844245:43928826844862 26045:26045 hsa_system_get_info(2, 0x1d4c468) = 0 -43928826845608:43928826846225 26045:26045 hsa_system_get_info(2, 0x1d4c470) = 0 -43928826846971:43928826847586 26045:26045 hsa_system_get_info(2, 0x1d4c478) = 0 -43928826848333:43928826848951 26045:26045 hsa_system_get_info(2, 0x1d4c480) = 0 -43928826849695:43928826850316 26045:26045 hsa_system_get_info(2, 0x1d4c488) = 0 -43928826851059:43928826851684 26045:26045 hsa_system_get_info(2, 0x1d4c490) = 0 -43928826852429:43928826853048 26045:26045 hsa_system_get_info(2, 0x1d4c498) = 0 -43928826853796:43928826854420 26045:26045 hsa_system_get_info(2, 0x1d4c4a0) = 0 -43928826855185:43928826855807 26045:26045 hsa_system_get_info(2, 0x1d4c4a8) = 0 -43928826856552:43928826857176 26045:26045 hsa_system_get_info(2, 0x1d4c4b0) = 0 -43928826857923:43928826858542 26045:26045 hsa_system_get_info(2, 0x1d4c4b8) = 0 -43928826859289:43928826859910 26045:26045 hsa_system_get_info(2, 0x1d4c4c0) = 0 -43928826860654:43928826861282 26045:26045 hsa_system_get_info(2, 0x1d4c4c8) = 0 -43928826862030:43928826862652 26045:26045 hsa_system_get_info(2, 0x1d4c4d0) = 0 -43928826863454:43928826864076 26045:26045 hsa_system_get_info(2, 0x1d4c4d8) = 0 -43928826864824:43928826865444 26045:26045 hsa_system_get_info(2, 0x1d4c4e0) = 0 -43928826866188:43928826866815 26045:26045 hsa_system_get_info(2, 0x1d4c4e8) = 0 -43928826867565:43928826868186 26045:26045 hsa_system_get_info(2, 0x1d4c4f0) = 0 -43928826868933:43928826869553 26045:26045 hsa_system_get_info(2, 0x1d4c4f8) = 0 -43928826870297:43928826870915 26045:26045 hsa_system_get_info(2, 0x1d4c500) = 0 -43928826871720:43928826872341 26045:26045 hsa_system_get_info(2, 0x1d4c508) = 0 -43928826873091:43928826873709 26045:26045 hsa_system_get_info(2, 0x1d4c510) = 0 -43928826875206:43928826875827 26045:26045 hsa_system_get_info(2, 0x1d4c518) = 0 -43928826876570:43928826877193 26045:26045 hsa_system_get_info(2, 0x1d4c520) = 0 -43928826877939:43928826878562 26045:26045 hsa_system_get_info(2, 0x1d4c528) = 0 -43928826879311:43928826879930 26045:26045 hsa_system_get_info(2, 0x1d4c530) = 0 -43928826880732:43928826881351 26045:26045 hsa_system_get_info(2, 0x1d4c538) = 0 -43928826882100:43928826882717 26045:26045 hsa_system_get_info(2, 0x1d4c540) = 0 -43928826883465:43928826884086 26045:26045 hsa_system_get_info(2, 0x1d4c548) = 0 -43928826884835:43928826885455 26045:26045 hsa_system_get_info(2, 0x1d4c550) = 0 -43928826886202:43928826886824 26045:26045 hsa_system_get_info(2, 0x1d4c558) = 0 -43928826887569:43928826888189 26045:26045 hsa_system_get_info(2, 0x1d4c560) = 0 -43928826888936:43928826889557 26045:26045 hsa_system_get_info(2, 0x1d4c568) = 0 -43928826890299:43928826890922 26045:26045 hsa_system_get_info(2, 0x1d4c570) = 0 -43928826891667:43928826892287 26045:26045 hsa_system_get_info(2, 0x1d4c578) = 0 -43928826893032:43928826893653 26045:26045 hsa_system_get_info(2, 0x1d4c580) = 0 -43928826894401:43928826895019 26045:26045 hsa_system_get_info(2, 0x1d4c588) = 0 -43928826895763:43928826896385 26045:26045 hsa_system_get_info(2, 0x1d4c590) = 0 -43928826897134:43928826897752 26045:26045 hsa_system_get_info(2, 0x1d4c598) = 0 -43928826898496:43928826899127 26045:26045 hsa_system_get_info(2, 0x1d4c5a0) = 0 -43928826899874:43928826900493 26045:26045 hsa_system_get_info(2, 0x1d4c5a8) = 0 -43928826901238:43928826901856 26045:26045 hsa_system_get_info(2, 0x1d4c5b0) = 0 -43928826902602:43928826903221 26045:26045 hsa_system_get_info(2, 0x1d4c5b8) = 0 -43928826903969:43928826904582 26045:26045 hsa_system_get_info(2, 0x1d4c5c0) = 0 -43928826905328:43928826905947 26045:26045 hsa_system_get_info(2, 0x1d4c5c8) = 0 -43928826906695:43928826907310 26045:26045 hsa_system_get_info(2, 0x1d4c5d0) = 0 -43928826908059:43928826908680 26045:26045 hsa_system_get_info(2, 0x1d4c5d8) = 0 -43928826909425:43928826910045 26045:26045 hsa_system_get_info(2, 0x1d4c5e0) = 0 -43928826910792:43928826911410 26045:26045 hsa_system_get_info(2, 0x1d4c5e8) = 0 -43928826912159:43928826912779 26045:26045 hsa_system_get_info(2, 0x1d4c5f0) = 0 -43928826914264:43928826914888 26045:26045 hsa_system_get_info(2, 0x1d4c5f8) = 0 -43928826915634:43928826916249 26045:26045 hsa_system_get_info(2, 0x1d4c600) = 0 -43928826916993:43928826917612 26045:26045 hsa_system_get_info(2, 0x1d4c608) = 0 -43928826918355:43928826918975 26045:26045 hsa_system_get_info(2, 0x1d4c610) = 0 -43928826919723:43928826920342 26045:26045 hsa_system_get_info(2, 0x1d4c618) = 0 -43928826921088:43928826921705 26045:26045 hsa_system_get_info(2, 0x1d4c620) = 0 -43928826922450:43928826923074 26045:26045 hsa_system_get_info(2, 0x1d4c628) = 0 -43928826923823:43928826924440 26045:26045 hsa_system_get_info(2, 0x1d4c630) = 0 -43928826925190:43928826925808 26045:26045 hsa_system_get_info(2, 0x1d4c638) = 0 -43928826926556:43928826927177 26045:26045 hsa_system_get_info(2, 0x1d4c640) = 0 -43928826927921:43928826928541 26045:26045 hsa_system_get_info(2, 0x1d4c648) = 0 -43928826929288:43928826929909 26045:26045 hsa_system_get_info(2, 0x1d4c650) = 0 -43928826930658:43928826931275 26045:26045 hsa_system_get_info(2, 0x1d4c658) = 0 -43928826932021:43928826932663 26045:26045 hsa_system_get_info(2, 0x1d4c660) = 0 -43928826933409:43928826934027 26045:26045 hsa_system_get_info(2, 0x1d4c668) = 0 -43928826934771:43928826935395 26045:26045 hsa_system_get_info(2, 0x1d4c670) = 0 -43928826936144:43928826936757 26045:26045 hsa_system_get_info(2, 0x1d4c678) = 0 -43928826937505:43928826938123 26045:26045 hsa_system_get_info(2, 0x1d4c680) = 0 -43928826938872:43928826939487 26045:26045 hsa_system_get_info(2, 0x1d4c688) = 0 -43928826940229:43928826940850 26045:26045 hsa_system_get_info(2, 0x1d4c690) = 0 -43928826941599:43928826942218 26045:26045 hsa_system_get_info(2, 0x1d4c698) = 0 -43928826942968:43928826943585 26045:26045 hsa_system_get_info(2, 0x1d4c6a0) = 0 -43928826944335:43928826944956 26045:26045 hsa_system_get_info(2, 0x1d4c6a8) = 0 -43928826945699:43928826946317 26045:26045 hsa_system_get_info(2, 0x1d4c6b0) = 0 -43928826947064:43928826947684 26045:26045 hsa_system_get_info(2, 0x1d4c6b8) = 0 -43928826948432:43928826949048 26045:26045 hsa_system_get_info(2, 0x1d4c6c0) = 0 -43928826949792:43928826950411 26045:26045 hsa_system_get_info(2, 0x1d4c6c8) = 0 -43928826951186:43928826951826 26045:26045 hsa_system_get_info(2, 0x1d4c6d0) = 0 -43928826952575:43928826953198 26045:26045 hsa_system_get_info(2, 0x1d4c6d8) = 0 -43928826954706:43928826955335 26045:26045 hsa_system_get_info(2, 0x1d4c6e0) = 0 -43928826956078:43928826956695 26045:26045 hsa_system_get_info(2, 0x1d4c6e8) = 0 -43928826957440:43928826958057 26045:26045 hsa_system_get_info(2, 0x1d4c6f0) = 0 -43928826958805:43928826959425 26045:26045 hsa_system_get_info(2, 0x1d4c6f8) = 0 -43928826960171:43928826960796 26045:26045 hsa_system_get_info(2, 0x1d4c700) = 0 -43928826961542:43928826962169 26045:26045 hsa_system_get_info(2, 0x1d4c708) = 0 -43928826962920:43928826963542 26045:26045 hsa_system_get_info(2, 0x1d4c710) = 0 -43928826964289:43928826964909 26045:26045 hsa_system_get_info(2, 0x1d4c718) = 0 -43928826965657:43928826966278 26045:26045 hsa_system_get_info(2, 0x1d4c720) = 0 -43928826967020:43928826967643 26045:26045 hsa_system_get_info(2, 0x1d4c728) = 0 -43928826968390:43928826969004 26045:26045 hsa_system_get_info(2, 0x1d4c730) = 0 -43928826969752:43928826970377 26045:26045 hsa_system_get_info(2, 0x1d4c738) = 0 -43928826971125:43928826971738 26045:26045 hsa_system_get_info(2, 0x1d4c740) = 0 -43928826972486:43928826973105 26045:26045 hsa_system_get_info(2, 0x1d4c748) = 0 -43928826973875:43928826974498 26045:26045 hsa_system_get_info(2, 0x1d4c750) = 0 -43928826975245:43928826975859 26045:26045 hsa_system_get_info(2, 0x1d4c758) = 0 -43928826976601:43928826977225 26045:26045 hsa_system_get_info(2, 0x1d4c760) = 0 -43928826977971:43928826978590 26045:26045 hsa_system_get_info(2, 0x1d4c768) = 0 -43928826979335:43928826979952 26045:26045 hsa_system_get_info(2, 0x1d4c770) = 0 -43928826980693:43928826981314 26045:26045 hsa_system_get_info(2, 0x1d4c778) = 0 -43928826982061:43928826982682 26045:26045 hsa_system_get_info(2, 0x1d4c780) = 0 -43928826983432:43928826984055 26045:26045 hsa_system_get_info(2, 0x1d4c788) = 0 -43928826984801:43928826985416 26045:26045 hsa_system_get_info(2, 0x1d4c790) = 0 -43928826986167:43928826986790 26045:26045 hsa_system_get_info(2, 0x1d4c798) = 0 -43928826987536:43928826988158 26045:26045 hsa_system_get_info(2, 0x1d4c7a0) = 0 -43928826988907:43928826989525 26045:26045 hsa_system_get_info(2, 0x1d4c7a8) = 0 -43928826990306:43928826990923 26045:26045 hsa_system_get_info(2, 0x1d4c7b0) = 0 -43928826991674:43928826992289 26045:26045 hsa_system_get_info(2, 0x1d4c7b8) = 0 -43928826993771:43928826994398 26045:26045 hsa_system_get_info(2, 0x1d4c7c0) = 0 -43928826995146:43928826995768 26045:26045 hsa_system_get_info(2, 0x1d4c7c8) = 0 -43928826996515:43928826997130 26045:26045 hsa_system_get_info(2, 0x1d4c7d0) = 0 -43928826997880:43928826998497 26045:26045 hsa_system_get_info(2, 0x1d4c7d8) = 0 -43928826999242:43928826999853 26045:26045 hsa_system_get_info(2, 0x1d4c7e0) = 0 -43928827000600:43928827001220 26045:26045 hsa_system_get_info(2, 0x1d4c7e8) = 0 -43928827001968:43928827002591 26045:26045 hsa_system_get_info(2, 0x1d4c7f0) = 0 -43928827003340:43928827003961 26045:26045 hsa_system_get_info(2, 0x1d4c7f8) = 0 -43928827004707:43928827005327 26045:26045 hsa_system_get_info(2, 0x1d4c800) = 0 -43928827006076:43928827006694 26045:26045 hsa_system_get_info(2, 0x1d4c808) = 0 -43928827007443:43928827008063 26045:26045 hsa_system_get_info(2, 0x1d4c810) = 0 -43928827008807:43928827009426 26045:26045 hsa_system_get_info(2, 0x1d4c818) = 0 -43928827010170:43928827010788 26045:26045 hsa_system_get_info(2, 0x1d4c820) = 0 -43928827011541:43928827012167 26045:26045 hsa_system_get_info(2, 0x1d4c828) = 0 -43928827012934:43928827013567 26045:26045 hsa_system_get_info(2, 0x1d4c830) = 0 -43928827014312:43928827014931 26045:26045 hsa_system_get_info(2, 0x1d4c838) = 0 -43928827015679:43928827016302 26045:26045 hsa_system_get_info(2, 0x1d4c840) = 0 -43928827017049:43928827017674 26045:26045 hsa_system_get_info(2, 0x1d4c848) = 0 -43928827018423:43928827019050 26045:26045 hsa_system_get_info(2, 0x1d4c850) = 0 -43928827019799:43928827020420 26045:26045 hsa_system_get_info(2, 0x1d4c858) = 0 -43928827021170:43928827021791 26045:26045 hsa_system_get_info(2, 0x1d4c860) = 0 -43928827022536:43928827023157 26045:26045 hsa_system_get_info(2, 0x1d4c868) = 0 -43928827023902:43928827024518 26045:26045 hsa_system_get_info(2, 0x1d4c870) = 0 -43928827025265:43928827025889 26045:26045 hsa_system_get_info(2, 0x1d4c878) = 0 -43928827026637:43928827027259 26045:26045 hsa_system_get_info(2, 0x1d4c880) = 0 -43928827028008:43928827028634 26045:26045 hsa_system_get_info(2, 0x1d4c888) = 0 -43928827029381:43928827029997 26045:26045 hsa_system_get_info(2, 0x1d4c890) = 0 -43928827030757:43928827031377 26045:26045 hsa_system_get_info(2, 0x1d4c898) = 0 -43928827032122:43928827032741 26045:26045 hsa_system_get_info(2, 0x1d4c8a0) = 0 -43928827034292:43928827034925 26045:26045 hsa_system_get_info(2, 0x1d4c8a8) = 0 -43928827035678:43928827036304 26045:26045 hsa_system_get_info(2, 0x1d4c8b0) = 0 -43928827037055:43928827037676 26045:26045 hsa_system_get_info(2, 0x1d4c8b8) = 0 -43928827038423:43928827039043 26045:26045 hsa_system_get_info(2, 0x1d4c8c0) = 0 -43928827039787:43928827040414 26045:26045 hsa_system_get_info(2, 0x1d4c8c8) = 0 -43928827041162:43928827041785 26045:26045 hsa_system_get_info(2, 0x1d4c8d0) = 0 -43928827042533:43928827043147 26045:26045 hsa_system_get_info(2, 0x1d4c8d8) = 0 -43928827043899:43928827044517 26045:26045 hsa_system_get_info(2, 0x1d4c8e0) = 0 -43928827045265:43928827045883 26045:26045 hsa_system_get_info(2, 0x1d4c8e8) = 0 -43928827046631:43928827047254 26045:26045 hsa_system_get_info(2, 0x1d4c8f0) = 0 -43928827048001:43928827048621 26045:26045 hsa_system_get_info(2, 0x1d4c8f8) = 0 -43928827049367:43928827049988 26045:26045 hsa_system_get_info(2, 0x1d4c900) = 0 -43928827050740:43928827051360 26045:26045 hsa_system_get_info(2, 0x1d4c908) = 0 -43928827052108:43928827052725 26045:26045 hsa_system_get_info(2, 0x1d4c910) = 0 -43928827053488:43928827054104 26045:26045 hsa_system_get_info(2, 0x1d4c918) = 0 -43928827054849:43928827055466 26045:26045 hsa_system_get_info(2, 0x1d4c920) = 0 -43928827056216:43928827056837 26045:26045 hsa_system_get_info(2, 0x1d4c928) = 0 -43928827057583:43928827058197 26045:26045 hsa_system_get_info(2, 0x1d4c930) = 0 -43928827058942:43928827059561 26045:26045 hsa_system_get_info(2, 0x1d4c938) = 0 -43928827060306:43928827060927 26045:26045 hsa_system_get_info(2, 0x1d4c940) = 0 -43928827061670:43928827062290 26045:26045 hsa_system_get_info(2, 0x1d4c948) = 0 -43928827063037:43928827063658 26045:26045 hsa_system_get_info(2, 0x1d4c950) = 0 -43928827064400:43928827065020 26045:26045 hsa_system_get_info(2, 0x1d4c958) = 0 -43928827065769:43928827066382 26045:26045 hsa_system_get_info(2, 0x1d4c960) = 0 -43928827067131:43928827067751 26045:26045 hsa_system_get_info(2, 0x1d4c968) = 0 -43928827068496:43928827069118 26045:26045 hsa_system_get_info(2, 0x1d4c970) = 0 -43928827069870:43928827070485 26045:26045 hsa_system_get_info(2, 0x1d4c978) = 0 -43928827071240:43928827071854 26045:26045 hsa_system_get_info(2, 0x1d4c980) = 0 -43928827073410:43928827074040 26045:26045 hsa_system_get_info(2, 0x1d4c988) = 0 -43928827074783:43928827075410 26045:26045 hsa_system_get_info(2, 0x1d4c990) = 0 -43928827076157:43928827076775 26045:26045 hsa_system_get_info(2, 0x1d4c998) = 0 -43928827077522:43928827078138 26045:26045 hsa_system_get_info(2, 0x1d4c9a0) = 0 -43928827078886:43928827079504 26045:26045 hsa_system_get_info(2, 0x1d4c9a8) = 0 -43928827080250:43928827080870 26045:26045 hsa_system_get_info(2, 0x1d4c9b0) = 0 -43928827081620:43928827082242 26045:26045 hsa_system_get_info(2, 0x1d4c9b8) = 0 -43928827082991:43928827083615 26045:26045 hsa_system_get_info(2, 0x1d4c9c0) = 0 -43928827084366:43928827084982 26045:26045 hsa_system_get_info(2, 0x1d4c9c8) = 0 -43928827085730:43928827086358 26045:26045 hsa_system_get_info(2, 0x1d4c9d0) = 0 -43928827087104:43928827087728 26045:26045 hsa_system_get_info(2, 0x1d4c9d8) = 0 -43928827088478:43928827089095 26045:26045 hsa_system_get_info(2, 0x1d4c9e0) = 0 -43928827089843:43928827090462 26045:26045 hsa_system_get_info(2, 0x1d4c9e8) = 0 -43928827091204:43928827091821 26045:26045 hsa_system_get_info(2, 0x1d4c9f0) = 0 -43928827092587:43928827093205 26045:26045 hsa_system_get_info(2, 0x1d4c9f8) = 0 -43928827093954:43928827094574 26045:26045 hsa_system_get_info(2, 0x1d4ca00) = 0 -43928827095318:43928827095942 26045:26045 hsa_system_get_info(2, 0x1d4ca08) = 0 -43928827096690:43928827097307 26045:26045 hsa_system_get_info(2, 0x1d4ca10) = 0 -43928827098055:43928827098674 26045:26045 hsa_system_get_info(2, 0x1d4ca18) = 0 -43928827099427:43928827100048 26045:26045 hsa_system_get_info(2, 0x1d4ca20) = 0 -43928827100795:43928827101415 26045:26045 hsa_system_get_info(2, 0x1d4ca28) = 0 -43928827102162:43928827102780 26045:26045 hsa_system_get_info(2, 0x1d4ca30) = 0 -43928827103527:43928827104148 26045:26045 hsa_system_get_info(2, 0x1d4ca38) = 0 -43928827104898:43928827105515 26045:26045 hsa_system_get_info(2, 0x1d4ca40) = 0 -43928827106264:43928827106881 26045:26045 hsa_system_get_info(2, 0x1d4ca48) = 0 -43928827107631:43928827108253 26045:26045 hsa_system_get_info(2, 0x1d4ca50) = 0 -43928827109001:43928827109623 26045:26045 hsa_system_get_info(2, 0x1d4ca58) = 0 -43928827110375:43928827110997 26045:26045 hsa_system_get_info(2, 0x1d4ca60) = 0 -43928827111764:43928827112378 26045:26045 hsa_system_get_info(2, 0x1d4ca68) = 0 -43928827113877:43928827114503 26045:26045 hsa_system_get_info(2, 0x1d4ca70) = 0 -43928827115247:43928827115869 26045:26045 hsa_system_get_info(2, 0x1d4ca78) = 0 -43928827116617:43928827117236 26045:26045 hsa_system_get_info(2, 0x1d4ca80) = 0 -43928827117980:43928827118599 26045:26045 hsa_system_get_info(2, 0x1d4ca88) = 0 -43928827119347:43928827119963 26045:26045 hsa_system_get_info(2, 0x1d4ca90) = 0 -43928827120711:43928827121324 26045:26045 hsa_system_get_info(2, 0x1d4ca98) = 0 -43928827122072:43928827122693 26045:26045 hsa_system_get_info(2, 0x1d4caa0) = 0 -43928827123439:43928827124055 26045:26045 hsa_system_get_info(2, 0x1d4caa8) = 0 -43928827124805:43928827125423 26045:26045 hsa_system_get_info(2, 0x1d4cab0) = 0 -43928827126170:43928827126790 26045:26045 hsa_system_get_info(2, 0x1d4cab8) = 0 -43928827127533:43928827128157 26045:26045 hsa_system_get_info(2, 0x1d4cac0) = 0 -43928827128906:43928827129528 26045:26045 hsa_system_get_info(2, 0x1d4cac8) = 0 -43928827130276:43928827130899 26045:26045 hsa_system_get_info(2, 0x1d4cad0) = 0 -43928827131663:43928827132279 26045:26045 hsa_system_get_info(2, 0x1d4cad8) = 0 -43928827133029:43928827133646 26045:26045 hsa_system_get_info(2, 0x1d4cae0) = 0 -43928827134394:43928827135010 26045:26045 hsa_system_get_info(2, 0x1d4cae8) = 0 -43928827135760:43928827136382 26045:26045 hsa_system_get_info(2, 0x1d4caf0) = 0 -43928827137132:43928827137751 26045:26045 hsa_system_get_info(2, 0x1d4caf8) = 0 -43928827138499:43928827139120 26045:26045 hsa_system_get_info(2, 0x1d4cb00) = 0 -43928827139868:43928827140484 26045:26045 hsa_system_get_info(2, 0x1d4cb08) = 0 -43928827141231:43928827141849 26045:26045 hsa_system_get_info(2, 0x1d4cb10) = 0 -43928827142594:43928827143213 26045:26045 hsa_system_get_info(2, 0x1d4cb18) = 0 -43928827143960:43928827144577 26045:26045 hsa_system_get_info(2, 0x1d4cb20) = 0 -43928827145325:43928827145947 26045:26045 hsa_system_get_info(2, 0x1d4cb28) = 0 -43928827146696:43928827147318 26045:26045 hsa_system_get_info(2, 0x1d4cb30) = 0 -43928827148069:43928827148689 26045:26045 hsa_system_get_info(2, 0x1d4cb38) = 0 -43928827149438:43928827150057 26045:26045 hsa_system_get_info(2, 0x1d4cb40) = 0 -43928827150826:43928827151452 26045:26045 hsa_system_get_info(2, 0x1d4cb48) = 0 -43928827152930:43928827153566 26045:26045 hsa_system_get_info(2, 0x1d4cb50) = 0 -43928827154318:43928827154941 26045:26045 hsa_system_get_info(2, 0x1d4cb58) = 0 -43928827155688:43928827156309 26045:26045 hsa_system_get_info(2, 0x1d4cb60) = 0 -43928827157058:43928827157679 26045:26045 hsa_system_get_info(2, 0x1d4cb68) = 0 -43928827158424:43928827159051 26045:26045 hsa_system_get_info(2, 0x1d4cb70) = 0 -43928827159799:43928827160423 26045:26045 hsa_system_get_info(2, 0x1d4cb78) = 0 -43928827161171:43928827161794 26045:26045 hsa_system_get_info(2, 0x1d4cb80) = 0 -43928827162541:43928827163163 26045:26045 hsa_system_get_info(2, 0x1d4cb88) = 0 -43928827163907:43928827164534 26045:26045 hsa_system_get_info(2, 0x1d4cb90) = 0 -43928827165285:43928827165905 26045:26045 hsa_system_get_info(2, 0x1d4cb98) = 0 -43928827166654:43928827167273 26045:26045 hsa_system_get_info(2, 0x1d4cba0) = 0 -43928827168025:43928827168651 26045:26045 hsa_system_get_info(2, 0x1d4cba8) = 0 -43928827169397:43928827170016 26045:26045 hsa_system_get_info(2, 0x1d4cbb0) = 0 -43928827170759:43928827171376 26045:26045 hsa_system_get_info(2, 0x1d4cbb8) = 0 -43928827172133:43928827172756 26045:26045 hsa_system_get_info(2, 0x1d4cbc0) = 0 -43928827173502:43928827174122 26045:26045 hsa_system_get_info(2, 0x1d4cbc8) = 0 -43928827174865:43928827175484 26045:26045 hsa_system_get_info(2, 0x1d4cbd0) = 0 -43928827176230:43928827176850 26045:26045 hsa_system_get_info(2, 0x1d4cbd8) = 0 -43928827177594:43928827178215 26045:26045 hsa_system_get_info(2, 0x1d4cbe0) = 0 -43928827178962:43928827179582 26045:26045 hsa_system_get_info(2, 0x1d4cbe8) = 0 -43928827180327:43928827180944 26045:26045 hsa_system_get_info(2, 0x1d4cbf0) = 0 -43928827181691:43928827182308 26045:26045 hsa_system_get_info(2, 0x1d4cbf8) = 0 -43928827183056:43928827183678 26045:26045 hsa_system_get_info(2, 0x1d4cc00) = 0 -43928827184426:43928827185046 26045:26045 hsa_system_get_info(2, 0x1d4cc08) = 0 -43928827185787:43928827186404 26045:26045 hsa_system_get_info(2, 0x1d4cc10) = 0 -43928827187150:43928827187766 26045:26045 hsa_system_get_info(2, 0x1d4cc18) = 0 -43928827188515:43928827189132 26045:26045 hsa_system_get_info(2, 0x1d4cc20) = 0 -43928827189886:43928827190503 26045:26045 hsa_system_get_info(2, 0x1d4cc28) = 0 -43928827191267:43928827191888 26045:26045 hsa_system_get_info(2, 0x1d4cc30) = 0 -43928827193400:43928827194024 26045:26045 hsa_system_get_info(2, 0x1d4cc38) = 0 -43928827194773:43928827195392 26045:26045 hsa_system_get_info(2, 0x1d4cc40) = 0 -43928827196136:43928827196756 26045:26045 hsa_system_get_info(2, 0x1d4cc48) = 0 -43928827197504:43928827198123 26045:26045 hsa_system_get_info(2, 0x1d4cc50) = 0 -43928827198868:43928827199493 26045:26045 hsa_system_get_info(2, 0x1d4cc58) = 0 -43928827200239:43928827200867 26045:26045 hsa_system_get_info(2, 0x1d4cc60) = 0 -43928827201615:43928827202234 26045:26045 hsa_system_get_info(2, 0x1d4cc68) = 0 -43928827202978:43928827203597 26045:26045 hsa_system_get_info(2, 0x1d4cc70) = 0 -43928827204342:43928827204959 26045:26045 hsa_system_get_info(2, 0x1d4cc78) = 0 -43928827205703:43928827206326 26045:26045 hsa_system_get_info(2, 0x1d4cc80) = 0 -43928827207071:43928827207692 26045:26045 hsa_system_get_info(2, 0x1d4cc88) = 0 -43928827208439:43928827209061 26045:26045 hsa_system_get_info(2, 0x1d4cc90) = 0 -43928827209808:43928827210435 26045:26045 hsa_system_get_info(2, 0x1d4cc98) = 0 -43928827211184:43928827211810 26045:26045 hsa_system_get_info(2, 0x1d4cca0) = 0 -43928827212583:43928827213202 26045:26045 hsa_system_get_info(2, 0x1d4cca8) = 0 -43928827213953:43928827214575 26045:26045 hsa_system_get_info(2, 0x1d4ccb0) = 0 -43928827215328:43928827215955 26045:26045 hsa_system_get_info(2, 0x1d4ccb8) = 0 -43928827216707:43928827217332 26045:26045 hsa_system_get_info(2, 0x1d4ccc0) = 0 -43928827218082:43928827218703 26045:26045 hsa_system_get_info(2, 0x1d4ccc8) = 0 -43928827219451:43928827220074 26045:26045 hsa_system_get_info(2, 0x1d4ccd0) = 0 -43928827220821:43928827221438 26045:26045 hsa_system_get_info(2, 0x1d4ccd8) = 0 -43928827222185:43928827222803 26045:26045 hsa_system_get_info(2, 0x1d4cce0) = 0 -43928827223556:43928827224178 26045:26045 hsa_system_get_info(2, 0x1d4cce8) = 0 -43928827224929:43928827225549 26045:26045 hsa_system_get_info(2, 0x1d4ccf0) = 0 -43928827226295:43928827226915 26045:26045 hsa_system_get_info(2, 0x1d4ccf8) = 0 -43928827227664:43928827228289 26045:26045 hsa_system_get_info(2, 0x1d4cd00) = 0 -43928827229040:43928827229661 26045:26045 hsa_system_get_info(2, 0x1d4cd08) = 0 -43928827230425:43928827231046 26045:26045 hsa_system_get_info(2, 0x1d4cd10) = 0 -43928827232587:43928827233216 26045:26045 hsa_system_get_info(2, 0x1d4cd18) = 0 -43928827233963:43928827234582 26045:26045 hsa_system_get_info(2, 0x1d4cd20) = 0 -43928827235330:43928827235954 26045:26045 hsa_system_get_info(2, 0x1d4cd28) = 0 -43928827236701:43928827237323 26045:26045 hsa_system_get_info(2, 0x1d4cd30) = 0 -43928827238067:43928827238685 26045:26045 hsa_system_get_info(2, 0x1d4cd38) = 0 -43928827239429:43928827240045 26045:26045 hsa_system_get_info(2, 0x1d4cd40) = 0 -43928827240792:43928827241411 26045:26045 hsa_system_get_info(2, 0x1d4cd48) = 0 -43928827242160:43928827242780 26045:26045 hsa_system_get_info(2, 0x1d4cd50) = 0 -43928827243530:43928827244144 26045:26045 hsa_system_get_info(2, 0x1d4cd58) = 0 -43928827244892:43928827245511 26045:26045 hsa_system_get_info(2, 0x1d4cd60) = 0 -43928827246255:43928827246881 26045:26045 hsa_system_get_info(2, 0x1d4cd68) = 0 -43928827247629:43928827248247 26045:26045 hsa_system_get_info(2, 0x1d4cd70) = 0 -43928827248996:43928827249615 26045:26045 hsa_system_get_info(2, 0x1d4cd78) = 0 -43928827250363:43928827250981 26045:26045 hsa_system_get_info(2, 0x1d4cd80) = 0 -43928827251742:43928827252364 26045:26045 hsa_system_get_info(2, 0x1d4cd88) = 0 -43928827253113:43928827253736 26045:26045 hsa_system_get_info(2, 0x1d4cd90) = 0 -43928827254487:43928827255100 26045:26045 hsa_system_get_info(2, 0x1d4cd98) = 0 -43928827255851:43928827256472 26045:26045 hsa_system_get_info(2, 0x1d4cda0) = 0 -43928827257221:43928827257846 26045:26045 hsa_system_get_info(2, 0x1d4cda8) = 0 -43928827258593:43928827259214 26045:26045 hsa_system_get_info(2, 0x1d4cdb0) = 0 -43928827259962:43928827260581 26045:26045 hsa_system_get_info(2, 0x1d4cdb8) = 0 -43928827261327:43928827261951 26045:26045 hsa_system_get_info(2, 0x1d4cdc0) = 0 -43928827262699:43928827263322 26045:26045 hsa_system_get_info(2, 0x1d4cdc8) = 0 -43928827264065:43928827264684 26045:26045 hsa_system_get_info(2, 0x1d4cdd0) = 0 -43928827265430:43928827266050 26045:26045 hsa_system_get_info(2, 0x1d4cdd8) = 0 -43928827266794:43928827267412 26045:26045 hsa_system_get_info(2, 0x1d4cde0) = 0 -43928827268158:43928827268775 26045:26045 hsa_system_get_info(2, 0x1d4cde8) = 0 -43928827269525:43928827270142 26045:26045 hsa_system_get_info(2, 0x1d4cdf0) = 0 -43928827271628:43928827272249 26045:26045 hsa_system_get_info(2, 0x1d4cdf8) = 0 -43928827272994:43928827273611 26045:26045 hsa_system_get_info(2, 0x1d4ce00) = 0 -43928827274358:43928827274982 26045:26045 hsa_system_get_info(2, 0x1d4ce08) = 0 -43928827275751:43928827276379 26045:26045 hsa_system_get_info(2, 0x1d4ce10) = 0 -43928827277123:43928827277740 26045:26045 hsa_system_get_info(2, 0x1d4ce18) = 0 -43928827278487:43928827279109 26045:26045 hsa_system_get_info(2, 0x1d4ce20) = 0 -43928827279855:43928827280475 26045:26045 hsa_system_get_info(2, 0x1d4ce28) = 0 -43928827281221:43928827281841 26045:26045 hsa_system_get_info(2, 0x1d4ce30) = 0 -43928827282582:43928827283202 26045:26045 hsa_system_get_info(2, 0x1d4ce38) = 0 -43928827283947:43928827284565 26045:26045 hsa_system_get_info(2, 0x1d4ce40) = 0 -43928827285312:43928827285935 26045:26045 hsa_system_get_info(2, 0x1d4ce48) = 0 -43928827286684:43928827287303 26045:26045 hsa_system_get_info(2, 0x1d4ce50) = 0 -43928827288048:43928827288670 26045:26045 hsa_system_get_info(2, 0x1d4ce58) = 0 -43928827289417:43928827290036 26045:26045 hsa_system_get_info(2, 0x1d4ce60) = 0 -43928827290784:43928827291400 26045:26045 hsa_system_get_info(2, 0x1d4ce68) = 0 -43928827292147:43928827292769 26045:26045 hsa_system_get_info(2, 0x1d4ce70) = 0 -43928827293518:43928827294139 26045:26045 hsa_system_get_info(2, 0x1d4ce78) = 0 -43928827294910:43928827295529 26045:26045 hsa_system_get_info(2, 0x1d4ce80) = 0 -43928827296273:43928827296893 26045:26045 hsa_system_get_info(2, 0x1d4ce88) = 0 -43928827297640:43928827298255 26045:26045 hsa_system_get_info(2, 0x1d4ce90) = 0 -43928827299002:43928827299620 26045:26045 hsa_system_get_info(2, 0x1d4ce98) = 0 -43928827300365:43928827300985 26045:26045 hsa_system_get_info(2, 0x1d4cea0) = 0 -43928827301730:43928827302352 26045:26045 hsa_system_get_info(2, 0x1d4cea8) = 0 -43928827303095:43928827303712 26045:26045 hsa_system_get_info(2, 0x1d4ceb0) = 0 -43928827304457:43928827305072 26045:26045 hsa_system_get_info(2, 0x1d4ceb8) = 0 -43928827305819:43928827306437 26045:26045 hsa_system_get_info(2, 0x1d4cec0) = 0 -43928827307185:43928827307800 26045:26045 hsa_system_get_info(2, 0x1d4cec8) = 0 -43928827308567:43928827309188 26045:26045 hsa_system_get_info(2, 0x1d4ced0) = 0 -43928827309929:43928827310549 26045:26045 hsa_system_get_info(2, 0x1d4ced8) = 0 -43928827312040:43928827312663 26045:26045 hsa_system_get_info(2, 0x1d4cee0) = 0 -43928827313411:43928827314033 26045:26045 hsa_system_get_info(2, 0x1d4cee8) = 0 -43928827314781:43928827315400 26045:26045 hsa_system_get_info(2, 0x1d4cef0) = 0 -43928827316150:43928827316771 26045:26045 hsa_system_get_info(2, 0x1d4cef8) = 0 -43928827317514:43928827318136 26045:26045 hsa_system_get_info(2, 0x1d4cf00) = 0 -43928827318881:43928827319497 26045:26045 hsa_system_get_info(2, 0x1d4cf08) = 0 -43928827320243:43928827320859 26045:26045 hsa_system_get_info(2, 0x1d4cf10) = 0 -43928827321605:43928827322225 26045:26045 hsa_system_get_info(2, 0x1d4cf18) = 0 -43928827322969:43928827323593 26045:26045 hsa_system_get_info(2, 0x1d4cf20) = 0 -43928827324341:43928827324958 26045:26045 hsa_system_get_info(2, 0x1d4cf28) = 0 -43928827325706:43928827326322 26045:26045 hsa_system_get_info(2, 0x1d4cf30) = 0 -43928827327068:43928827327688 26045:26045 hsa_system_get_info(2, 0x1d4cf38) = 0 -43928827328436:43928827329056 26045:26045 hsa_system_get_info(2, 0x1d4cf40) = 0 -43928827329801:43928827330433 26045:26045 hsa_system_get_info(2, 0x1d4cf48) = 0 -43928827331181:43928827331798 26045:26045 hsa_system_get_info(2, 0x1d4cf50) = 0 -43928827332543:43928827333164 26045:26045 hsa_system_get_info(2, 0x1d4cf58) = 0 -43928827333910:43928827334532 26045:26045 hsa_system_get_info(2, 0x1d4cf60) = 0 -43928827335277:43928827335896 26045:26045 hsa_system_get_info(2, 0x1d4cf68) = 0 -43928827336641:43928827337255 26045:26045 hsa_system_get_info(2, 0x1d4cf70) = 0 -43928827338005:43928827338624 26045:26045 hsa_system_get_info(2, 0x1d4cf78) = 0 -43928827339370:43928827339990 26045:26045 hsa_system_get_info(2, 0x1d4cf80) = 0 -43928827340738:43928827341359 26045:26045 hsa_system_get_info(2, 0x1d4cf88) = 0 -43928827342105:43928827342722 26045:26045 hsa_system_get_info(2, 0x1d4cf90) = 0 -43928827343469:43928827344095 26045:26045 hsa_system_get_info(2, 0x1d4cf98) = 0 -43928827344841:43928827345460 26045:26045 hsa_system_get_info(2, 0x1d4cfa0) = 0 -43928827346207:43928827346830 26045:26045 hsa_system_get_info(2, 0x1d4cfa8) = 0 -43928827347578:43928827348201 26045:26045 hsa_system_get_info(2, 0x1d4cfb0) = 0 -43928827348953:43928827349593 26045:26045 hsa_system_get_info(2, 0x1d4cfb8) = 0 -43928827351075:43928827351700 26045:26045 hsa_system_get_info(2, 0x1d4cfc0) = 0 -43928827352450:43928827353064 26045:26045 hsa_system_get_info(2, 0x1d4cfc8) = 0 -43928827353810:43928827354432 26045:26045 hsa_system_get_info(2, 0x1d4cfd0) = 0 -43928827355176:43928827355802 26045:26045 hsa_system_get_info(2, 0x1d4cfd8) = 0 -43928827356549:43928827357168 26045:26045 hsa_system_get_info(2, 0x1d4cfe0) = 0 -43928827357916:43928827358534 26045:26045 hsa_system_get_info(2, 0x1d4cfe8) = 0 -43928827359278:43928827359898 26045:26045 hsa_system_get_info(2, 0x1d4cff0) = 0 -43928827360642:43928827361261 26045:26045 hsa_system_get_info(2, 0x1d4cff8) = 0 -43928827362007:43928827362626 26045:26045 hsa_system_get_info(2, 0x1d4d000) = 0 -43928827363370:43928827363990 26045:26045 hsa_system_get_info(2, 0x1d4d008) = 0 -43928827364734:43928827365355 26045:26045 hsa_system_get_info(2, 0x1d4d010) = 0 -43928827366101:43928827366720 26045:26045 hsa_system_get_info(2, 0x1d4d018) = 0 -43928827367464:43928827368086 26045:26045 hsa_system_get_info(2, 0x1d4d020) = 0 -43928827368836:43928827369462 26045:26045 hsa_system_get_info(2, 0x1d4d028) = 0 -43928827370220:43928827370835 26045:26045 hsa_system_get_info(2, 0x1d4d030) = 0 -43928827371588:43928827372214 26045:26045 hsa_system_get_info(2, 0x1d4d038) = 0 -43928827372959:43928827373578 26045:26045 hsa_system_get_info(2, 0x1d4d040) = 0 -43928827374326:43928827374945 26045:26045 hsa_system_get_info(2, 0x1d4d048) = 0 -43928827375693:43928827376309 26045:26045 hsa_system_get_info(2, 0x1d4d050) = 0 -43928827377060:43928827377677 26045:26045 hsa_system_get_info(2, 0x1d4d058) = 0 -43928827378421:43928827379045 26045:26045 hsa_system_get_info(2, 0x1d4d060) = 0 -43928827379790:43928827380408 26045:26045 hsa_system_get_info(2, 0x1d4d068) = 0 -43928827381154:43928827381779 26045:26045 hsa_system_get_info(2, 0x1d4d070) = 0 -43928827382530:43928827383151 26045:26045 hsa_system_get_info(2, 0x1d4d078) = 0 -43928827383899:43928827384521 26045:26045 hsa_system_get_info(2, 0x1d4d080) = 0 -43928827385271:43928827385891 26045:26045 hsa_system_get_info(2, 0x1d4d088) = 0 -43928827386639:43928827387253 26045:26045 hsa_system_get_info(2, 0x1d4d090) = 0 -43928827388011:43928827388630 26045:26045 hsa_system_get_info(2, 0x1d4d098) = 0 -43928827389392:43928827390011 26045:26045 hsa_system_get_info(2, 0x1d4d0a0) = 0 -43928827392134:43928827392768 26045:26045 hsa_system_get_info(2, 0x1d4d0a8) = 0 -43928827393514:43928827394134 26045:26045 hsa_system_get_info(2, 0x1d4d0b0) = 0 -43928827394881:43928827395505 26045:26045 hsa_system_get_info(2, 0x1d4d0b8) = 0 -43928827396256:43928827396881 26045:26045 hsa_system_get_info(2, 0x1d4d0c0) = 0 -43928827397632:43928827398257 26045:26045 hsa_system_get_info(2, 0x1d4d0c8) = 0 -43928827399002:43928827399623 26045:26045 hsa_system_get_info(2, 0x1d4d0d0) = 0 -43928827400372:43928827400993 26045:26045 hsa_system_get_info(2, 0x1d4d0d8) = 0 -43928827401744:43928827402362 26045:26045 hsa_system_get_info(2, 0x1d4d0e0) = 0 -43928827403105:43928827403725 26045:26045 hsa_system_get_info(2, 0x1d4d0e8) = 0 -43928827404470:43928827405091 26045:26045 hsa_system_get_info(2, 0x1d4d0f0) = 0 -43928827405835:43928827406454 26045:26045 hsa_system_get_info(2, 0x1d4d0f8) = 0 -43928827407199:43928827407816 26045:26045 hsa_system_get_info(2, 0x1d4d100) = 0 -43928827408567:43928827409187 26045:26045 hsa_system_get_info(2, 0x1d4d108) = 0 -43928827409933:43928827410557 26045:26045 hsa_system_get_info(2, 0x1d4d110) = 0 -43928827411321:43928827411941 26045:26045 hsa_system_get_info(2, 0x1d4d118) = 0 -43928827412692:43928827413315 26045:26045 hsa_system_get_info(2, 0x1d4d120) = 0 -43928827414061:43928827414686 26045:26045 hsa_system_get_info(2, 0x1d4d128) = 0 -43928827415432:43928827416049 26045:26045 hsa_system_get_info(2, 0x1d4d130) = 0 -43928827416799:43928827417418 26045:26045 hsa_system_get_info(2, 0x1d4d138) = 0 -43928827418161:43928827418783 26045:26045 hsa_system_get_info(2, 0x1d4d140) = 0 -43928827419529:43928827420145 26045:26045 hsa_system_get_info(2, 0x1d4d148) = 0 -43928827427996:43928827428640 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43928827429529:43928827431617 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7050) = 0 -43928827432588:43928827435931 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7010) = 0 -43928827436998:43928831667381 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43928832171311:43928832174994 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43928832176659:43928832177319 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43928832178278:43928832178750 26045:26051 hsa_signal_load_relaxed() = 1 -43928831670233:43928832183220 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43928832182362:43928832183727 26045:26051 hsa_signal_store_screlease(, 0) = void -43928832184553:43928832185220 26045:26051 hsa_signal_destroy() = 0 -43928832184841:43928832185548 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43928941382454:43928941384452 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928941524205:43928941524875 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928944821235:43928944822559 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928944827290:43928944828114 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928944830301:43928944830984 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928944833036:43928944833748 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928944881623:43928944882150 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928944884092:43928944884612 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928944886670:43928944887263 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928944889138:43928944889638 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928944938275:43928944938873 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928944940823:43928944941322 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928944943301:43928944943818 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928944945801:43928944946317 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928944993531:43928944994039 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928944996046:43928944996550 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928944998374:43928944998874 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945000877:43928945001389 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945047481:43928945047997 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945050301:43928945050800 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945052824:43928945053331 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945055292:43928945055806 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945101634:43928945102153 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945104075:43928945104578 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945106279:43928945106780 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945114883:43928945115400 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945161473:43928945161996 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945163709:43928945164224 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945166052:43928945166571 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945168337:43928945168839 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945216026:43928945216544 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945218502:43928945219016 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945220707:43928945221230 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945222959:43928945223467 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945269478:43928945270025 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945272119:43928945272629 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945274699:43928945275214 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945277274:43928945277795 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945430624:43928945431207 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945433842:43928945434350 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945436869:43928945437390 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945439833:43928945440339 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945485777:43928945486299 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945488129:43928945488628 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945490470:43928945490969 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945492709:43928945493196 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945536858:43928945537392 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945539091:43928945539643 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945541250:43928945541798 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945543548:43928945544038 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945618932:43928945619453 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945621810:43928945622306 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945624402:43928945624905 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945628384:43928945628899 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945672239:43928945672817 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945674518:43928945675011 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945676800:43928945677295 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945679100:43928945679590 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945724477:43928945724960 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945726721:43928945727220 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945729046:43928945729611 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945731357:43928945731851 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945776998:43928945777505 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945779241:43928945779797 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945781487:43928945782040 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945783817:43928945784370 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945827141:43928945827691 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945829748:43928945830239 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945832066:43928945832555 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945834726:43928945835217 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945879928:43928945880487 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945882124:43928945882626 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945884286:43928945884786 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945886799:43928945887287 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945932465:43928945932964 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945934647:43928945935209 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945937269:43928945937819 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945939546:43928945940042 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43928945983788:43928945984353 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fffcdc38520) = 0 -43928945985907:43928945986389 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fffcdc38520) = 0 -43928945988107:43928945988657 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fffcdc38520) = 0 -43928945990700:43928945991192 26045:26045 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fffcdc38520) = 0 -43929005193572:43929005201288 26045:26045 hsa_executable_create_alt(1, 0, -43929085803268:43929085805784 26045:26045 hsa_code_object_reader_create_from_memory(0x2eec240, , 0x7f14f5ffb2d0) = 0 -43929085809100:43929085977363 26045:26045 hsa_executable_load_agent_code_object(, , , -43929085979767:43929086007324 26045:26045 hsa_executable_freeze(, -43929086014150:43929086015507 26045:26045 hsa_executable_create_alt(1, 0, -43929086028635:43929086029095 26045:26045 hsa_code_object_reader_create_from_memory(0x7f1524151ef0, , 0x3b27400) = 0 -43929086030023:43929086090645 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086092252:43929086112081 26045:26045 hsa_executable_freeze(, -43929086114920:43929086115872 26045:26045 hsa_executable_create_alt(1, 0, -43929086127603:43929086128165 26045:26045 hsa_code_object_reader_create_from_memory(0x7f152414f340, , 0x3b822d0) = 0 -43929086129008:43929086183752 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086185157:43929086204399 26045:26045 hsa_executable_freeze(, -43929086206967:43929086207799 26045:26045 hsa_executable_create_alt(1, 0, -43929086218746:43929086219240 26045:26045 hsa_code_object_reader_create_from_memory(0x2eb9370, , 0x7f153d003110) = 0 -43929086220094:43929086272363 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086273678:43929086292934 26045:26045 hsa_executable_freeze(, -43929086295443:43929086296458 26045:26045 hsa_executable_create_alt(1, 0, -43929086307333:43929086307784 26045:26045 hsa_code_object_reader_create_from_memory(0x2eba8e0, , 0x3b29f00) = 0 -43929086308621:43929086359985 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086361304:43929086380629 26045:26045 hsa_executable_freeze(, -43929086383060:43929086383980 26045:26045 hsa_executable_create_alt(1, 0, -43929086394310:43929086394757 26045:26045 hsa_code_object_reader_create_from_memory(0x1fa2280, , 0x7f15240ca630) = 0 -43929086395626:43929086447073 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086448420:43929086467548 26045:26045 hsa_executable_freeze(, -43929086469925:43929086470768 26045:26045 hsa_executable_create_alt(1, 0, -43929086481093:43929086481518 26045:26045 hsa_code_object_reader_create_from_memory(0x1fa37f0, , 0x7f152410e2a0) = 0 -43929086482371:43929086540989 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086542283:43929086561279 26045:26045 hsa_executable_freeze(, -43929086565182:43929086566012 26045:26045 hsa_executable_create_alt(1, 0, -43929086586948:43929086587437 26045:26045 hsa_code_object_reader_create_from_memory(0x2d81ed0, , 0x7f1524132b80) = 0 -43929086588267:43929086639745 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086641131:43929086660075 26045:26045 hsa_executable_freeze(, -43929086662454:43929086663353 26045:26045 hsa_executable_create_alt(1, 0, -43929086673799:43929086674206 26045:26045 hsa_code_object_reader_create_from_memory(0x2d83440, , 0x7f1524138fd0) = 0 -43929086675028:43929086725590 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086726813:43929086745509 26045:26045 hsa_executable_freeze(, -43929086748053:43929086748753 26045:26045 hsa_executable_create_alt(1, 0, -43929086765679:43929086766141 26045:26045 hsa_code_object_reader_create_from_memory(0x2db0df0, , 0x7f152415e1b0) = 0 -43929086766958:43929086837593 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086838996:43929086860060 26045:26045 hsa_executable_freeze(, -43929086862767:43929086863718 26045:26045 hsa_executable_create_alt(1, 0, -43929086875294:43929086875739 26045:26045 hsa_code_object_reader_create_from_memory(0x2d849b0, , 0x7f152417f1a0) = 0 -43929086876557:43929086929345 26045:26045 hsa_executable_load_agent_code_object(, , , -43929086930659:43929086949791 26045:26045 hsa_executable_freeze(, -43929086952272:43929086953227 26045:26045 hsa_executable_create_alt(1, 0, -43929086963672:43929086964084 26045:26045 hsa_code_object_reader_create_from_memory(0x2d85f20, , 0x7f152419ab60) = 0 -43929086964906:43929087015675 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087016939:43929087036285 26045:26045 hsa_executable_freeze(, -43929087038660:43929087039526 26045:26045 hsa_executable_create_alt(1, 0, -43929087051425:43929087051856 26045:26045 hsa_code_object_reader_create_from_memory(0x2daba70, , 0x7f14f47a9b40) = 0 -43929087052652:43929087107634 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087108963:43929087128819 26045:26045 hsa_executable_freeze(, -43929087131465:43929087132341 26045:26045 hsa_executable_create_alt(1, 0, -43929087143457:43929087144369 26045:26045 hsa_code_object_reader_create_from_memory(0x2da94b0, , 0x7f14f47987a0) = 0 -43929087145172:43929087196169 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087197458:43929087216413 26045:26045 hsa_executable_freeze(, -43929087220194:43929087220993 26045:26045 hsa_executable_create_alt(1, 0, -43929087231204:43929087231636 26045:26045 hsa_code_object_reader_create_from_memory(0x2dae030, , 0x7f14f4777780) = 0 -43929087232473:43929087282411 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087283786:43929087303064 26045:26045 hsa_executable_freeze(, -43929087305366:43929087306185 26045:26045 hsa_executable_create_alt(1, 0, -43929087316162:43929087316572 26045:26045 hsa_code_object_reader_create_from_memory(0x7f1524153460, , 0x7f14f473a6b0) = 0 -43929087317373:43929087371035 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087372312:43929087391713 26045:26045 hsa_executable_freeze(, -43929087394123:43929087395125 26045:26045 hsa_executable_create_alt(1, 0, -43929087405210:43929087405626 26045:26045 hsa_code_object_reader_create_from_memory(0x2d87490, , 0x7f14f47d42c0) = 0 -43929087406440:43929087455989 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087457274:43929087476857 26045:26045 hsa_executable_freeze(, -43929087479412:43929087480096 26045:26045 hsa_executable_create_alt(1, 0, -43929087490079:43929087490492 26045:26045 hsa_code_object_reader_create_from_memory(0x2d88a00, , 0x7f14f47ee870) = 0 -43929087491330:43929087542007 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087543266:43929087563186 26045:26045 hsa_executable_freeze(, -43929087565548:43929087566491 26045:26045 hsa_executable_create_alt(1, 0, -43929087576222:43929087576625 26045:26045 hsa_code_object_reader_create_from_memory(0x2db5770, , 0x7f153ced0920) = 0 -43929087577458:43929087627158 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087628423:43929087647631 26045:26045 hsa_executable_freeze(, -43929087649940:43929087650904 26045:26045 hsa_executable_create_alt(1, 0, -43929087660596:43929087661003 26045:26045 hsa_code_object_reader_create_from_memory(0x2db6ce0, , 0x7f153cee8e20) = 0 -43929087661841:43929087712675 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087713920:43929087732918 26045:26045 hsa_executable_freeze(, -43929087766979:43929087767799 26045:26045 hsa_executable_create_alt(1, 0, -43929087780510:43929087780961 26045:26045 hsa_code_object_reader_create_from_memory(0x7f153d0193b0, , 0x7f153cef3440) = 0 -43929087781805:43929087840749 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087842149:43929087862510 26045:26045 hsa_executable_freeze(, -43929087865443:43929087866495 26045:26045 hsa_executable_create_alt(1, 0, -43929087880558:43929087881006 26045:26045 hsa_code_object_reader_create_from_memory(0x2ef58b0, , 0x7f153cf0dfc0) = 0 -43929087881835:43929087939368 26045:26045 hsa_executable_load_agent_code_object(, , , -43929087940734:43929087960405 26045:26045 hsa_executable_freeze(, -43929087940734:43929087964724 26045:26045 hsa_agent_iterate_isas(, 1, 0x7fffcdc38468) = 0 -43929087967694:43929087968543 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087969345:43929087969747 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087970528:43929087970927 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087971685:43929087972054 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087972807:43929087973192 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087973951:43929087974316 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087975073:43929087975451 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087976209:43929087976577 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087977331:43929087977697 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929087979970:43929087980669 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929087981633:43929087982001 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929087982917:43929087983354 26045:26045 hsa_executable_symbol_get_info(, 2, 0x3ac5ad0) = 0 -43929087984514:43929087984866 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929087985632:43929087985985 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929087986774:43929087987143 26045:26045 hsa_executable_symbol_get_info(, 2, 0x3b49310) = 0 -43929087988125:43929087988481 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929087989240:43929087989593 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929087990383:43929087990747 26045:26045 hsa_executable_symbol_get_info(, 2, 0x7f14f4506900) = 0 -43929087991645:43929087991997 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929087992760:43929087993109 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929087993888:43929087994246 26045:26045 hsa_executable_symbol_get_info(, 2, 0x7f14f44a0970) = 0 -43929087995184:43929087995526 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929087996287:43929087996636 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929087997581:43929087997930 26045:26045 hsa_executable_symbol_get_info(, 2, 0x3be6430) = 0 -43929088006406:43929088006789 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929088007585:43929088007927 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929088008766:43929088009123 26045:26045 hsa_executable_symbol_get_info(, 2, 0x2e52290) = 0 -43929088008766:43929088010074 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088010854:43929088011248 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088012011:43929088012374 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088013564:43929088013914 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929088014682:43929088015030 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929088015821:43929088016177 26045:26045 hsa_executable_symbol_get_info(, 2, 0x7f14b131e650) = 0 -43929088015821:43929088017087 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088017848:43929088018219 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088018974:43929088019342 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088020095:43929088020462 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088021218:43929088021584 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088022339:43929088022716 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088023485:43929088023852 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088024606:43929088024972 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088026156:43929088026494 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929088027252:43929088027601 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929088028376:43929088028728 26045:26045 hsa_executable_symbol_get_info(, 2, 0x7f14b1328d60) = 0 -43929088028376:43929088029609 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929088030781:43929088031128 26045:26045 hsa_executable_symbol_get_info(, 0, 0x7fffcdc38388) = 0 -43929088031890:43929088032230 26045:26045 hsa_executable_symbol_get_info(, 1, 0x7fffcdc38384) = 0 -43929088033016:43929088033371 26045:26045 hsa_executable_symbol_get_info(, 2, 0x2eabcf0) = 0 -43929088033016:43929088034343 26045:26045 hsa_executable_iterate_agent_symbols(, , 1, 0x1d4cbc0) = 0 -43929117719851:43929117721048 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929117725923:43929117726401 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929117728089:43929117728571 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929117733687:43929117734084 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929117738516:43929117738884 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929117739690:43929117740055 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929119036558:43929119037114 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929119038087:43929119038453 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929119039251:43929119039639 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929119882931:43929119883405 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929119884413:43929119884777 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929119885558:43929119885910 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929119899183:43929119899578 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929119900456:43929119900789 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929119901573:43929119901919 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929119907625:43929119908298 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929119909146:43929119909484 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929119910245:43929119910577 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929119918892:43929119919280 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929119920131:43929119920489 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929119921241:43929119921583 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929119924152:43929119924572 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929119925433:43929119925779 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929119926537:43929119926873 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929119928297:43929119928684 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929119929580:43929119929913 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929119930674:43929119931007 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929120567708:43929120568280 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929120569359:43929120569706 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929120570482:43929120570845 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929120572730:43929120573071 26045:26045 hsa_executable_symbol_get_info(, 22, 0x7fffcdc38600) = 0 -43929120573888:43929120574225 26045:26045 hsa_system_major_extension_supported(, , , ) = 0 -43929120576322:43929120576675 26045:26045 hsa_system_get_major_extension_table(, , , 0x7fffcdc38590) = 0 -43929122494960:43929122495666 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929122517488:43929124470235 26045:26045 hsa_queue_create(, , , 1, 0, , , ) = 0 -43929124477808:43929124478536 26045:26045 hsa_amd_profiling_set_profiler_enabled(, 1) = 0 -43929124486342:43929124486970 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 0 -43929124488882:43929124489547 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 0 -43929124490944:43929124492177 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929124493688:43929124494089 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929124496288:43929124497203 26045:26045 hsa_signal_store_relaxed(, 0) = void -43929124502451:43929124503112 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929124527707:43929124528353 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929124535885:43929124538568 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929124539467:43929124539814 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 1 -43929124540627:43929124540972 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 0 -43929124542029:43929124542375 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929124543193:43929124543598 26045:26045 hsa_signal_store_relaxed(, 1) = void -43929124545747:43929126398116 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929126400669:43929126401193 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929126405423:43929126406401 26045:26045 hsa_signal_destroy() = 0 -43929126408754:43929126411164 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929126412455:43929126413102 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929126414082:43929126414824 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929126415872:43929126416400 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929126417717:43929126418254 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929126420309:43929126421012 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929126421932:43929126422480 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e70b0) = 0 -43929126423588:43929126425989 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7070) = 0 -43929126427230:43929126429371 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929126875961:43929126879011 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929126884976:43929126885732 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929126886820:43929126887358 26045:26051 hsa_signal_load_relaxed() = 1 -43929126430234:43929126888873 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929126888255:43929126889595 26045:26051 hsa_signal_store_screlease(, 0) = void -43929126890507:43929126891019 26045:26051 hsa_signal_destroy() = 0 -43929127420349:43929127421117 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929141918502:43929141919581 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929141924447:43929141925584 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929141927676:43929141930517 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929141931650:43929141932428 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929141933280:43929141933887 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929141934665:43929141935144 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929142381321:43929142382074 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929142383966:43929142384597 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929142385767:43929142387371 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7110) = 0 -43929142388285:43929142392492 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e70d0) = 0 -43929142393468:43929142395587 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929142880274:43929142883588 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929142885175:43929142885839 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929142886976:43929142887509 26045:26051 hsa_signal_load_relaxed() = 1 -43929142396510:43929142889061 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929142888395:43929142889771 26045:26051 hsa_signal_store_screlease(, 0) = void -43929142890334:43929142891041 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929142890711:43929142891354 26045:26051 hsa_signal_destroy() = 0 -43929142906316:43929142906961 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929142914287:43929142915024 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 2 -43929142915963:43929142916418 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 2 -43929142917346:43929142917946 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929142924529:43929142924993 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929142926125:43929142926699 26045:26045 hsa_signal_store_relaxed(, 2) = void -43929142928379:43929142929013 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929142935078:43929142935715 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929142938302:43929142941222 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929142942072:43929142942456 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 3 -43929142943202:43929142943541 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 2 -43929142944431:43929142944758 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929142945499:43929142945884 26045:26045 hsa_signal_store_relaxed(, 3) = void -43929142946971:43929144835668 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929144837159:43929144837630 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929144839147:43929144839798 26045:26045 hsa_signal_destroy() = 0 -43929144840904:43929144841331 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929144842389:43929144843053 26045:26045 hsa_signal_destroy() = 0 -43929144844518:43929144845630 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929144846556:43929144847031 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929144847884:43929144848436 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929144849331:43929144849756 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929144850713:43929144851122 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929144852167:43929144852863 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929144853731:43929144854384 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7170) = 0 -43929144855272:43929144857346 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7130) = 0 -43929144858223:43929144859107 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929145322440:43929145325002 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929145326402:43929145327119 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929145328150:43929145328687 26045:26051 hsa_signal_load_relaxed() = 1 -43929144859983:43929145330204 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929145329598:43929145330978 26045:26051 hsa_signal_store_screlease(, 0) = void -43929145331922:43929145332427 26045:26051 hsa_signal_destroy() = 0 -43929145766304:43929145767114 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929160298088:43929160299227 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929160303814:43929160305098 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929160307399:43929160309746 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929160310873:43929160311523 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929160312367:43929160312977 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929160313908:43929160314306 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929160759244:43929160760013 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929160762090:43929160762725 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929160763836:43929160765485 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e71d0) = 0 -43929160766456:43929160770508 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7190) = 0 -43929160771466:43929160773092 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929161257204:43929161260228 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929161261769:43929161262410 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929161263521:43929161264052 26045:26051 hsa_signal_load_relaxed() = 1 -43929160773941:43929161265626 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929161264960:43929161266425 26045:26051 hsa_signal_store_screlease(, 0) = void -43929161266955:43929161267642 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929161267313:43929161267950 26045:26051 hsa_signal_destroy() = 0 -43929161282365:43929161283005 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929161289306:43929161290160 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 4 -43929161290959:43929161291379 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 4 -43929161292331:43929161292932 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929161293799:43929161294196 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929161295193:43929161295762 26045:26045 hsa_signal_store_relaxed(, 4) = void -43929161297277:43929161297910 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929161303737:43929161304375 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929161306276:43929161306940 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929161311781:43929161312158 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 5 -43929161312911:43929161313244 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 4 -43929161314059:43929161314385 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929161315129:43929161315522 26045:26045 hsa_signal_store_relaxed(, 5) = void -43929161316594:43929163210848 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929163212468:43929163212966 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929163214605:43929163215208 26045:26045 hsa_signal_destroy() = 0 -43929163216250:43929163216683 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929163217711:43929163218146 26045:26045 hsa_signal_destroy() = 0 -43929163219554:43929163220608 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929163221589:43929163222062 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929163222971:43929163223501 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929163224327:43929163224734 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929163225688:43929163226096 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929163227177:43929163227868 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929163228737:43929163229335 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7230) = 0 -43929163230196:43929163232166 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e71f0) = 0 -43929163233029:43929163233872 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929163696128:43929163698891 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929163700289:43929163701008 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929163702034:43929163702553 26045:26051 hsa_signal_load_relaxed() = 1 -43929163234741:43929163704075 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929163703456:43929163704794 26045:26051 hsa_signal_store_screlease(, 0) = void -43929163705731:43929163706241 26045:26051 hsa_signal_destroy() = 0 -43929164147117:43929164147936 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929178649862:43929178650929 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929178655359:43929178656553 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929178658472:43929178661282 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929178666568:43929178667206 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929178668047:43929178668617 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929178669438:43929178669831 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929179111859:43929179112621 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929179114623:43929179115261 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929179116404:43929179117991 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7290) = 0 -43929179118993:43929179123011 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7250) = 0 -43929179123935:43929179125613 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929179610189:43929179613422 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929179614944:43929179615589 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929179616623:43929179617149 26045:26051 hsa_signal_load_relaxed() = 1 -43929179126429:43929179618696 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929179618022:43929179619409 26045:26051 hsa_signal_store_screlease(, 0) = void -43929179620092:43929179620761 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929179620294:43929179620913 26045:26051 hsa_signal_destroy() = 0 -43929179634963:43929179635601 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929179641290:43929179642083 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 6 -43929179642905:43929179643337 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 6 -43929179644251:43929179644846 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929179645660:43929179646056 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929179647017:43929179647589 26045:26045 hsa_signal_store_relaxed(, 6) = void -43929179649054:43929179649689 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929179655331:43929179655961 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929179657798:43929179658473 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929179659244:43929179659619 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 7 -43929179660363:43929179660694 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 6 -43929179661494:43929179661830 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929179662568:43929179662949 26045:26045 hsa_signal_store_relaxed(, 7) = void -43929179663993:43929181590303 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929181619484:43929181620179 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929181622284:43929181623063 26045:26045 hsa_signal_destroy() = 0 -43929181624207:43929181624657 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929181625685:43929181626121 26045:26045 hsa_signal_destroy() = 0 -43929181627577:43929181628983 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929181629946:43929181630483 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929181631416:43929181632029 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929181632871:43929181633296 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929181634336:43929181634826 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929181636098:43929181636820 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929181637788:43929181638679 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e72f0) = 0 -43929181639606:43929181642667 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e72b0) = 0 -43929181643594:43929181644746 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929182108436:43929182111061 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929182112513:43929182113244 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929182114295:43929182114831 26045:26051 hsa_signal_load_relaxed() = 1 -43929181645669:43929182116357 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929182115730:43929182117083 26045:26051 hsa_signal_store_screlease(, 0) = void -43929182118023:43929182118538 26045:26051 hsa_signal_destroy() = 0 -43929182554379:43929182555185 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929197179150:43929197180286 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929197185918:43929197186974 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929197188745:43929197191516 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929197192634:43929197193332 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929197194157:43929197194988 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929197195763:43929197196466 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929197639562:43929197640284 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929197642049:43929197642674 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929197647257:43929197648785 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7350) = 0 -43929197649713:43929197654010 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7310) = 0 -43929197654963:43929197656940 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929198141437:43929198144433 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929198146082:43929198146725 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929198147841:43929198148365 26045:26051 hsa_signal_load_relaxed() = 1 -43929197657834:43929198149905 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929198149238:43929198150606 26045:26051 hsa_signal_store_screlease(, 0) = void -43929198151096:43929198151774 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929198151491:43929198152129 26045:26051 hsa_signal_destroy() = 0 -43929198167682:43929198168323 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929198175602:43929198176160 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 8 -43929198177128:43929198177750 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 8 -43929198178659:43929198179237 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929198180069:43929198180442 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929198181609:43929198182207 26045:26045 hsa_signal_store_relaxed(, 8) = void -43929198183983:43929198184623 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929198192257:43929198192891 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929198195148:43929198195742 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929198196512:43929198196848 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 9 -43929198197583:43929198197928 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 8 -43929198198884:43929198199215 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929198199973:43929198200359 26045:26045 hsa_signal_store_relaxed(, 9) = void -43929198201386:43929200128344 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929200143210:43929200144035 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929200146713:43929200157867 26045:26045 hsa_signal_destroy() = 0 -43929200159014:43929200159451 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929200160450:43929200160892 26045:26045 hsa_signal_destroy() = 0 -43929200162403:43929200164055 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929200167276:43929200167811 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929200168708:43929200169341 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929200170181:43929200170596 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929200171699:43929200172179 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929200173447:43929200174157 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929200175140:43929200176074 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e73b0) = 0 -43929200177011:43929200180130 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7370) = 0 -43929200181071:43929200182179 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929200644644:43929200647296 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929200648747:43929200649480 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929200650537:43929200651072 26045:26051 hsa_signal_load_relaxed() = 1 -43929200183101:43929200652597 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929200651976:43929200653348 26045:26051 hsa_signal_store_screlease(, 0) = void -43929200654294:43929200654806 26045:26051 hsa_signal_destroy() = 0 -43929201088720:43929201089509 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929215718834:43929215719914 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929215725649:43929215726725 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929215729039:43929215732120 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929215733416:43929215734361 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929215735201:43929215735964 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929215736772:43929215737264 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929216190373:43929216191105 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929216192996:43929216193619 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929216194714:43929216196179 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7410) = 0 -43929216197150:43929216201580 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e73d0) = 0 -43929216202555:43929216204535 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929216689694:43929216692945 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929216694510:43929216695172 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929216701266:43929216701997 26045:26051 hsa_signal_load_relaxed() = 1 -43929216205397:43929216703557 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929216702875:43929216704289 26045:26051 hsa_signal_store_screlease(, 0) = void -43929216704826:43929216705552 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929216705207:43929216705812 26045:26051 hsa_signal_destroy() = 0 -43929216721433:43929216722081 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929216729835:43929216730394 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 10 -43929216731356:43929216731819 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 10 -43929216732766:43929216733379 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929216734157:43929216734514 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929216735712:43929216736308 26045:26045 hsa_signal_store_relaxed(, 10) = void -43929216737967:43929216738602 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929216744351:43929216744982 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929216747282:43929216747884 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929216748636:43929216748966 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 11 -43929216749702:43929216750028 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 10 -43929216750974:43929216751298 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929216752059:43929216752446 26045:26045 hsa_signal_store_relaxed(, 11) = void -43929216753399:43929218680911 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929218695538:43929218696359 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929218699102:43929218700184 26045:26045 hsa_signal_destroy() = 0 -43929218711318:43929218711815 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929218712855:43929218713295 26045:26045 hsa_signal_destroy() = 0 -43929218714750:43929218716150 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929218717153:43929218717672 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929218718550:43929218719175 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929218720014:43929218720432 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929218721475:43929218721952 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929218723210:43929218723921 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929218727837:43929218728720 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7470) = 0 -43929218729671:43929218732684 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7430) = 0 -43929218733630:43929218734736 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929219198227:43929219200879 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929219202327:43929219203055 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929219204110:43929219204646 26045:26051 hsa_signal_load_relaxed() = 1 -43929218735699:43929219206140 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929219205539:43929219206969 26045:26051 hsa_signal_store_screlease(, 0) = void -43929219207917:43929219208430 26045:26051 hsa_signal_destroy() = 0 -43929219642515:43929219643313 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929234217987:43929234219286 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929234225251:43929234226486 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929234228326:43929234231575 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929234232672:43929234233504 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929234234443:43929234235073 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929234235847:43929234236316 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929234679911:43929234680764 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929234682821:43929234683447 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929234684452:43929234685996 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e74d0) = 0 -43929234686956:43929234691271 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7490) = 0 -43929234692247:43929234694341 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929235178335:43929235181357 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929235182952:43929235183612 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929235184750:43929235185284 26045:26051 hsa_signal_load_relaxed() = 1 -43929234695209:43929235186827 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929235186173:43929235187551 26045:26051 hsa_signal_store_screlease(, 0) = void -43929235188065:43929235188739 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929235188437:43929235189044 26045:26051 hsa_signal_destroy() = 0 -43929235205469:43929235206116 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929235213466:43929235214267 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 12 -43929235215161:43929235215631 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 12 -43929235216590:43929235217178 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929235217960:43929235218316 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929235219451:43929235220050 26045:26045 hsa_signal_store_relaxed(, 12) = void -43929235221640:43929235222272 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929235228654:43929235229287 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929235231441:43929235232007 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929235232768:43929235233100 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 13 -43929235233842:43929235234170 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 12 -43929235235106:43929235235429 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929235236189:43929235236569 26045:26045 hsa_signal_store_relaxed(, 13) = void -43929235237581:43929237160160 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929237174446:43929237175262 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929237177922:43929237179008 26045:26045 hsa_signal_destroy() = 0 -43929237190705:43929237191174 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929237192184:43929237192667 26045:26045 hsa_signal_destroy() = 0 -43929237194163:43929237195597 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929237196571:43929237197090 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929237197976:43929237198604 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929237199445:43929237199859 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929237200897:43929237201377 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929237202625:43929237203337 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929237204319:43929237205149 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7530) = 0 -43929237206090:43929237209147 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e74f0) = 0 -43929237210086:43929237211200 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929237675533:43929237678209 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929237679660:43929237680392 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929237683765:43929237684303 26045:26051 hsa_signal_load_relaxed() = 1 -43929237212145:43929237685841 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929237685213:43929237686624 26045:26051 hsa_signal_store_screlease(, 0) = void -43929237687535:43929237688051 26045:26051 hsa_signal_destroy() = 0 -43929238128939:43929238129704 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929252725796:43929252726869 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929252732974:43929252734294 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929252736110:43929252739612 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929252740661:43929252741411 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929252742238:43929252742905 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929252743688:43929252744160 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929253190777:43929253191643 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929253193368:43929253193993 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929253195265:43929253196908 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7590) = 0 -43929253197819:43929253201962 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7550) = 0 -43929253203157:43929253205042 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929253688457:43929253691441 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929253693036:43929253693689 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929253694775:43929253695311 26045:26051 hsa_signal_load_relaxed() = 1 -43929253205908:43929253696857 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929253696201:43929253697573 26045:26051 hsa_signal_store_screlease(, 0) = void -43929253698146:43929253698827 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929253698459:43929253699064 26045:26051 hsa_signal_destroy() = 0 -43929253714551:43929253715198 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929253722920:43929253723480 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 14 -43929253724470:43929253724942 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 14 -43929253726040:43929253726634 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929253727442:43929253727801 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929253733506:43929253734114 26045:26045 hsa_signal_store_relaxed(, 14) = void -43929253735718:43929253736349 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929253742530:43929253743160 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929253745473:43929253745983 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929253746747:43929253747083 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 15 -43929253747824:43929253748182 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 14 -43929253749125:43929253749448 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929253750201:43929253750577 26045:26045 hsa_signal_store_relaxed(, 15) = void -43929253751529:43929255680707 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929255694849:43929255695682 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929255698416:43929255699480 26045:26045 hsa_signal_destroy() = 0 -43929255710585:43929255711081 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929255712120:43929255712567 26045:26045 hsa_signal_destroy() = 0 -43929255713971:43929255715488 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929255716461:43929255716985 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929255717913:43929255718542 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929255719370:43929255719788 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929255720851:43929255721330 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929255722588:43929255723299 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929255724278:43929255725216 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e75f0) = 0 -43929255726152:43929255729149 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e75b0) = 0 -43929255730081:43929255731194 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929256194930:43929256197868 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929256199312:43929256200047 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929256201104:43929256201639 26045:26051 hsa_signal_load_relaxed() = 1 -43929255732119:43929256203244 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929256202534:43929256203899 26045:26051 hsa_signal_store_screlease(, 0) = void -43929256204837:43929256205348 26045:26051 hsa_signal_destroy() = 0 -43929256640510:43929256641310 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929271251798:43929271252869 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929271258982:43929271260167 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929271262222:43929271265016 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929271266149:43929271266942 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929271267767:43929271268385 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929271269171:43929271269563 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929271715861:43929271716826 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929271718734:43929271719355 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929271720488:43929271722204 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7650) = 0 -43929271723228:43929271727704 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7610) = 0 -43929271728681:43929271730754 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929272216642:43929272219852 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929272221470:43929272222141 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929272223317:43929272223851 26045:26051 hsa_signal_load_relaxed() = 1 -43929271731620:43929272225641 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929272224932:43929272226347 26045:26051 hsa_signal_store_screlease(, 0) = void -43929272226937:43929272227617 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929272227229:43929272227782 26045:26051 hsa_signal_destroy() = 0 -43929272243792:43929272244434 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929272252112:43929272252669 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 16 -43929272253657:43929272254157 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 16 -43929272255189:43929272255788 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929272256660:43929272257019 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929272258161:43929272258767 26045:26045 hsa_signal_store_relaxed(, 16) = void -43929272260365:43929272261003 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929272267435:43929272268067 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929272270310:43929272270973 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929272271727:43929272272052 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 17 -43929272277434:43929272277791 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 16 -43929272278756:43929272279093 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929272279873:43929272280269 26045:26045 hsa_signal_store_relaxed(, 17) = void -43929272281334:43929274207445 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929274221831:43929274222647 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929274225298:43929274226388 26045:26045 hsa_signal_destroy() = 0 -43929274237620:43929274238115 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929274239132:43929274239570 26045:26045 hsa_signal_destroy() = 0 -43929274241108:43929274242524 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929274243495:43929274244033 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929274244918:43929274245551 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929274246381:43929274246795 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929274247842:43929274248326 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929274249590:43929274250301 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929274251287:43929274252158 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e76b0) = 0 -43929274253095:43929274256088 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7670) = 0 -43929274257046:43929274258217 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929274721699:43929274724363 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929274725841:43929274726575 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929274727630:43929274728165 26045:26051 hsa_signal_load_relaxed() = 1 -43929274259162:43929274729674 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929274729066:43929274730448 26045:26051 hsa_signal_store_screlease(, 0) = void -43929274731395:43929274731900 26045:26051 hsa_signal_destroy() = 0 -43929275171650:43929275172458 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929289814663:43929289815728 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929289821211:43929289822372 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929289824344:43929289827332 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929289828467:43929289829230 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929289835294:43929289836125 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929289837081:43929289837631 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929290279991:43929290280886 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929290282941:43929290283563 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929290284839:43929290286693 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7710) = 0 -43929290287578:43929290292217 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e76d0) = 0 -43929290293198:43929290295199 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929290779407:43929290782442 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929290784015:43929290784671 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929290785743:43929290786273 26045:26051 hsa_signal_load_relaxed() = 1 -43929290296105:43929290787781 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929290787120:43929290788507 26045:26051 hsa_signal_store_screlease(, 0) = void -43929290789005:43929290789685 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929290789393:43929290789997 26045:26051 hsa_signal_destroy() = 0 -43929290805692:43929290806339 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929290814130:43929290814698 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 18 -43929290815668:43929290816131 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 18 -43929290817177:43929290817824 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929290818598:43929290818959 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929290820094:43929290820689 26045:26045 hsa_signal_store_relaxed(, 18) = void -43929290822228:43929290822862 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929290829132:43929290829765 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929290832019:43929290832688 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929290833461:43929290833789 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 19 -43929290834524:43929290834863 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 18 -43929290835830:43929290836155 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929290836915:43929290837295 26045:26045 hsa_signal_store_relaxed(, 19) = void -43929290838242:43929292769269 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929292784099:43929292784930 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929292801324:43929292802112 26045:26045 hsa_signal_destroy() = 0 -43929292803246:43929292803702 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929292804745:43929292805232 26045:26045 hsa_signal_destroy() = 0 -43929292806646:43929292808146 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929292809118:43929292809648 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929292810530:43929292811149 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929292811978:43929292812404 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929292813446:43929292813932 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929292815217:43929292815938 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929292816904:43929292817747 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7770) = 0 -43929292818680:43929292821769 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7730) = 0 -43929292822699:43929292823821 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929293287543:43929293290171 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929293291608:43929293292339 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929293293394:43929293293927 26045:26051 hsa_signal_load_relaxed() = 1 -43929292824747:43929293295456 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929293294828:43929293296229 26045:26051 hsa_signal_store_screlease(, 0) = void -43929293297169:43929293297682 26045:26051 hsa_signal_destroy() = 0 -43929293731198:43929293731998 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929308305284:43929308306396 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929308312898:43929308314256 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929308316592:43929308320034 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929308321210:43929308322001 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929308322835:43929308323545 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929308324343:43929308324826 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929308797336:43929308798359 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929308800050:43929308800680 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929308801820:43929308803603 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e77d0) = 0 -43929308810863:43929308815573 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7790) = 0 -43929308816568:43929308818521 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929309302684:43929309305886 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929309307400:43929309308064 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929309309195:43929309309903 26045:26051 hsa_signal_load_relaxed() = 1 -43929308819426:43929309311430 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929309310761:43929309312330 26045:26051 hsa_signal_store_screlease(, 0) = void -43929309312617:43929309313281 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929309313215:43929309313876 26045:26051 hsa_signal_destroy() = 0 -43929309331592:43929309332237 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929309340681:43929309341462 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 20 -43929309342354:43929309342848 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 20 -43929309343848:43929309344463 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929309345292:43929309345659 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929309346815:43929309347431 26045:26045 hsa_signal_store_relaxed(, 20) = void -43929309348990:43929309349625 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929309355764:43929309356394 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929309358922:43929309359488 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929309360253:43929309360583 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 21 -43929309361319:43929309361667 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 20 -43929309362614:43929309362941 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929309363693:43929309364084 26045:26045 hsa_signal_store_relaxed(, 21) = void -43929309365079:43929311284734 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929311286913:43929311287458 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929311299847:43929311300769 26045:26045 hsa_signal_destroy() = 0 -43929311302019:43929311302523 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929311303568:43929311303999 26045:26045 hsa_signal_destroy() = 0 -43929311305694:43929311318216 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929311319282:43929311319760 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929311322230:43929311322860 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929311323689:43929311324097 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929311325039:43929311325459 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929311326492:43929311327210 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929311328088:43929311328947 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7830) = 0 -43929311329827:43929311332157 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e77f0) = 0 -43929311333022:43929311333916 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929311797220:43929311799875 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929311801316:43929311802044 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929311803091:43929311803628 26045:26051 hsa_signal_load_relaxed() = 1 -43929311334785:43929311805182 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929311804531:43929311805914 26045:26051 hsa_signal_store_screlease(, 0) = void -43929311806865:43929311807376 26045:26051 hsa_signal_destroy() = 0 -43929312247839:43929312248625 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929326889687:43929326890754 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929326895540:43929326896687 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929326898613:43929326901357 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929326902536:43929326903277 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929326904088:43929326904624 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929326905470:43929326905944 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929327364798:43929327365528 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929327367112:43929327367744 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929327369121:43929327370717 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7890) = 0 -43929327371734:43929327375787 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7850) = 0 -43929327376993:43929327378622 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929327863480:43929327866747 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929327868280:43929327868937 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929327870054:43929327870600 26045:26051 hsa_signal_load_relaxed() = 1 -43929327379570:43929327877083 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929327876377:43929327877847 26045:26051 hsa_signal_store_screlease(, 0) = void -43929327878483:43929327879159 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929327878736:43929327879394 26045:26051 hsa_signal_destroy() = 0 -43929327892901:43929327893541 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929327899425:43929327900216 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 22 -43929327901120:43929327901585 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 22 -43929327902498:43929327903111 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929327903920:43929327904363 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929327905260:43929327905838 26045:26045 hsa_signal_store_relaxed(, 22) = void -43929327906973:43929327907605 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929327913727:43929327914359 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929327916085:43929327916704 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929327917534:43929327917917 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 23 -43929327918667:43929327919005 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 22 -43929327919750:43929327920069 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929327920801:43929327921187 26045:26045 hsa_signal_store_relaxed(, 23) = void -43929327922222:43929329851018 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929329865504:43929329866314 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929329869352:43929329870430 26045:26045 hsa_signal_destroy() = 0 -43929329881044:43929329881493 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929329882793:43929329883233 26045:26045 hsa_signal_destroy() = 0 -43929329884759:43929329886177 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929329887151:43929329887676 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929329888659:43929329889291 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929329890379:43929329890792 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929329891833:43929329892304 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929329893559:43929329894274 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929329895258:43929329896150 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e78f0) = 0 -43929329899770:43929329902820 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e78b0) = 0 -43929329903768:43929329904919 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929330368802:43929330371754 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929330373204:43929330373942 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929330374996:43929330375534 26045:26051 hsa_signal_load_relaxed() = 1 -43929329905876:43929330377049 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929330376435:43929330377817 26045:26051 hsa_signal_store_screlease(, 0) = void -43929330378762:43929330379282 26045:26051 hsa_signal_destroy() = 0 -43929330814011:43929330814808 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929345436429:43929345437550 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929345443280:43929345444823 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929345447265:43929345450204 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929345451284:43929345452049 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929345452886:43929345453579 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929345454357:43929345454826 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929345908768:43929345909577 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929345911313:43929345911940 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929345912945:43929345914406 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7950) = 0 -43929345915510:43929345919877 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7910) = 0 -43929345920946:43929345922879 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929346406344:43929346409548 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929346411039:43929346411696 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929346412853:43929346413387 26045:26051 hsa_signal_load_relaxed() = 1 -43929345923744:43929346414924 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929346414271:43929346415663 26045:26051 hsa_signal_store_screlease(, 0) = void -43929346416177:43929346416857 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929346416550:43929346417193 26045:26051 hsa_signal_destroy() = 0 -43929346433013:43929346433667 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929346445041:43929346445675 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 24 -43929346446541:43929346447181 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 24 -43929346448149:43929346448742 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929346449582:43929346449941 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929346451082:43929346451682 26045:26045 hsa_signal_store_relaxed(, 24) = void -43929346453455:43929346454100 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929346460558:43929346461190 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929346463398:43929346463964 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929346464721:43929346465050 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 25 -43929346465789:43929346466122 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 24 -43929346467057:43929346467380 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929346468134:43929346468517 26045:26045 hsa_signal_store_relaxed(, 25) = void -43929346469525:43929348402329 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929348416671:43929348417491 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929348420171:43929348421255 26045:26045 hsa_signal_destroy() = 0 -43929348432355:43929348432865 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929348433858:43929348434338 26045:26045 hsa_signal_destroy() = 0 -43929348436016:43929348437434 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929348438411:43929348438935 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929348439846:43929348440472 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929348441299:43929348441715 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929348442754:43929348443236 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929348444506:43929348445219 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929348446203:43929348447101 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e79b0) = 0 -43929348448035:43929348451122 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7970) = 0 -43929348452066:43929348453196 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929348915642:43929348918354 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929348919793:43929348920520 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929348924662:43929348925201 26045:26051 hsa_signal_load_relaxed() = 1 -43929348454147:43929348926708 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929348926102:43929348927439 26045:26051 hsa_signal_store_screlease(, 0) = void -43929348928354:43929348928871 26045:26051 hsa_signal_destroy() = 0 -43929349362276:43929349363090 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929363939143:43929363940215 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929363946248:43929363947269 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929363949461:43929363952630 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929363953969:43929363954645 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929363955471:43929363956097 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929363956902:43929363957371 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929364438479:43929364439223 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929364441151:43929364441779 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929364443010:43929364444680 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7a10) = 0 -43929364445747:43929364449916 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e79d0) = 0 -43929364450948:43929364452562 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929364935662:43929364938668 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929364940171:43929364940830 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929364941997:43929364942538 26045:26051 hsa_signal_load_relaxed() = 1 -43929364453430:43929364944090 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929364943427:43929364944822 26045:26051 hsa_signal_store_screlease(, 0) = void -43929364945321:43929364945994 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929364945805:43929364946440 26045:26051 hsa_signal_destroy() = 0 -43929364962915:43929364963566 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929364971278:43929364971926 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 26 -43929364972821:43929364973295 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 26 -43929364974242:43929364974840 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929364975651:43929364976012 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929364977168:43929364977760 26045:26045 hsa_signal_store_relaxed(, 26) = void -43929364984324:43929364984960 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929364991337:43929364991968 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929364994132:43929364994637 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929364995400:43929364995727 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 27 -43929364996467:43929364996809 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 26 -43929364997699:43929364998025 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929364998785:43929364999169 26045:26045 hsa_signal_store_relaxed(, 27) = void -43929365000103:43929366920667 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929366935111:43929366935945 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929366938576:43929366939668 26045:26045 hsa_signal_destroy() = 0 -43929366950251:43929366950750 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929366951800:43929366952240 26045:26045 hsa_signal_destroy() = 0 -43929366953736:43929366955151 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929366956125:43929366956648 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929366957576:43929366958205 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929366959034:43929366959446 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929366960479:43929366960953 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929366962214:43929366962928 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929366963905:43929366964839 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7a70) = 0 -43929366965765:43929366968776 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7a30) = 0 -43929366969794:43929366970997 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929367434790:43929367437382 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929367438807:43929367439537 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929367440594:43929367441127 26045:26051 hsa_signal_load_relaxed() = 1 -43929366971948:43929367442634 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929367442026:43929367443385 26045:26051 hsa_signal_store_screlease(, 0) = void -43929367444324:43929367444850 26045:26051 hsa_signal_destroy() = 0 -43929367887135:43929367887947 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929382526761:43929382527816 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929382533568:43929382534649 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929382536676:43929382539712 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929382540855:43929382541638 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929382542481:43929382543180 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929382543980:43929382544450 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929383022222:43929383023142 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929383024840:43929383025466 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929383026469:43929383027894 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7ad0) = 0 -43929383028917:43929383032847 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7a90) = 0 -43929383033845:43929383035708 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929383519641:43929383522730 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929383524253:43929383525050 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929383526172:43929383526710 26045:26051 hsa_signal_load_relaxed() = 1 -43929383036750:43929383528265 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929383527609:43929383529018 26045:26051 hsa_signal_store_screlease(, 0) = void -43929383529495:43929383530174 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929383529903:43929383530563 26045:26051 hsa_signal_destroy() = 0 -43929383546413:43929383547064 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929383554505:43929383555151 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 28 -43929383556036:43929383556501 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 28 -43929383557614:43929383558239 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929383559043:43929383559404 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929383560562:43929383561153 26045:26045 hsa_signal_store_relaxed(, 28) = void -43929383562711:43929383563347 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929383569700:43929383570330 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929383572561:43929383573326 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929383574086:43929383574414 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 29 -43929383575150:43929383575494 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 28 -43929383580666:43929383581015 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929383581774:43929383582156 26045:26045 hsa_signal_store_relaxed(, 29) = void -43929383583144:43929385506452 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929385520818:43929385521633 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929385524496:43929385525579 26045:26045 hsa_signal_destroy() = 0 -43929385536675:43929385537157 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929385538250:43929385538692 26045:26045 hsa_signal_destroy() = 0 -43929385540199:43929385541641 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929385542627:43929385543146 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929385544056:43929385544686 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929385545527:43929385545947 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929385547000:43929385547487 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929385548760:43929385549473 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929385550455:43929385551329 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7b30) = 0 -43929385552265:43929385555341 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7af0) = 0 -43929385556288:43929385557399 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929386020524:43929386023155 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929386024609:43929386025341 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929386026394:43929386026933 26045:26051 hsa_signal_load_relaxed() = 1 -43929385558347:43929386028433 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929386027828:43929386029272 26045:26051 hsa_signal_store_screlease(, 0) = void -43929386030213:43929386030721 26045:26051 hsa_signal_destroy() = 0 -43929386465847:43929386466653 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929401098385:43929401099456 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929401105161:43929401106332 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929401108450:43929401111208 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929401112591:43929401113344 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929401114186:43929401114792 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929401120946:43929401121434 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929401575328:43929401576258 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929401577869:43929401578507 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929401579616:43929401581201 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7b90) = 0 -43929401582144:43929401586383 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7b50) = 0 -43929401587336:43929401589262 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929402057421:43929402060466 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929402061985:43929402062654 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929402063778:43929402064310 26045:26051 hsa_signal_load_relaxed() = 1 -43929401590219:43929402065841 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929402065181:43929402066571 26045:26051 hsa_signal_store_screlease(, 0) = void -43929402067139:43929402067819 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929402067458:43929402068104 26045:26051 hsa_signal_destroy() = 0 -43929402083730:43929402084396 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929402092066:43929402092714 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 30 -43929402093605:43929402094079 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 30 -43929402095007:43929402095624 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929402096407:43929402096764 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929402097907:43929402098500 26045:26045 hsa_signal_store_relaxed(, 30) = void -43929402100129:43929402100759 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929402108690:43929402109317 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929402111515:43929402112149 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929402112903:43929402113226 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 31 -43929402113968:43929402114305 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 30 -43929402115239:43929402115566 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929402116319:43929402116699 26045:26045 hsa_signal_store_relaxed(, 31) = void -43929402117638:43929402675171 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929402688138:43929402688910 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929402691395:43929402692409 26045:26045 hsa_signal_destroy() = 0 -43929402706485:43929402707005 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929402707968:43929402708409 26045:26045 hsa_signal_destroy() = 0 -43929402709899:43929402711211 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929402712085:43929402712558 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929402713369:43929402713981 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929402714735:43929402715111 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929402716054:43929402716485 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929402717620:43929402718263 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929402719144:43929402719915 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7bf0) = 0 -43929402720758:43929402723238 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7bb0) = 0 -43929402724084:43929402725102 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929403216040:43929403218851 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929403220193:43929403220853 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929403221808:43929403222286 26045:26051 hsa_signal_load_relaxed() = 1 -43929402725922:43929403223744 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929403223092:43929403224356 26045:26051 hsa_signal_store_screlease(, 0) = void -43929403225199:43929403225667 26045:26051 hsa_signal_destroy() = 0 -43929403667394:43929403668254 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929418298409:43929418299474 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929418305197:43929418306476 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929418308419:43929418310898 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929418311992:43929418312745 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929418313568:43929418314149 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929418314920:43929418315396 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929418771823:43929418772575 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929418774462:43929418775092 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929418776123:43929418777795 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7c50) = 0 -43929418778810:43929418783188 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7c10) = 0 -43929418787985:43929418789976 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929419258162:43929419261187 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929419262645:43929419263304 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929419264398:43929419264939 26045:26051 hsa_signal_load_relaxed() = 1 -43929418790831:43929419266449 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929419265808:43929419267195 26045:26051 hsa_signal_store_screlease(, 0) = void -43929419267659:43929419268339 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929419268081:43929419268732 26045:26051 hsa_signal_destroy() = 0 -43929419284201:43929419284856 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929419292618:43929419293264 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 32 -43929419294310:43929419294774 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 32 -43929419295796:43929419296402 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929419297238:43929419297592 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929419298717:43929419299312 26045:26045 hsa_signal_store_relaxed(, 32) = void -43929419300924:43929419301555 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929419307607:43929419308238 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929419310815:43929419311380 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929419312140:43929419312471 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 33 -43929419313206:43929419313560 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 32 -43929419314430:43929419314752 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929419315509:43929419315891 26045:26045 hsa_signal_store_relaxed(, 33) = void -43929419316913:43929419873409 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929419886980:43929419887753 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929419890282:43929419891325 26045:26045 hsa_signal_destroy() = 0 -43929419892530:43929419893356 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929419903932:43929419904333 26045:26045 hsa_signal_destroy() = 0 -43929419905803:43929419907124 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929419908004:43929419908477 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929419909268:43929419909836 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929419914629:43929419915011 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929419915967:43929419916402 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929419917543:43929419918179 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929419919061:43929419919909 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7cb0) = 0 -43929419920752:43929419923252 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7c70) = 0 -43929419924099:43929419925097 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929420429654:43929420432285 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929420433618:43929420434276 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929420435222:43929420435703 26045:26051 hsa_signal_load_relaxed() = 1 -43929419925957:43929420437260 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929420436508:43929420437759 26045:26051 hsa_signal_store_screlease(, 0) = void -43929420438602:43929420439064 26045:26051 hsa_signal_destroy() = 0 -43929420880916:43929420881765 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929435490072:43929435491275 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929435497504:43929435498675 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929435500516:43929435503557 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929435504640:43929435505468 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929435506294:43929435506993 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929435507832:43929435508320 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929435965425:43929435966336 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929435968320:43929435968956 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929435969981:43929435971535 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7d10) = 0 -43929435972551:43929435976763 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7cd0) = 0 -43929435977802:43929435979967 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929436460732:43929436463734 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929436465179:43929436465824 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929436466965:43929436467487 26045:26051 hsa_signal_load_relaxed() = 1 -43929435980885:43929436469098 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929436468370:43929436469754 26045:26051 hsa_signal_store_screlease(, 0) = void -43929436473776:43929436474410 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929436474949:43929436475540 26045:26051 hsa_signal_destroy() = 0 -43929436493052:43929436493709 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929436501562:43929436502211 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 34 -43929436503201:43929436503662 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 34 -43929436504596:43929436505248 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929436506094:43929436506459 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929436507599:43929436508205 26045:26045 hsa_signal_store_relaxed(, 34) = void -43929436509848:43929436510479 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929436517110:43929436517744 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929436519895:43929436520665 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929436521414:43929436521741 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 35 -43929436522477:43929436522814 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 34 -43929436523756:43929436524084 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929436524850:43929436525231 26045:26045 hsa_signal_store_relaxed(, 35) = void -43929436526185:43929437082748 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929437096284:43929437097057 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929437099554:43929437100561 26045:26045 hsa_signal_destroy() = 0 -43929437101769:43929437102212 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929437112657:43929437113123 26045:26045 hsa_signal_destroy() = 0 -43929437114494:43929437116068 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929437116950:43929437117417 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929437118220:43929437118785 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929437119532:43929437119907 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929437120852:43929437121288 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929437122416:43929437123059 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929437123944:43929437124705 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7d70) = 0 -43929437127503:43929437130206 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7d30) = 0 -43929437131061:43929437132104 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929437625299:43929437627771 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929437629115:43929437629772 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929437630729:43929437631211 26045:26051 hsa_signal_load_relaxed() = 1 -43929437132958:43929437632681 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929437632022:43929437633306 26045:26051 hsa_signal_store_screlease(, 0) = void -43929437634150:43929437634612 26045:26051 hsa_signal_destroy() = 0 -43929438077750:43929438078605 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929452739469:43929452740544 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929452746614:43929452747634 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929452749806:43929452752512 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929452753563:43929452754234 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929452755058:43929452755719 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929452756496:43929452756968 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929453244764:43929453245500 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929453247518:43929453248139 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929453249151:43929453250593 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7dd0) = 0 -43929453251621:43929453255586 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7d90) = 0 -43929453256644:43929453258576 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929453725817:43929453728826 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929453730291:43929453730939 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929453732052:43929453732584 26045:26051 hsa_signal_load_relaxed() = 1 -43929453259503:43929453734137 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929453733477:43929453734857 26045:26051 hsa_signal_store_screlease(, 0) = void -43929453735402:43929453736144 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929453735811:43929453736474 26045:26051 hsa_signal_destroy() = 0 -43929453752199:43929453752858 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929453760731:43929453761378 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 36 -43929453766047:43929453766676 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 36 -43929453767660:43929453768287 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929453769128:43929453769481 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929453770624:43929453771247 26045:26045 hsa_signal_store_relaxed(, 36) = void -43929453772813:43929453773449 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929453779948:43929453780583 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929453782926:43929453783515 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929453784264:43929453784590 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 37 -43929453785337:43929453785668 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 36 -43929453786626:43929453786972 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929453787727:43929453788108 26045:26045 hsa_signal_store_relaxed(, 37) = void -43929453789073:43929454347961 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929454361392:43929454362169 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929454364625:43929454365634 26045:26045 hsa_signal_destroy() = 0 -43929454366849:43929454367712 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929454378742:43929454379197 26045:26045 hsa_signal_destroy() = 0 -43929454380652:43929454381980 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929454382871:43929454383344 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929454384176:43929454384733 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929454385495:43929454385866 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929454386805:43929454387236 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929454388366:43929454389004 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929454389895:43929454390684 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7e30) = 0 -43929454391524:43929454393988 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7df0) = 0 -43929454394845:43929454395867 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929454887819:43929454890347 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929454891667:43929454892324 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929454893278:43929454893766 26045:26051 hsa_signal_load_relaxed() = 1 -43929454396714:43929454897880 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929454897221:43929454898449 26045:26051 hsa_signal_store_screlease(, 0) = void -43929454899283:43929454899739 26045:26051 hsa_signal_destroy() = 0 -43929455342180:43929455343023 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929469997961:43929469999088 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929470004910:43929470006011 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929470008006:43929470011172 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929470012265:43929470013027 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929470013864:43929470014616 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929470015429:43929470015899 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929470471749:43929470472484 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929470474119:43929470474751 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929470475810:43929470477224 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7e90) = 0 -43929470478252:43929470482236 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7e50) = 0 -43929470483240:43929470485202 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929470953625:43929470956677 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929470958190:43929470958847 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929470960002:43929470960534 26045:26051 hsa_signal_load_relaxed() = 1 -43929470486075:43929470962106 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929470961442:43929470962831 26045:26051 hsa_signal_store_screlease(, 0) = void -43929470963393:43929470964163 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929470963803:43929470964447 26045:26051 hsa_signal_destroy() = 0 -43929470980410:43929470981056 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929470988947:43929470989574 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 38 -43929470990385:43929470990849 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 38 -43929470991800:43929470992403 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929470993216:43929470993572 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929470994733:43929470995325 26045:26045 hsa_signal_store_relaxed(, 38) = void -43929470996944:43929470997580 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929471009036:43929471009668 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929471011863:43929471012364 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929471013142:43929471013481 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 39 -43929471014213:43929471014545 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 38 -43929471015483:43929471015812 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929471016577:43929471016968 26045:26045 hsa_signal_store_relaxed(, 39) = void -43929471017961:43929471572217 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929471585584:43929471586363 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929471588851:43929471589866 26045:26045 hsa_signal_destroy() = 0 -43929471591086:43929471591610 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929471592678:43929471603111 26045:26045 hsa_signal_destroy() = 0 -43929471604549:43929471605879 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929471606765:43929471607245 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929471608056:43929471608616 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929471609364:43929471609747 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929471610687:43929471611127 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929471612260:43929471612914 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929471613793:43929471614650 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7ef0) = 0 -43929471615485:43929471618200 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7eb0) = 0 -43929471619043:43929471620063 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929472112280:43929472114775 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929472116099:43929472116765 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929472117710:43929472118196 26045:26051 hsa_signal_load_relaxed() = 1 -43929471620908:43929472119739 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929472119000:43929472120239 26045:26051 hsa_signal_store_screlease(, 0) = void -43929472121079:43929472121541 26045:26051 hsa_signal_destroy() = 0 -43929472565326:43929472566182 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929487180702:43929487181757 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929487193391:43929487194579 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929487196566:43929487199735 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929487200757:43929487201515 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929487202348:43929487203031 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929487214273:43929487214765 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929487669497:43929487670327 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929487672115:43929487672739 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929487673750:43929487675440 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7f50) = 0 -43929487676660:43929487680909 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7f10) = 0 -43929487681874:43929487683804 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929488151795:43929488155094 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929488156598:43929488157247 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929488158369:43929488158895 26045:26051 hsa_signal_load_relaxed() = 1 -43929487684728:43929488160504 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929488159745:43929488161169 26045:26051 hsa_signal_store_screlease(, 0) = void -43929488161906:43929488162598 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929488162105:43929488162766 26045:26051 hsa_signal_destroy() = 0 -43929488178744:43929488179391 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929488187214:43929488187854 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 40 -43929488188746:43929488189223 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 40 -43929488190158:43929488190766 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929488191628:43929488191995 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929488193164:43929488193768 26045:26045 hsa_signal_store_relaxed(, 40) = void -43929488195355:43929488195990 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929488202476:43929488203104 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929488205341:43929488205984 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929488206751:43929488207085 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 41 -43929488207822:43929488208174 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 40 -43929488209142:43929488209465 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929488211804:43929488212188 26045:26045 hsa_signal_store_relaxed(, 41) = void -43929488213230:43929488773874 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929488787262:43929488788032 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929488790520:43929488791543 26045:26045 hsa_signal_destroy() = 0 -43929488792797:43929488793243 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929488794235:43929488804187 26045:26045 hsa_signal_destroy() = 0 -43929488805556:43929488807086 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929488807970:43929488808443 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929488809239:43929488809799 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929488810544:43929488810921 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929488811872:43929488812311 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929488813445:43929488814086 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929488814967:43929488815762 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e7fb0) = 0 -43929488816608:43929488819074 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7f70) = 0 -43929488819936:43929488820966 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929489313167:43929489315769 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929489317084:43929489317736 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929489318687:43929489319165 26045:26051 hsa_signal_load_relaxed() = 1 -43929488821816:43929489320628 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929489319976:43929489321221 26045:26051 hsa_signal_store_screlease(, 0) = void -43929489322064:43929489322526 26045:26051 hsa_signal_destroy() = 0 -43929489762742:43929489763584 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929504399790:43929504400861 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929504407143:43929504408158 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929504410099:43929504413297 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929504414378:43929504415128 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929504415958:43929504416552 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929504417320:43929504417792 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929504891368:43929504892193 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929504896527:43929504897150 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929504898162:43929504899703 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8010) = 0 -43929504900751:43929504905066 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e7fd0) = 0 -43929504905961:43929504907938 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929505376510:43929505379778 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929505381293:43929505381959 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929505383055:43929505383588 26045:26051 hsa_signal_load_relaxed() = 1 -43929504908775:43929505385120 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929505384440:43929505385831 26045:26051 hsa_signal_store_screlease(, 0) = void -43929505386386:43929505387086 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929505386757:43929505387401 26045:26051 hsa_signal_destroy() = 0 -43929505403909:43929505404552 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929505412446:43929505413213 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 42 -43929505414098:43929505414563 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 42 -43929505415484:43929505416097 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929505416940:43929505417300 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929505418435:43929505419037 26045:26045 hsa_signal_store_relaxed(, 42) = void -43929505420666:43929505421296 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929505427663:43929505428294 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929505430359:43929505430985 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929505431749:43929505432083 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 43 -43929505432818:43929505433169 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 42 -43929505434127:43929505434446 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929505435199:43929505435582 26045:26045 hsa_signal_store_relaxed(, 43) = void -43929505436526:43929505991688 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929505993678:43929505994175 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929505995648:43929505996212 26045:26045 hsa_signal_destroy() = 0 -43929506008060:43929506008551 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929506013801:43929506014282 26045:26045 hsa_signal_destroy() = 0 -43929506025613:43929506026700 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929506027548:43929506027981 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929506028750:43929506029226 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929506029963:43929506030329 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929506031184:43929506031588 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929506032555:43929506033181 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929506033973:43929506034503 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8070) = 0 -43929506035270:43929506037257 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8030) = 0 -43929506038036:43929506038766 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929506531086:43929506533511 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929506534863:43929506535516 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929506536458:43929506536940 26045:26051 hsa_signal_load_relaxed() = 1 -43929506039535:43929506538396 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929506537748:43929506539003 26045:26051 hsa_signal_store_screlease(, 0) = void -43929506539849:43929506540319 26045:26051 hsa_signal_destroy() = 0 -43929506979890:43929506980740 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929521606516:43929521607582 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929521612368:43929521613558 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929521615712:43929521618393 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929521619548:43929521620239 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929521621059:43929521621640 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929521622512:43929521622999 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929522089602:43929522090942 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929522092781:43929522093405 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929522094442:43929522096064 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e80d0) = 0 -43929522097095:43929522100999 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8090) = 0 -43929522101981:43929522103783 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929522570994:43929522574128 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929522575681:43929522576340 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929522577545:43929522578082 26045:26051 hsa_signal_load_relaxed() = 1 -43929522108460:43929522579619 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929522578956:43929522580337 26045:26051 hsa_signal_store_screlease(, 0) = void -43929522581132:43929522581812 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929522581220:43929522581867 26045:26051 hsa_signal_destroy() = 0 -43929522596321:43929522596974 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929522603085:43929522603677 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 44 -43929522604636:43929522605064 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 44 -43929522606018:43929522606600 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929522607383:43929522607827 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929522608833:43929522609416 26045:26045 hsa_signal_store_relaxed(, 44) = void -43929522610848:43929522611479 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929522617491:43929522618126 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929522619796:43929522620354 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929522621178:43929522621508 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 45 -43929522622246:43929522622578 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 44 -43929522623318:43929522623644 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929522624387:43929522624831 26045:26045 hsa_signal_store_relaxed(, 45) = void -43929522626050:43929523185591 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929523187066:43929523187544 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929523188893:43929523189442 26045:26045 hsa_signal_destroy() = 0 -43929523190338:43929523201030 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929523202010:43929523202403 26045:26045 hsa_signal_destroy() = 0 -43929523204031:43929523206022 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929523207051:43929523207570 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929523208432:43929523218500 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929523221064:43929523221443 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929523222320:43929523222705 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929523223656:43929523224285 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929523225076:43929523225684 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8130) = 0 -43929523226448:43929523228277 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e80f0) = 0 -43929523229053:43929523229777 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929523722771:43929523725183 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929523726518:43929523727170 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929523728111:43929523728594 26045:26051 hsa_signal_load_relaxed() = 1 -43929523230574:43929523730061 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929523729410:43929523730641 26045:26051 hsa_signal_store_screlease(, 0) = void -43929523731489:43929523731954 26045:26051 hsa_signal_destroy() = 0 -43929524180065:43929524180903 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929538838351:43929538839423 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929538843920:43929538844942 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929538846880:43929538849203 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929538850294:43929538851178 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929538851995:43929538852708 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929538853651:43929538854147 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929539321625:43929539322518 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929539324025:43929539324648 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929539326003:43929539327871 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8190) = 0 -43929539328893:43929539333016 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8150) = 0 -43929539334007:43929539335511 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929539803747:43929539806785 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929539808367:43929539809038 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929539810200:43929539810737 26045:26051 hsa_signal_load_relaxed() = 1 -43929539336426:43929539812348 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929539811705:43929539813097 26045:26051 hsa_signal_store_screlease(, 0) = void -43929539813800:43929539814430 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929539818959:43929539819657 26045:26051 hsa_signal_destroy() = 0 -43929539831849:43929539832481 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929539838051:43929539838832 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 46 -43929539839787:43929539840214 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 46 -43929539841086:43929539841729 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929539842516:43929539842966 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929539843920:43929539844494 26045:26045 hsa_signal_store_relaxed(, 46) = void -43929539845818:43929539846449 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929539852521:43929539853156 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929539854760:43929539855383 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929539856208:43929539856590 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 47 -43929539857328:43929539857659 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 46 -43929539858402:43929539858722 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929539859462:43929539859837 26045:26045 hsa_signal_store_relaxed(, 47) = void -43929539860866:43929540413762 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929540415249:43929540415744 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929540417184:43929540417736 26045:26045 hsa_signal_destroy() = 0 -43929540418709:43929540429343 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929540430346:43929540430743 26045:26045 hsa_signal_destroy() = 0 -43929540432337:43929540434147 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929540435194:43929540435765 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929540436635:43929540437115 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929540447290:43929540447674 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929540448564:43929540448998 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929540449978:43929540450619 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929540451417:43929540451955 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e81f0) = 0 -43929540452717:43929540454585 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e81b0) = 0 -43929540456736:43929540457513 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929540949826:43929540952315 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929540953654:43929540954309 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929540955252:43929540955733 26045:26051 hsa_signal_load_relaxed() = 1 -43929540458321:43929540957188 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929540956539:43929540957819 26045:26051 hsa_signal_store_screlease(, 0) = void -43929540958670:43929540959137 26045:26051 hsa_signal_destroy() = 0 -43929541399790:43929541400616 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929556033565:43929556034639 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929556039249:43929556040423 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929556042920:43929556045332 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929556046399:43929556047138 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929556047963:43929556048620 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929556049414:43929556049881 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929556535933:43929556536668 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929556538205:43929556538832 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929556540051:43929556541685 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8250) = 0 -43929556542781:43929556546715 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8210) = 0 -43929556547687:43929556549317 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929557016936:43929557020017 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929557021614:43929557022260 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929557023438:43929557024121 26045:26051 hsa_signal_load_relaxed() = 1 -43929556550233:43929557025676 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929557025024:43929557026403 26045:26051 hsa_signal_store_screlease(, 0) = void -43929557026975:43929557027656 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929557027291:43929557027964 26045:26051 hsa_signal_destroy() = 0 -43929557041536:43929557042172 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929557048206:43929557048863 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 48 -43929557049818:43929557050221 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 48 -43929557056477:43929557057085 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929557057868:43929557058313 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929557059271:43929557059879 26045:26045 hsa_signal_store_relaxed(, 48) = void -43929557061219:43929557061860 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929557067527:43929557068155 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929557070025:43929557070609 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929557071438:43929557071820 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 49 -43929557072558:43929557072882 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 48 -43929557073621:43929557073938 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929557074677:43929557075057 26045:26045 hsa_signal_store_relaxed(, 49) = void -43929557076085:43929557637968 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929557651579:43929557652353 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929557655086:43929557656097 26045:26045 hsa_signal_destroy() = 0 -43929557657407:43929557658073 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929557668606:43929557669056 26045:26045 hsa_signal_destroy() = 0 -43929557670545:43929557671857 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929557672742:43929557673216 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929557674073:43929557674643 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929557675393:43929557675768 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929557676715:43929557677153 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929557678290:43929557678929 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929557679815:43929557680648 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e82b0) = 0 -43929557681498:43929557684218 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8270) = 0 -43929557685069:43929557686219 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929558178255:43929558180790 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929558182104:43929558182761 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929558183709:43929558184192 26045:26051 hsa_signal_load_relaxed() = 1 -43929557687069:43929558185658 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929558185000:43929558186229 26045:26051 hsa_signal_store_screlease(, 0) = void -43929558190285:43929558190745 26045:26051 hsa_signal_destroy() = 0 -43929558633220:43929558634070 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929573275474:43929573276546 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929573282557:43929573283537 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929573285810:43929573288319 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929573289399:43929573290193 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929573291041:43929573291735 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929573292536:43929573293006 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929573778001:43929573778737 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929573780535:43929573781157 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929573782304:43929573783673 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8310) = 0 -43929573784697:43929573788940 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e82d0) = 0 -43929573790080:43929573792049 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929574258542:43929574261819 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929574263312:43929574263968 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929574265130:43929574265670 26045:26051 hsa_signal_load_relaxed() = 1 -43929573793045:43929574267235 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929574266583:43929574267971 26045:26051 hsa_signal_store_screlease(, 0) = void -43929574268497:43929574269176 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929574268853:43929574269499 26045:26051 hsa_signal_destroy() = 0 -43929574284841:43929574285490 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929574293437:43929574294075 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 50 -43929574294950:43929574295539 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 50 -43929574296493:43929574297091 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929574297909:43929574298264 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929574299428:43929574300035 26045:26045 hsa_signal_store_relaxed(, 50) = void -43929574301676:43929574302318 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929574308749:43929574309378 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929574316109:43929574316718 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929574317486:43929574317821 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 51 -43929574318554:43929574318893 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 50 -43929574319853:43929574320187 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929574320944:43929574321339 26045:26045 hsa_signal_store_relaxed(, 51) = void -43929574322299:43929574877016 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929574890422:43929574891204 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929574893692:43929574894762 26045:26045 hsa_signal_destroy() = 0 -43929574896008:43929574896652 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929574907699:43929574908128 26045:26045 hsa_signal_destroy() = 0 -43929574909535:43929574910912 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929574911792:43929574912256 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929574913084:43929574913647 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929574914389:43929574914760 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929574915713:43929574916146 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929574917276:43929574917921 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929574918810:43929574919660 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8370) = 0 -43929574920502:43929574922970 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8330) = 0 -43929574923822:43929574924850 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929575417602:43929575420105 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929575421433:43929575422085 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929575423035:43929575423516 26045:26051 hsa_signal_load_relaxed() = 1 -43929574925689:43929575424997 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929575424332:43929575425626 26045:26051 hsa_signal_store_screlease(, 0) = void -43929575426463:43929575426923 26045:26051 hsa_signal_destroy() = 0 -43929575869413:43929575870249 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929590505356:43929590506470 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929590512659:43929590513646 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929590521288:43929590524450 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929590525563:43929590526289 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929590527113:43929590538075 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929590538945:43929590539438 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929590997057:43929590997927 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929590999569:43929591000190 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929591001221:43929591002972 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e83d0) = 0 -43929591003958:43929591008560 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8390) = 0 -43929591009517:43929591011612 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929591478365:43929591481378 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929591482879:43929591483533 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929591484657:43929591485187 26045:26051 hsa_signal_load_relaxed() = 1 -43929591012518:43929591486695 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929591486060:43929591487450 26045:26051 hsa_signal_store_screlease(, 0) = void -43929591487951:43929591488632 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929591488334:43929591488990 26045:26051 hsa_signal_destroy() = 0 -43929591506297:43929591506965 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929591514616:43929591515251 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 52 -43929591516133:43929591516601 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 52 -43929591517583:43929591518208 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929591519047:43929591519402 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929591520540:43929591521145 26045:26045 hsa_signal_store_relaxed(, 52) = void -43929591522846:43929591523477 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929591529728:43929591530360 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929591532527:43929591533166 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929591533926:43929591534257 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 53 -43929591534991:43929591535323 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 52 -43929591536272:43929591536600 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929591537353:43929591537734 26045:26045 hsa_signal_store_relaxed(, 53) = void -43929591539669:43929592094058 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929592107637:43929592108406 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929592110842:43929592111853 26045:26045 hsa_signal_destroy() = 0 -43929592113133:43929592113574 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929592123995:43929592124462 26045:26045 hsa_signal_destroy() = 0 -43929592125879:43929592127210 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929592128087:43929592128559 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929592129350:43929592129921 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929592130670:43929592131042 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929592131989:43929592132426 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929592133557:43929592134200 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929592135081:43929592135886 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8430) = 0 -43929592136729:43929592139470 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e83f0) = 0 -43929592140321:43929592141338 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929592632657:43929592635123 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929592636446:43929592637105 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929592638056:43929592638542 26045:26051 hsa_signal_load_relaxed() = 1 -43929592142188:43929592640011 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929592639354:43929592640602 26045:26051 hsa_signal_store_screlease(, 0) = void -43929592641442:43929592641900 26045:26051 hsa_signal_destroy() = 0 -43929593083215:43929593084063 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929607744724:43929607745796 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929607751970:43929607753258 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929607755235:43929607758264 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929607759393:43929607760089 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929607760930:43929607761559 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929607762333:43929607762808 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929608232776:43929608233456 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929608240412:43929608241053 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929608242096:43929608243532 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8490) = 0 -43929608244584:43929608248645 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8450) = 0 -43929608249537:43929608251621 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929608719795:43929608722841 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929608724323:43929608724980 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929608726087:43929608726623 26045:26051 hsa_signal_load_relaxed() = 1 -43929608252618:43929608728173 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929608727495:43929608728904 26045:26051 hsa_signal_store_screlease(, 0) = void -43929608729434:43929608730110 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929608729789:43929608730443 26045:26051 hsa_signal_destroy() = 0 -43929608746135:43929608746774 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929608754241:43929608754866 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 54 -43929608755740:43929608756396 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 54 -43929608757381:43929608757992 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929608758827:43929608759179 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929608760325:43929608760937 26045:26045 hsa_signal_store_relaxed(, 54) = void -43929608762633:43929608763263 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929608769817:43929608770444 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929608772605:43929608773237 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929608773998:43929608774325 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 55 -43929608775061:43929608775402 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 54 -43929608776358:43929608776681 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929608777434:43929608777815 26045:26045 hsa_signal_store_relaxed(, 55) = void -43929608778778:43929609337113 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929609350703:43929609351505 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929609354070:43929609355097 26045:26045 hsa_signal_destroy() = 0 -43929609356361:43929609356982 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929609370022:43929609370489 26045:26045 hsa_signal_destroy() = 0 -43929609371901:43929609373219 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929609374127:43929609374604 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929609375416:43929609375989 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929609376760:43929609377138 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929609378110:43929609378561 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929609379709:43929609380376 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929609381285:43929609382062 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e84f0) = 0 -43929609382930:43929609385388 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e84b0) = 0 -43929609386259:43929609387304 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929609842565:43929609845092 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929609846425:43929609847100 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929609848071:43929609848572 26045:26051 hsa_signal_load_relaxed() = 1 -43929609388176:43929609849980 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929609849410:43929609850695 26045:26051 hsa_signal_store_screlease(, 0) = void -43929609851557:43929609852032 26045:26051 hsa_signal_destroy() = 0 -43929610282667:43929610283409 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929624883510:43929624884632 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929624890597:43929624892071 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929624894275:43929624897605 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929624899005:43929624899755 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929624900636:43929624901189 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929624901958:43929624902430 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929625366697:43929625367436 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929625369016:43929625369638 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929625370652:43929625372189 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8550) = 0 -43929625373267:43929625377291 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8510) = 0 -43929625378226:43929625380138 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929625847832:43929625850911 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929625857040:43929625857707 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929625858829:43929625859616 26045:26051 hsa_signal_load_relaxed() = 1 -43929625381058:43929625861119 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929625860461:43929625861844 26045:26051 hsa_signal_store_screlease(, 0) = void -43929625862245:43929625862912 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929625862723:43929625863548 26045:26051 hsa_signal_destroy() = 0 -43929625879205:43929625879858 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929625887797:43929625888435 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 56 -43929625889221:43929625889686 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 56 -43929625890756:43929625891356 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929625892188:43929625892547 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929625893662:43929625894269 26045:26045 hsa_signal_store_relaxed(, 56) = void -43929625895834:43929625896463 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929625902781:43929625903413 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929625905638:43929625906197 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929625906967:43929625907300 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 57 -43929625908047:43929625908390 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 56 -43929625909341:43929625909665 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929625910432:43929625910816 26045:26045 hsa_signal_store_relaxed(, 57) = void -43929625911847:43929626471724 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929626485892:43929626486716 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929626489297:43929626490367 26045:26045 hsa_signal_destroy() = 0 -43929626501142:43929626501631 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929626502643:43929626503073 26045:26045 hsa_signal_destroy() = 0 -43929626504501:43929626505938 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929626506880:43929626507499 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929626508397:43929626509045 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929626509881:43929626510283 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929626514169:43929626514644 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929626515907:43929626516598 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929626517556:43929626518466 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e85b0) = 0 -43929626519373:43929626521961 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8570) = 0 -43929626522871:43929626523993 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929626977249:43929626979889 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929626981302:43929626982011 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929626983030:43929626983552 26045:26051 hsa_signal_load_relaxed() = 1 -43929626524908:43929626985026 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929626984427:43929626985754 26045:26051 hsa_signal_store_screlease(, 0) = void -43929626986669:43929626987162 26045:26051 hsa_signal_destroy() = 0 -43929627428891:43929627429649 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929642022798:43929642023934 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929642030078:43929642031509 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929642033759:43929642037151 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929642038272:43929642039073 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929642039962:43929642040851 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929642041620:43929642042123 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929642507476:43929642508218 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929642509853:43929642510483 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929642511516:43929642513124 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8610) = 0 -43929642514356:43929642518135 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e85d0) = 0 -43929642519124:43929642521099 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929642988232:43929642991341 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929642992822:43929642993472 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929642994613:43929642995149 26045:26051 hsa_signal_load_relaxed() = 1 -43929642522017:43929642996937 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929642996268:43929642997692 26045:26051 hsa_signal_store_screlease(, 0) = void -43929642998135:43929642998811 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929642998621:43929642999256 26045:26051 hsa_signal_destroy() = 0 -43929643018192:43929643018844 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929643026667:43929643027305 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 58 -43929643028187:43929643028653 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 58 -43929643029573:43929643030184 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929643031020:43929643031379 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929643032509:43929643033363 26045:26045 hsa_signal_store_relaxed(, 58) = void -43929643034967:43929643035605 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929643041906:43929643042538 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929643044679:43929643045300 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929643046063:43929643046393 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 59 -43929643047132:43929643047480 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 58 -43929643048441:43929643048764 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929643049515:43929643049894 26045:26045 hsa_signal_store_relaxed(, 59) = void -43929643050829:43929643611891 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929643625158:43929643625931 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929643628423:43929643629436 26045:26045 hsa_signal_destroy() = 0 -43929643630609:43929643631049 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929643632015:43929643641825 26045:26045 hsa_signal_destroy() = 0 -43929643643433:43929643644876 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929643645853:43929643646377 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929643647265:43929643647887 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929643648713:43929643649131 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929643650177:43929643650672 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929643651950:43929643652664 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929643653649:43929643654499 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8670) = 0 -43929643655444:43929643658405 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8630) = 0 -43929643659351:43929643660522 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929644118490:43929644121238 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929644122687:43929644123410 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929644124620:43929644125159 26045:26051 hsa_signal_load_relaxed() = 1 -43929643663742:43929644126755 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929644126057:43929644127472 26045:26051 hsa_signal_store_screlease(, 0) = void -43929644128416:43929644128928 26045:26051 hsa_signal_destroy() = 0 -43929644562471:43929644563272 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929659150447:43929659151567 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929659157628:43929659158782 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929659161082:43929659163693 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929659164882:43929659165657 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929659166498:43929659167138 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929659167943:43929659168410 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929659634121:43929659634854 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929659636847:43929659637475 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929659638497:43929659639957 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e86d0) = 0 -43929659641208:43929659644891 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8690) = 0 -43929659645894:43929659647779 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929660116642:43929660120057 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929660121525:43929660122167 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929660123336:43929660123864 26045:26051 hsa_signal_load_relaxed() = 1 -43929659648803:43929660125510 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929660124749:43929660126129 26045:26051 hsa_signal_store_screlease(, 0) = void -43929660126817:43929660127479 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929660127016:43929660127642 26045:26051 hsa_signal_destroy() = 0 -43929660144076:43929660144729 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929660152416:43929660153189 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 60 -43929660153975:43929660154443 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 60 -43929660155391:43929660156005 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929660160404:43929660160761 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929660161870:43929660162475 26045:26045 hsa_signal_store_relaxed(, 60) = void -43929660164072:43929660164702 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929660170955:43929660171582 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929660173912:43929660174496 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929660175254:43929660175589 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 61 -43929660176327:43929660176666 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 60 -43929660177624:43929660177950 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929660178705:43929660179088 26045:26045 hsa_signal_store_relaxed(, 61) = void -43929660180087:43929660734978 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929660736952:43929660737447 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929660738867:43929660739431 26045:26045 hsa_signal_destroy() = 0 -43929660750837:43929660751337 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929660752244:43929660752716 26045:26045 hsa_signal_destroy() = 0 -43929660754391:43929660756432 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929660757461:43929660758017 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929660768354:43929660768853 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929660769609:43929660769979 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929660770836:43929660771238 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929660772182:43929660772808 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929660773593:43929660774110 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8730) = 0 -43929660774873:43929660776798 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e86f0) = 0 -43929660777571:43929660778303 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929661237885:43929661240594 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929661242036:43929661242766 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929661243815:43929661244355 26045:26051 hsa_signal_load_relaxed() = 1 -43929660779091:43929661245983 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929661245253:43929661246614 26045:26051 hsa_signal_store_screlease(, 0) = void -43929661251087:43929661251605 26045:26051 hsa_signal_destroy() = 0 -43929661684089:43929661684883 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929676267191:43929676268197 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929676272891:43929676273986 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929676276053:43929676278350 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929676279474:43929676280375 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929676281185:43929676281783 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929676282677:43929676283150 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929676749722:43929676750466 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929676752302:43929676752925 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929676753964:43929676755416 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8790) = 0 -43929676756447:43929676760480 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8750) = 0 -43929676761471:43929676763372 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929677230945:43929677234273 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929677235861:43929677236511 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929677237661:43929677238183 26045:26051 hsa_signal_load_relaxed() = 1 -43929676764291:43929677239755 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929677239092:43929677240456 26045:26051 hsa_signal_store_screlease(, 0) = void -43929677241097:43929677241778 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929677241345:43929677241986 26045:26051 hsa_signal_destroy() = 0 -43929677255791:43929677256430 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929677263021:43929677263925 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 62 -43929677264811:43929677265205 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 62 -43929677266153:43929677266753 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929677267587:43929677268039 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929677269061:43929677269638 26045:26045 hsa_signal_store_relaxed(, 62) = void -43929677270750:43929677271382 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929677280991:43929677281624 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929677283640:43929677284147 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929677285924:43929677286331 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 63 -43929677287077:43929677287408 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 62 -43929677288202:43929677288526 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929677289270:43929677289662 26045:26045 hsa_signal_store_relaxed(, 63) = void -43929677290671:43929677841267 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929677843142:43929677843637 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929677845029:43929677845586 26045:26045 hsa_signal_destroy() = 0 -43929677857047:43929677857578 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929677858508:43929677858904 26045:26045 hsa_signal_destroy() = 0 -43929677860545:43929677862436 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929677863444:43929677863953 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929677874842:43929677875331 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929677876091:43929677876460 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929677877310:43929677877714 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929677878684:43929677879313 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929677880100:43929677880690 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e87f0) = 0 -43929677881449:43929677883348 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e87b0) = 0 -43929677884126:43929677884884 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929678343789:43929678346360 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929678347808:43929678348539 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929678349583:43929678350120 26045:26051 hsa_signal_load_relaxed() = 1 -43929677885651:43929678351752 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929678351021:43929678352701 26045:26051 hsa_signal_store_screlease(, 0) = void -43929678353636:43929678354145 26045:26051 hsa_signal_destroy() = 0 -43929678788447:43929678789246 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929693375128:43929693376137 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929693380393:43929693381427 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929693383522:43929693385917 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929693393049:43929693393810 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929693394643:43929693395232 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929693396064:43929693396534 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929693863382:43929693864114 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929693865672:43929693866301 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929693867415:43929693869124 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8850) = 0 -43929693870324:43929693874474 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8810) = 0 -43929693875675:43929693877239 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929694344097:43929694347099 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929694348637:43929694349283 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929694350370:43929694350892 26045:26051 hsa_signal_load_relaxed() = 1 -43929693878258:43929694352455 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929694351801:43929694353178 26045:26051 hsa_signal_store_screlease(, 0) = void -43929694353682:43929694354363 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929694354059:43929694354692 26045:26051 hsa_signal_destroy() = 0 -43929694368290:43929694368927 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929694374803:43929694375605 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 64 -43929694376478:43929694376875 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 64 -43929694377798:43929694378413 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929694379233:43929694379680 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929694380644:43929694381228 26045:26045 hsa_signal_store_relaxed(, 64) = void -43929694382472:43929694383106 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929694388678:43929694389313 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929694391224:43929694391847 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929694392676:43929694393063 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 65 -43929694393803:43929694394134 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 64 -43929694394874:43929694395195 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929694395977:43929694396356 26045:26045 hsa_signal_store_relaxed(, 65) = void -43929694400807:43929694952779 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929694954239:43929694954731 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929694956121:43929694956678 26045:26045 hsa_signal_destroy() = 0 -43929694957586:43929694957972 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929694969208:43929694969645 26045:26045 hsa_signal_destroy() = 0 -43929694971167:43929694972957 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929694973981:43929694974529 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929694975399:43929694975891 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929694986119:43929694986552 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929694987435:43929694987844 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929694988753:43929694989383 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929694990175:43929694990714 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e88b0) = 0 -43929694991478:43929694993478 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8870) = 0 -43929694994261:43929694995013 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929695454001:43929695456544 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929695457986:43929695458717 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929695459763:43929695460299 26045:26051 hsa_signal_load_relaxed() = 1 -43929694995778:43929695461937 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929695461196:43929695462588 26045:26051 hsa_signal_store_screlease(, 0) = void -43929695463526:43929695464035 26045:26051 hsa_signal_destroy() = 0 -43929695897700:43929695898496 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929710492496:43929710493641 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929710497736:43929710499099 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929710501006:43929710502977 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929710504132:43929710504813 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929710505624:43929710506260 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929710507114:43929710507581 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929710974308:43929710975459 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929710976984:43929710977611 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929710982574:43929710984155 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8910) = 0 -43929710985296:43929710989194 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e88d0) = 0 -43929710990154:43929710991898 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929711459672:43929711462757 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929711464337:43929711465000 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929711466149:43929711466675 26045:26051 hsa_signal_load_relaxed() = 1 -43929710992769:43929711468188 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929711467522:43929711469132 26045:26051 hsa_signal_store_screlease(, 0) = void -43929711469522:43929711470182 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929711470019:43929711470637 26045:26051 hsa_signal_destroy() = 0 -43929711485019:43929711485653 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929711491414:43929711492085 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 66 -43929711493017:43929711493505 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 66 -43929711494458:43929711495104 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929711495942:43929711496384 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929711497347:43929711497927 26045:26045 hsa_signal_store_relaxed(, 66) = void -43929711499360:43929711499992 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929711505777:43929711506409 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929711508576:43929711509201 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929711510032:43929711510420 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 67 -43929711511156:43929711511487 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 66 -43929711512226:43929711512552 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929711513297:43929711513685 26045:26045 hsa_signal_store_relaxed(, 67) = void -43929711514703:43929712076189 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929712089571:43929712090384 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929712093148:43929712094200 26045:26045 hsa_signal_destroy() = 0 -43929712095497:43929712095977 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929712106953:43929712107427 26045:26045 hsa_signal_destroy() = 0 -43929712111481:43929712112819 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929712113714:43929712114190 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929712115028:43929712115603 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929712116345:43929712116714 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929712117663:43929712118095 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929712119231:43929712119870 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929712120753:43929712121562 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8970) = 0 -43929712122396:43929712124898 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8930) = 0 -43929712125740:43929712126754 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929712596937:43929712599585 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929712601032:43929712601765 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929712602819:43929712603357 26045:26051 hsa_signal_load_relaxed() = 1 -43929712127579:43929712605001 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929712604257:43929712605617 26045:26051 hsa_signal_store_screlease(, 0) = void -43929712606552:43929712607065 26045:26051 hsa_signal_destroy() = 0 -43929713042132:43929713042940 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929727639336:43929727640642 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929727646978:43929727648238 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929727650611:43929727653681 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929727654896:43929727655657 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929727656486:43929727657369 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929727658174:43929727658654 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929728130709:43929728131390 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929728133060:43929728133682 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929728134718:43929728136467 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e89d0) = 0 -43929728137494:43929728141615 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8990) = 0 -43929728142603:43929728144712 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929728611703:43929728614762 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929728616314:43929728616970 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929728622738:43929728623277 26045:26051 hsa_signal_load_relaxed() = 1 -43929728145565:43929728624794 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929728624147:43929728625533 26045:26051 hsa_signal_store_screlease(, 0) = void -43929728626040:43929728626713 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929728626412:43929728627061 26045:26051 hsa_signal_destroy() = 0 -43929728646133:43929728646787 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929728654429:43929728655058 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 68 -43929728655940:43929728656587 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 68 -43929728657510:43929728658128 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929728659001:43929728659359 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929728660491:43929728661090 26045:26045 hsa_signal_store_relaxed(, 68) = void -43929728662921:43929728663561 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929728670005:43929728670629 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929728672811:43929728673321 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929728674090:43929728674419 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 69 -43929728675161:43929728675491 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 68 -43929728676439:43929728676764 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929728677517:43929728677914 26045:26045 hsa_signal_store_relaxed(, 69) = void -43929728678921:43929729233271 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929729246360:43929729247142 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929729249722:43929729250759 26045:26045 hsa_signal_destroy() = 0 -43929729251944:43929729252668 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929729263231:43929729263650 26045:26045 hsa_signal_destroy() = 0 -43929729265145:43929729266446 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929729267323:43929729267797 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929729268599:43929729269160 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929729269905:43929729270283 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929729271232:43929729271671 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929729274757:43929729275414 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929729276307:43929729277174 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8a30) = 0 -43929729278028:43929729280509 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e89f0) = 0 -43929729281350:43929729282395 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929729774740:43929729777457 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929729778933:43929729779662 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929729780716:43929729781253 26045:26051 hsa_signal_load_relaxed() = 1 -43929729283247:43929729782874 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929729782145:43929729783570 26045:26051 hsa_signal_store_screlease(, 0) = void -43929729784505:43929729785013 26045:26051 hsa_signal_destroy() = 0 -43929730219689:43929730220490 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929744874998:43929744876353 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929744882383:43929744883467 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929744885652:43929744888712 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929744889860:43929744890571 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929744891400:43929744892092 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929744892893:43929744893363 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929745360245:43929745361123 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929745363071:43929745363693 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929745364732:43929745366443 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8a90) = 0 -43929745367464:43929745371748 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8a50) = 0 -43929745372755:43929745374696 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929745842090:43929745845068 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929745846568:43929745847222 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929745848385:43929745848921 26045:26051 hsa_signal_load_relaxed() = 1 -43929745375566:43929745850452 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929745849803:43929745851176 26045:26051 hsa_signal_store_screlease(, 0) = void -43929745851852:43929745852564 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929745852062:43929745852726 26045:26051 hsa_signal_destroy() = 0 -43929745868991:43929745869633 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929745877420:43929745878068 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 70 -43929745878948:43929745879413 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 70 -43929745880324:43929745880939 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929745881720:43929745882080 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929745883230:43929745883829 26045:26045 hsa_signal_store_relaxed(, 70) = void -43929745885412:43929745886044 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929745892147:43929745892777 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929745895309:43929745895930 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929745896696:43929745897030 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 71 -43929745897771:43929745898117 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 70 -43929745899068:43929745899391 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929745900149:43929745900544 26045:26045 hsa_signal_store_relaxed(, 71) = void -43929745901503:43929746460255 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929746473602:43929746474374 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929746476883:43929746477894 26045:26045 hsa_signal_destroy() = 0 -43929746479186:43929746479632 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929746480635:43929746490590 26045:26045 hsa_signal_destroy() = 0 -43929746491954:43929746493291 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929746494171:43929746494643 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929746495481:43929746496037 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929746496783:43929746497158 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929746498102:43929746498533 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929746499666:43929746500310 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929746501196:43929746501969 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8af0) = 0 -43929746502808:43929746505516 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8ab0) = 0 -43929746506363:43929746507459 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929746999021:43929747001772 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929747005196:43929747005860 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929747006834:43929747007316 26045:26051 hsa_signal_load_relaxed() = 1 -43929746508291:43929747017487 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929747016731:43929747018172 26045:26051 hsa_signal_store_screlease(, 0) = void -43929747019089:43929747019606 26045:26051 hsa_signal_destroy() = 0 -43929747455309:43929747456112 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929762117331:43929762118397 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929762124360:43929762125436 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929762127546:43929762140827 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929762142113:43929762142893 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929762143867:43929762144719 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929762145513:43929762146022 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929762604140:43929762604844 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929762606465:43929762607098 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929762608139:43929762609694 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8b50) = 0 -43929762610711:43929762614880 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8b10) = 0 -43929762615872:43929762617755 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929763102433:43929763105458 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929763106995:43929763107645 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929763108796:43929763109506 26045:26051 hsa_signal_load_relaxed() = 1 -43929762618681:43929763111059 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929763110417:43929763111964 26045:26051 hsa_signal_store_screlease(, 0) = void -43929763112284:43929763112947 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929763112849:43929763113500 26045:26051 hsa_signal_destroy() = 0 -43929763128957:43929763129608 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929763137186:43929763137909 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 72 -43929763138774:43929763139243 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 72 -43929763140190:43929763140814 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929763141639:43929763141996 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929763148028:43929763148626 26045:26045 hsa_signal_store_relaxed(, 72) = void -43929763150469:43929763151107 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929763157879:43929763158511 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929763161114:43929763161860 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929763162621:43929763162953 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 73 -43929763163707:43929763164044 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 72 -43929763164993:43929763165320 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929763166089:43929763166475 26045:26045 hsa_signal_store_relaxed(, 73) = void -43929763167526:43929765097400 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929765111803:43929765112658 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929765115364:43929765116433 26045:26045 hsa_signal_destroy() = 0 -43929765127636:43929765128205 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929765129234:43929765129748 26045:26045 hsa_signal_destroy() = 0 -43929765131329:43929765132753 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929765133739:43929765134261 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929765135143:43929765135770 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929765136604:43929765137022 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929765138062:43929765138546 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929765139806:43929765140523 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929765141507:43929765142353 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8bb0) = 0 -43929765143290:43929765146349 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8b70) = 0 -43929765147299:43929765148422 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929765611239:43929765613878 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929765615298:43929765616029 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929765617091:43929765617625 26045:26051 hsa_signal_load_relaxed() = 1 -43929765149365:43929765619141 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929765618534:43929765619883 26045:26051 hsa_signal_store_screlease(, 0) = void -43929765620817:43929765621325 26045:26051 hsa_signal_destroy() = 0 -43929766056212:43929766057012 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929780641022:43929780642143 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929780647909:43929780648937 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929780650980:43929780653576 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929780654649:43929780655399 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929780656241:43929780656788 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929780657597:43929780658074 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929781134598:43929781135329 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929781137287:43929781137914 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929781138998:43929781140491 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8c10) = 0 -43929781141516:43929781145472 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8bd0) = 0 -43929781146460:43929781148390 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929781631324:43929781634564 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929781636143:43929781636795 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929781637955:43929781638488 26045:26051 hsa_signal_load_relaxed() = 1 -43929781149359:43929781640026 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929781639378:43929781640774 26045:26051 hsa_signal_store_screlease(, 0) = void -43929781641227:43929781641908 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929781641655:43929781642300 26045:26051 hsa_signal_destroy() = 0 -43929781662630:43929781663287 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929781671025:43929781671667 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 74 -43929781672525:43929781672995 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 74 -43929781673957:43929781674575 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929781675385:43929781675739 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929781676919:43929781677523 26045:26045 hsa_signal_store_relaxed(, 74) = void -43929781679168:43929781679799 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929781685931:43929781686562 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929781688719:43929781689221 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929781690978:43929781691316 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 75 -43929781692059:43929781692396 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 74 -43929781693292:43929781693618 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929781694380:43929781694763 26045:26045 hsa_signal_store_relaxed(, 75) = void -43929781695709:43929783624022 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929783638538:43929783639374 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929783642027:43929783643112 26045:26045 hsa_signal_destroy() = 0 -43929783654307:43929783654888 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929783655910:43929783656354 26045:26045 hsa_signal_destroy() = 0 -43929783657874:43929783659348 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929783660331:43929783660865 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929783661741:43929783662427 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929783663256:43929783663673 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929783664728:43929783665211 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929783666474:43929783667195 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929783668182:43929783669102 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8c70) = 0 -43929783670042:43929783673069 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8c30) = 0 -43929783674014:43929783675174 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929784138990:43929784141664 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929784143102:43929784143831 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929784144886:43929784145426 26045:26051 hsa_signal_load_relaxed() = 1 -43929783676101:43929784147043 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929784146328:43929784147702 26045:26051 hsa_signal_store_screlease(, 0) = void -43929784148644:43929784149151 26045:26051 hsa_signal_destroy() = 0 -43929784583741:43929784584542 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929799168918:43929799170035 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929799176182:43929799177327 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929799179579:43929799182495 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929799183568:43929799184382 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929799190717:43929799191293 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929799192041:43929799192514 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929799659696:43929799660576 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929799662207:43929799662831 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929799663866:43929799665535 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8cd0) = 0 -43929799666513:43929799671166 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8c90) = 0 -43929799672113:43929799674233 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929800157850:43929800160900 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929800162468:43929800163133 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929800164254:43929800165012 26045:26051 hsa_signal_load_relaxed() = 1 -43929799675125:43929800166621 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929800165864:43929800167264 26045:26051 hsa_signal_store_screlease(, 0) = void -43929800167864:43929800168544 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929800168148:43929800168944 26045:26051 hsa_signal_destroy() = 0 -43929800184679:43929800185333 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929800193430:43929800194230 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 76 -43929800195172:43929800195642 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 76 -43929800196623:43929800197246 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929800198213:43929800198573 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929800199731:43929800200333 26045:26045 hsa_signal_store_relaxed(, 76) = void -43929800201901:43929800202533 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929800208762:43929800209390 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929800211640:43929800212264 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929800213019:43929800213344 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 77 -43929800214082:43929800214432 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 76 -43929800215412:43929800215744 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929800216533:43929800216920 26045:26045 hsa_signal_store_relaxed(, 77) = void -43929800217958:43929802148500 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929802167413:43929802177658 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929802179580:43929802180352 26045:26045 hsa_signal_destroy() = 0 -43929802181433:43929802181883 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929802182888:43929802183321 26045:26045 hsa_signal_destroy() = 0 -43929802184882:43929802186316 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929802187299:43929802187836 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929802188722:43929802189350 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929802190181:43929802190599 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929802191646:43929802192129 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929802193397:43929802194111 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929802195096:43929802195968 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8d30) = 0 -43929802196905:43929802199960 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8cf0) = 0 -43929802200901:43929802202026 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929802665931:43929802668585 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929802670031:43929802670761 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929802671824:43929802672357 26045:26051 hsa_signal_load_relaxed() = 1 -43929802202956:43929802673883 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929802673256:43929802674619 26045:26051 hsa_signal_store_screlease(, 0) = void -43929802675553:43929802676061 26045:26051 hsa_signal_destroy() = 0 -43929803111026:43929803111848 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929817748554:43929817749670 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929817755848:43929817757286 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929817759569:43929817762721 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929817763843:43929817764617 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929817765450:43929817766143 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929817766940:43929817767412 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929818224488:43929818225404 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929818226994:43929818227619 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929818228658:43929818230146 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8d90) = 0 -43929818234874:43929818239203 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8d50) = 0 -43929818240165:43929818242044 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929818725633:43929818728948 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929818730385:43929818731044 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929818732180:43929818732717 26045:26051 hsa_signal_load_relaxed() = 1 -43929818242875:43929818734217 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929818733568:43929818734954 26045:26051 hsa_signal_store_screlease(, 0) = void -43929818735440:43929818736123 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929818735845:43929818736490 26045:26051 hsa_signal_destroy() = 0 -43929818752170:43929818752829 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929818760632:43929818761275 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 78 -43929818762185:43929818762654 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 78 -43929818763587:43929818764193 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929818765017:43929818765369 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929818766503:43929818767106 26045:26045 hsa_signal_store_relaxed(, 78) = void -43929818768706:43929818769335 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929818775910:43929818776541 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929818778773:43929818779402 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929818780185:43929818780516 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 79 -43929818781254:43929818781592 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 78 -43929818782537:43929818782865 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929818783620:43929818784003 26045:26045 hsa_signal_store_relaxed(, 79) = void -43929818784956:43929820716198 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929820730880:43929820731756 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929820734457:43929820745553 26045:26045 hsa_signal_destroy() = 0 -43929820746704:43929820747212 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929820748239:43929820748724 26045:26045 hsa_signal_destroy() = 0 -43929820750302:43929820751696 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929820755175:43929820755707 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929820756617:43929820757327 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929820758150:43929820758567 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929820759613:43929820760097 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929820761358:43929820762067 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929820763045:43929820763907 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8df0) = 0 -43929820764848:43929820767920 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8db0) = 0 -43929820768848:43929820769989 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929821235862:43929821238439 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929821239898:43929821240633 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929821241718:43929821242257 26045:26051 hsa_signal_load_relaxed() = 1 -43929820770933:43929821243762 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929821243155:43929821244522 26045:26051 hsa_signal_store_screlease(, 0) = void -43929821245475:43929821245990 26045:26051 hsa_signal_destroy() = 0 -43929821680395:43929821681190 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929836368472:43929836369549 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929836375989:43929836377330 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929836379523:43929836382603 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929836383653:43929836384385 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929836385218:43929836385947 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929836386723:43929836387468 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929836853547:43929836854568 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929836856303:43929836856931 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929836857978:43929836859699 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8e50) = 0 -43929836860808:43929836865771 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8e10) = 0 -43929836866778:43929836868891 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929837318388:43929837321432 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929837322933:43929837323591 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929837324768:43929837325313 26045:26051 hsa_signal_load_relaxed() = 1 -43929836869763:43929837330851 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929837330176:43929837331623 26045:26051 hsa_signal_store_screlease(, 0) = void -43929837332199:43929837332913 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929837332578:43929837333229 26045:26051 hsa_signal_destroy() = 0 -43929837349127:43929837349792 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929837357673:43929837358366 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 80 -43929837359255:43929837359730 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 80 -43929837360667:43929837361290 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929837362148:43929837362514 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929837363678:43929837364292 26045:26045 hsa_signal_store_relaxed(, 80) = void -43929837365871:43929837366519 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929837372860:43929837373508 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929837375836:43929837376481 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929837377270:43929837377621 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 81 -43929837378378:43929837378716 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 80 -43929837379713:43929837380042 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929837380848:43929837381239 26045:26045 hsa_signal_store_relaxed(, 81) = void -43929837382286:43929839302455 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929839316540:43929839317379 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929839320070:43929839321168 26045:26045 hsa_signal_destroy() = 0 -43929839331972:43929839332481 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929839333520:43929839333962 26045:26045 hsa_signal_destroy() = 0 -43929839335365:43929839336759 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929839337800:43929839338327 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929839339258:43929839339886 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929839340742:43929839341159 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929839342203:43929839342683 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929839344075:43929839344788 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929839348765:43929839349702 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8eb0) = 0 -43929839350662:43929839353707 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8e70) = 0 -43929839354641:43929839355775 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929839818737:43929839821385 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929839822834:43929839823555 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929839824611:43929839825137 26045:26051 hsa_signal_load_relaxed() = 1 -43929839356721:43929839826647 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929839826030:43929839827490 26045:26051 hsa_signal_store_screlease(, 0) = void -43929839828431:43929839828935 26045:26051 hsa_signal_destroy() = 0 -43929840270054:43929840270877 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929854833241:43929854834318 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929854840013:43929854841109 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929854843177:43929854846348 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929854847419:43929854848169 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929854848991:43929854849531 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929854850324:43929854850799 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929855305368:43929855306250 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929855308100:43929855308718 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929855309824:43929855311384 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8f10) = 0 -43929855312397:43929855316747 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8ed0) = 0 -43929855317748:43929855319608 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929855803449:43929855806445 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929855807962:43929855808630 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929855809782:43929855810321 26045:26051 hsa_signal_load_relaxed() = 1 -43929855320478:43929855811845 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929855811204:43929855812590 26045:26051 hsa_signal_store_screlease(, 0) = void -43929855813245:43929855813973 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929855813481:43929855814129 26045:26051 hsa_signal_destroy() = 0 -43929855830204:43929855830855 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929855844489:43929855845136 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 82 -43929855846052:43929855846525 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 82 -43929855847454:43929855848064 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929855848905:43929855849260 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929855850395:43929855850983 26045:26045 hsa_signal_store_relaxed(, 82) = void -43929855852608:43929855853242 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929855860075:43929855860705 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929855862934:43929855863691 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929855864447:43929855864773 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 83 -43929855865515:43929855865844 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 82 -43929855866790:43929855867121 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929855867880:43929855868255 26045:26045 hsa_signal_store_relaxed(, 83) = void -43929855869192:43929857796253 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929857810867:43929857811690 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929857814387:43929857815484 26045:26045 hsa_signal_destroy() = 0 -43929857826696:43929857827218 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929857828257:43929857828698 26045:26045 hsa_signal_destroy() = 0 -43929857830196:43929857831598 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929857832568:43929857833087 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929857833970:43929857834593 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929857835436:43929857835853 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929857836895:43929857837372 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929857838613:43929857839325 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929857840311:43929857841166 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8f70) = 0 -43929857842103:43929857845191 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8f30) = 0 -43929857846146:43929857847270 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929858314517:43929858317193 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929858318638:43929858319352 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929858323170:43929858323703 26045:26051 hsa_signal_load_relaxed() = 1 -43929857848214:43929858325219 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929858324610:43929858326029 26045:26051 hsa_signal_store_screlease(, 0) = void -43929858326941:43929858327441 26045:26051 hsa_signal_destroy() = 0 -43929858761647:43929858762454 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929873399209:43929873400269 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929873406106:43929873407478 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929873409484:43929873412277 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929873413455:43929873414220 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929873415045:43929873415682 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929873416453:43929873416944 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929873881615:43929873882491 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929873884228:43929873884850 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929873885886:43929873887448 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e8fd0) = 0 -43929873888704:43929873892804 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8f90) = 0 -43929873893956:43929873895918 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929874379407:43929874382385 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929874383945:43929874384604 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929874385760:43929874386296 26045:26051 hsa_signal_load_relaxed() = 1 -43929873896782:43929874387845 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929874387185:43929874388591 26045:26051 hsa_signal_store_screlease(, 0) = void -43929874389099:43929874389777 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929874389480:43929874390130 26045:26051 hsa_signal_destroy() = 0 -43929874406462:43929874407112 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929874415007:43929874415654 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 84 -43929874416555:43929874417152 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 84 -43929874418139:43929874418759 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929874419598:43929874419957 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929874426047:43929874426661 26045:26045 hsa_signal_store_relaxed(, 84) = void -43929874428268:43929874428896 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929874436438:43929874437073 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929874439378:43929874439959 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929874440739:43929874441077 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 85 -43929874441813:43929874442149 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 84 -43929874443102:43929874443431 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929874444183:43929874444569 26045:26045 hsa_signal_store_relaxed(, 85) = void -43929874445585:43929876378576 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929876393510:43929876394369 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929876396973:43929876407963 26045:26045 hsa_signal_destroy() = 0 -43929876409116:43929876409624 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929876410658:43929876411136 26045:26045 hsa_signal_destroy() = 0 -43929876412531:43929876414034 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929876415006:43929876415524 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929876416437:43929876417059 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929876417891:43929876418305 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929876419348:43929876419823 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929876423387:43929876424118 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929876425123:43929876426043 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9030) = 0 -43929876426984:43929876430062 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e8ff0) = 0 -43929876431000:43929876432243 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929876895474:43929876898159 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929876899595:43929876900312 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929876901377:43929876901902 26045:26051 hsa_signal_load_relaxed() = 1 -43929876433194:43929876903426 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929876902794:43929876904169 26045:26051 hsa_signal_store_screlease(, 0) = void -43929876905100:43929876905598 26045:26051 hsa_signal_destroy() = 0 -43929877339418:43929877340220 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929891972800:43929891973807 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929891979579:43929891980601 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929891982495:43929891985427 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929891986632:43929891987384 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929891988212:43929891988937 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929891989737:43929891990205 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929892466582:43929892467324 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929892469392:43929892470023 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929892471155:43929892472842 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9090) = 0 -43929892473868:43929892477544 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9050) = 0 -43929892478528:43929892480457 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929892963663:43929892966954 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929892968483:43929892969127 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929892970338:43929892970861 26045:26051 hsa_signal_load_relaxed() = 1 -43929892481348:43929892972391 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929892971757:43929892973129 26045:26051 hsa_signal_store_screlease(, 0) = void -43929892973599:43929892974279 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929892974016:43929892974651 26045:26051 hsa_signal_destroy() = 0 -43929892990854:43929892991501 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929892999505:43929893000150 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 86 -43929893001048:43929893001518 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 86 -43929893002479:43929893003082 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929893003951:43929893004306 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929893005466:43929893006058 26045:26045 hsa_signal_store_relaxed(, 86) = void -43929893007794:43929893008431 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929893014707:43929893015334 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929893017606:43929893018228 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929893018968:43929893019291 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 87 -43929893024385:43929893024730 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 86 -43929893025690:43929893026031 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929893026789:43929893027174 26045:26045 hsa_signal_store_relaxed(, 87) = void -43929893028131:43929894943460 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929894958013:43929894958848 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929894961718:43929894962797 26045:26045 hsa_signal_destroy() = 0 -43929894973872:43929894974419 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929894975481:43929894975920 26045:26045 hsa_signal_destroy() = 0 -43929894977408:43929894978845 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929894979824:43929894980347 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929894981229:43929894981862 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929894982689:43929894983105 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929894984153:43929894984632 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929894985908:43929894986620 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929894987603:43929894988545 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e90f0) = 0 -43929894989482:43929894992504 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e90b0) = 0 -43929894993443:43929894994577 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929895456026:43929895458746 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929895460197:43929895460935 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929895461989:43929895462525 26045:26051 hsa_signal_load_relaxed() = 1 -43929894995494:43929895464039 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929895463423:43929895464743 26045:26051 hsa_signal_store_screlease(, 0) = void -43929895465670:43929895466174 26045:26051 hsa_signal_destroy() = 0 -43929895900173:43929895900974 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929910481977:43929910483055 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929910488786:43929910489949 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929910492260:43929910495171 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929910496208:43929910497166 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929910497995:43929910498608 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929910504820:43929910505466 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929910969324:43929910970300 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929910971958:43929910972580 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929910973632:43929910975203 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9150) = 0 -43929910976191:43929910979542 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9110) = 0 -43929910980490:43929910982352 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929911467455:43929911470651 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929911472184:43929911472839 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929911473957:43929911474493 26045:26051 hsa_signal_load_relaxed() = 1 -43929910983328:43929911476119 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929911475458:43929911476858 26045:26051 hsa_signal_store_screlease(, 0) = void -43929911477371:43929911478050 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929911477746:43929911478388 26045:26051 hsa_signal_destroy() = 0 -43929911494388:43929911495037 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929911502726:43929911503355 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 88 -43929911504252:43929911504718 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 88 -43929911505704:43929911506308 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929911507117:43929911507473 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929911508619:43929911509209 26045:26045 hsa_signal_store_relaxed(, 88) = void -43929911510786:43929911511424 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929911517600:43929911518230 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929911520520:43929911521236 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929911522013:43929911522346 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 89 -43929911523091:43929911523423 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 88 -43929911524404:43929911524729 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929911525519:43929911525899 26045:26045 hsa_signal_store_relaxed(, 89) = void -43929911526916:43929913458472 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929913473055:43929913473882 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929913489814:43929913490586 26045:26045 hsa_signal_destroy() = 0 -43929913491751:43929913492320 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929913493380:43929913493819 26045:26045 hsa_signal_destroy() = 0 -43929913495346:43929913496829 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929913497800:43929913498336 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929913499214:43929913499907 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929913500735:43929913501153 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929913502205:43929913502688 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929913503992:43929913504706 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929913505687:43929913506591 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e91b0) = 0 -43929913507520:43929913510621 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9170) = 0 -43929913511555:43929913512675 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929913976858:43929913979517 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929913980977:43929913981700 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929913982755:43929913983279 26045:26051 hsa_signal_load_relaxed() = 1 -43929913513616:43929913984775 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929913984177:43929913985748 26045:26051 hsa_signal_store_screlease(, 0) = void -43929913986694:43929913987197 26045:26051 hsa_signal_destroy() = 0 -43929914421657:43929914422456 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929929131704:43929929132911 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929929139139:43929929140198 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929929142456:43929929145418 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929929146551:43929929147322 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929929148144:43929929148807 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929929149627:43929929150138 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929929614560:43929929615272 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929929616842:43929929617472 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929929618465:43929929620113 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9210) = 0 -43929929621158:43929929624978 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e91d0) = 0 -43929929629932:43929929632080 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929930116050:43929930119128 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929930120713:43929930121383 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929930122477:43929930123015 26045:26051 hsa_signal_load_relaxed() = 1 -43929929632991:43929930124548 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929930123890:43929930125391 26045:26051 hsa_signal_store_screlease(, 0) = void -43929930125869:43929930126545 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929930126278:43929930126937 26045:26051 hsa_signal_destroy() = 0 -43929930142964:43929930143614 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929930151374:43929930152027 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 90 -43929930152907:43929930153390 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 90 -43929930154304:43929930154916 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929930155682:43929930156045 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929930157190:43929930157799 26045:26045 hsa_signal_store_relaxed(, 90) = void -43929930159426:43929930160055 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929930166407:43929930167043 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929930169550:43929930170194 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929930170965:43929930171294 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 91 -43929930172027:43929930172362 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 90 -43929930173328:43929930173654 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929930174419:43929930174796 26045:26045 hsa_signal_store_relaxed(, 91) = void -43929930175769:43929932105862 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929932120727:43929932121603 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929932124258:43929932135221 26045:26045 hsa_signal_destroy() = 0 -43929932136427:43929932136936 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929932137967:43929932138456 26045:26045 hsa_signal_destroy() = 0 -43929932139968:43929932141424 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929932142414:43929932142939 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929932146305:43929932146936 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929932147791:43929932148210 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929932149274:43929932149759 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929932151031:43929932151746 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929932152724:43929932153587 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9270) = 0 -43929932154522:43929932157592 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9230) = 0 -43929932158521:43929932159655 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929932622784:43929932625452 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929932626889:43929932627614 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929932628675:43929932629208 26045:26051 hsa_signal_load_relaxed() = 1 -43929932160606:43929932630721 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929932630116:43929932631449 26045:26051 hsa_signal_store_screlease(, 0) = void -43929932632385:43929932632896 26045:26051 hsa_signal_destroy() = 0 -43929933068340:43929933069146 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929947657177:43929947658328 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929947664337:43929947665438 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929947667535:43929947670714 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929947671823:43929947672576 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929947673404:43929947674084 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929947674858:43929947675343 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929948144067:43929948144705 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929948146487:43929948147116 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929948148406:43929948149759 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e92d0) = 0 -43929948150791:43929948154513 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9290) = 0 -43929948155672:43929948157640 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929948642902:43929948645875 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929948647396:43929948648052 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929948649209:43929948649742 26045:26051 hsa_signal_load_relaxed() = 1 -43929948158497:43929948651353 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929948650703:43929948652096 26045:26051 hsa_signal_store_screlease(, 0) = void -43929948656077:43929948656709 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929948656860:43929948657471 26045:26051 hsa_signal_destroy() = 0 -43929948672717:43929948673363 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929948681094:43929948681771 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 92 -43929948682653:43929948683116 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 92 -43929948684074:43929948684679 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929948685519:43929948685883 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929948687030:43929948687637 26045:26045 hsa_signal_store_relaxed(, 92) = void -43929948689232:43929948689863 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929948696402:43929948697034 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929948699196:43929948699819 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929948700591:43929948700925 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 93 -43929948701669:43929948702026 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 92 -43929948702980:43929948703301 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929948704054:43929948704435 26045:26045 hsa_signal_store_relaxed(, 93) = void -43929948705490:43929950633750 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929950648520:43929950649347 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929950651843:43929950652940 26045:26045 hsa_signal_destroy() = 0 -43929950664860:43929950665383 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929950666394:43929950666838 26045:26045 hsa_signal_destroy() = 0 -43929950668390:43929950669835 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929950670811:43929950671333 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929950672257:43929950672875 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929950673705:43929950674117 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929950675163:43929950675635 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929950676893:43929950677609 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929950678589:43929950679518 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9330) = 0 -43929950682763:43929950685782 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e92f0) = 0 -43929950686737:43929950687882 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929951151013:43929951153660 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929951155116:43929951155835 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929951156890:43929951157409 26045:26051 hsa_signal_load_relaxed() = 1 -43929950688811:43929951158919 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929951158308:43929951159691 26045:26051 hsa_signal_store_screlease(, 0) = void -43929951160631:43929951161130 26045:26051 hsa_signal_destroy() = 0 -43929951596233:43929951597030 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929966213099:43929966214168 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929966220136:43929966221163 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929966223478:43929966226199 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929966227286:43929966228122 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929966228942:43929966229553 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929966230352:43929966230831 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929966687622:43929966688488 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929966690237:43929966690867 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929966691900:43929966693428 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9390) = 0 -43929966694447:43929966697729 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9350) = 0 -43929966698709:43929966700700 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929967181560:43929967184561 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929967186103:43929967186750 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929967187882:43929967188413 26045:26051 hsa_signal_load_relaxed() = 1 -43929966701636:43929967189936 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929967189296:43929967190909 26045:26051 hsa_signal_store_screlease(, 0) = void -43929967191274:43929967191937 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929967191790:43929967192404 26045:26051 hsa_signal_destroy() = 0 -43929967208404:43929967209061 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929967220260:43929967220909 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 94 -43929967221805:43929967222274 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 94 -43929967223190:43929967223802 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929967224633:43929967224990 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929967226147:43929967226744 26045:26045 hsa_signal_store_relaxed(, 94) = void -43929967228433:43929967229067 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929967235255:43929967235887 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929967238368:43929967239004 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929967239767:43929967240102 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 95 -43929967240848:43929967241185 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 94 -43929967242135:43929967242462 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929967243221:43929967243601 26045:26045 hsa_signal_store_relaxed(, 95) = void -43929967244540:43929969166963 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929969181755:43929969182592 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929969185290:43929969196243 26045:26045 hsa_signal_destroy() = 0 -43929969197457:43929969198034 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929969199037:43929969199470 26045:26045 hsa_signal_destroy() = 0 -43929969201083:43929969202543 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929969203525:43929969204042 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929969204928:43929969205616 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929969206444:43929969206861 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929969207917:43929969208401 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929969209666:43929969210382 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929969211366:43929969212222 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e93f0) = 0 -43929969213159:43929969216252 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e93b0) = 0 -43929969217190:43929969218539 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929969682090:43929969684705 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929969686143:43929969686866 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929969687913:43929969688437 26045:26051 hsa_signal_load_relaxed() = 1 -43929969219464:43929969692892 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929969692276:43929969693641 26045:26051 hsa_signal_store_screlease(, 0) = void -43929969694571:43929969695065 26045:26051 hsa_signal_destroy() = 0 -43929970130692:43929970131506 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929984787175:43929984788237 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929984794030:43929984795104 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929984797082:43929984800106 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43929984801256:43929984802023 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929984802846:43929984803479 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43929984804277:43929984804750 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929985272593:43929985273329 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929985275036:43929985275662 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929985276696:43929985278324 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9450) = 0 -43929985279343:43929985283140 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9410) = 0 -43929985284132:43929985285996 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43929985769855:43929985772851 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929985774388:43929985775062 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929985776203:43929985776735 26045:26051 hsa_signal_load_relaxed() = 1 -43929985286909:43929985778279 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929985777625:43929985779178 26045:26051 hsa_signal_store_screlease(, 0) = void -43929985779790:43929985780471 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929985780061:43929985780702 26045:26051 hsa_signal_destroy() = 0 -43929985796407:43929985797058 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929985804613:43929985805243 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 96 -43929985806352:43929985806814 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 96 -43929985807753:43929985808373 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43929985809243:43929985809605 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929985810765:43929985811359 26045:26045 hsa_signal_store_relaxed(, 96) = void -43929985819075:43929985819718 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43929985826124:43929985826753 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43929985829053:43929985829758 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43929985830526:43929985830856 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 97 -43929985831610:43929985831956 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 96 -43929985832899:43929985833221 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43929985833980:43929985834360 26045:26045 hsa_signal_store_relaxed(, 97) = void -43929985835340:43929987762696 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929987777040:43929987777904 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929987780530:43929987781609 26045:26045 hsa_signal_destroy() = 0 -43929987792784:43929987793366 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43929987794645:43929987795133 26045:26045 hsa_signal_destroy() = 0 -43929987796670:43929987798108 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43929987799093:43929987799616 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43929987800501:43929987801124 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43929987801953:43929987802369 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43929987803425:43929987803910 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43929987805166:43929987805881 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43929987806859:43929987807729 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e94b0) = 0 -43929987808673:43929987811678 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9470) = 0 -43929987812621:43929987813732 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43929988276922:43929988279635 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43929988281131:43929988281855 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43929988282908:43929988283446 26045:26051 hsa_signal_load_relaxed() = 1 -43929987814648:43929988285069 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43929988284342:43929988285799 26045:26051 hsa_signal_store_screlease(, 0) = void -43929988286735:43929988287241 26045:26051 hsa_signal_destroy() = 0 -43929988721606:43929988722408 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930003334792:43930003335844 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930003347699:43930003348836 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930003350687:43930003353622 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930003354650:43930003355403 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930003356235:43930003356922 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930003357666:43930003358132 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930003824982:43930003825908 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930003827602:43930003828225 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930003829252:43930003830773 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9510) = 0 -43930003831757:43930003835599 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e94d0) = 0 -43930003836710:43930003838648 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930004333654:43930004336957 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930004338553:43930004339198 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930004340375:43930004340904 26045:26051 hsa_signal_load_relaxed() = 1 -43930003839543:43930004342560 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930004341775:43930004343162 26045:26051 hsa_signal_store_screlease(, 0) = void -43930004343893:43930004344558 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930004344056:43930004344672 26045:26051 hsa_signal_destroy() = 0 -43930004361029:43930004361669 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930004369201:43930004369987 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 98 -43930004370851:43930004371313 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 98 -43930004372280:43930004372923 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930004373705:43930004374066 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930004375181:43930004375788 26045:26045 hsa_signal_store_relaxed(, 98) = void -43930004377422:43930004378051 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930004384390:43930004385021 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930004387234:43930004387856 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930004388607:43930004388932 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 99 -43930004389665:43930004390018 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 98 -43930004392827:43930004393170 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930004393938:43930004394326 26045:26045 hsa_signal_store_relaxed(, 99) = void -43930004395278:43930006317213 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930006331659:43930006332478 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930006335162:43930006336241 26045:26045 hsa_signal_destroy() = 0 -43930006346881:43930006347456 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930006348488:43930006348938 26045:26045 hsa_signal_destroy() = 0 -43930006350412:43930006351849 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930006352819:43930006353342 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930006354287:43930006354911 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930006355739:43930006356160 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930006357193:43930006357674 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930006358913:43930006359636 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930006360621:43930006361570 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9570) = 0 -43930006362500:43930006365531 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9530) = 0 -43930006366476:43930006367600 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930006830862:43930006833693 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930006835193:43930006835919 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930006837016:43930006837543 26045:26051 hsa_signal_load_relaxed() = 1 -43930006368547:43930006839057 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930006838444:43930006839837 26045:26051 hsa_signal_store_screlease(, 0) = void -43930006840776:43930006841275 26045:26051 hsa_signal_destroy() = 0 -43930007276385:43930007277186 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930021909178:43930021910294 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930021915817:43930021916931 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930021918969:43930021922195 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930021923268:43930021923937 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930021924763:43930021925456 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930021926233:43930021926736 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930022398000:43930022398757 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930022400405:43930022401029 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930022402057:43930022403910 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e95d0) = 0 -43930022404915:43930022408222 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9590) = 0 -43930022409331:43930022411072 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930022879826:43930022882798 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930022884583:43930022885228 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930022886330:43930022886857 26045:26051 hsa_signal_load_relaxed() = 1 -43930022411985:43930022888437 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930022887792:43930022889173 26045:26051 hsa_signal_store_screlease(, 0) = void -43930022889766:43930022890441 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930022890057:43930022890694 26045:26051 hsa_signal_destroy() = 0 -43930022906730:43930022907378 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930022914985:43930022915629 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 100 -43930022916686:43930022917156 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 100 -43930022918073:43930022918686 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930022919497:43930022919850 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930022921007:43930022921586 26045:26045 hsa_signal_store_relaxed(, 100) = void -43930022923247:43930022923883 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930022929809:43930022930437 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930022932726:43930022933355 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930022934112:43930022934447 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 101 -43930022935208:43930022935544 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 100 -43930022936514:43930022936837 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930022937629:43930022938011 26045:26045 hsa_signal_store_relaxed(, 101) = void -43930022939048:43930023496099 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930023509485:43930023510256 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930023512868:43930023513880 26045:26045 hsa_signal_destroy() = 0 -43930023529574:43930023530051 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930023530982:43930023531371 26045:26045 hsa_signal_destroy() = 0 -43930023532734:43930023534112 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930023534981:43930023535451 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930023536271:43930023536824 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930023537565:43930023537942 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930023538885:43930023539322 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930023540455:43930023541102 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930023541984:43930023542974 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9630) = 0 -43930023543812:43930023546299 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e95f0) = 0 -43930023547141:43930023548158 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930024008883:43930024011547 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930024012996:43930024013720 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930024014773:43930024015295 26045:26051 hsa_signal_load_relaxed() = 1 -43930023549005:43930024016901 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930024016200:43930024017571 26045:26051 hsa_signal_store_screlease(, 0) = void -43930024018507:43930024019005 26045:26051 hsa_signal_destroy() = 0 -43930024454906:43930024455707 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930039078442:43930039079504 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930039085540:43930039086637 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930039088750:43930039091857 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930039092921:43930039093663 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930039094491:43930039095113 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930039095915:43930039096409 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930039561747:43930039562672 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930039564635:43930039565262 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930039566299:43930039568277 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9690) = 0 -43930039569312:43930039572420 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9650) = 0 -43930039573542:43930039575455 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930040044142:43930040047408 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930040049104:43930040049793 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930040050964:43930040051519 26045:26051 hsa_signal_load_relaxed() = 1 -43930039580085:43930040062182 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930040061531:43930040062972 26045:26051 hsa_signal_store_screlease(, 0) = void -43930040063490:43930040064186 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930040063886:43930040064550 26045:26051 hsa_signal_destroy() = 0 -43930040090607:43930040091256 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930040098574:43930040099229 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 102 -43930040100105:43930040100574 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 102 -43930040101498:43930040102142 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930040102977:43930040103332 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930040104456:43930040105116 26045:26045 hsa_signal_store_relaxed(, 102) = void -43930040106796:43930040107428 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930040113717:43930040114348 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930040116624:43930040117254 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930040118015:43930040118350 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 103 -43930040119088:43930040119435 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 102 -43930040120405:43930040120728 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930040121483:43930040121863 26045:26045 hsa_signal_store_relaxed(, 103) = void -43930040122844:43930040684921 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930040697964:43930040698781 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930040701296:43930040702306 26045:26045 hsa_signal_destroy() = 0 -43930040703479:43930040704147 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930040715146:43930040715641 26045:26045 hsa_signal_destroy() = 0 -43930040717070:43930040718335 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930040719219:43930040719696 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930040720521:43930040721131 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930040724286:43930040724671 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930040725633:43930040726070 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930040727205:43930040727846 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930040728734:43930040729512 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e96f0) = 0 -43930040730353:43930040733148 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e96b0) = 0 -43930040733986:43930040735019 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930041194982:43930041197613 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930041199074:43930041199791 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930041200845:43930041201373 26045:26051 hsa_signal_load_relaxed() = 1 -43930040735865:43930041203015 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930041202269:43930041203625 26045:26051 hsa_signal_store_screlease(, 0) = void -43930041204561:43930041205058 26045:26051 hsa_signal_destroy() = 0 -43930041639748:43930041640548 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930056274831:43930056275903 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930056281666:43930056282831 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930056285253:43930056288158 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930056289276:43930056290001 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930056290823:43930056291519 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930056292287:43930056292760 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930056759230:43930056759963 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930056761981:43930056762609 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930056763632:43930056765333 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9750) = 0 -43930056766342:43930056769827 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9710) = 0 -43930056771036:43930056772937 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930057241539:43930057244530 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930057246047:43930057246688 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930057247839:43930057248369 26045:26051 hsa_signal_load_relaxed() = 1 -43930056773796:43930057249903 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930057249257:43930057250629 26045:26051 hsa_signal_store_screlease(, 0) = void -43930057254253:43930057254881 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930057255533:43930057256128 26045:26051 hsa_signal_destroy() = 0 -43930057270805:43930057271435 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930057279331:43930057280022 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 104 -43930057280908:43930057281377 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 104 -43930057282340:43930057282939 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930057283721:43930057284083 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930057285228:43930057285830 26045:26045 hsa_signal_store_relaxed(, 104) = void -43930057287483:43930057288111 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930057294507:43930057295138 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930057297346:43930057297967 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930057298728:43930057299059 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 105 -43930057299793:43930057300138 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 104 -43930057301020:43930057301344 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930057302101:43930057302483 26045:26045 hsa_signal_store_relaxed(, 105) = void -43930057303484:43930057859583 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930057873088:43930057873866 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930057876405:43930057877423 26045:26045 hsa_signal_destroy() = 0 -43930057878602:43930057879219 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930057890241:43930057890650 26045:26045 hsa_signal_destroy() = 0 -43930057892068:43930057893414 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930057894291:43930057894755 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930057895593:43930057896152 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930057896900:43930057897276 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930057898217:43930057898656 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930057899793:43930057900436 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930057901317:43930057902159 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e97b0) = 0 -43930057903003:43930057905746 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9770) = 0 -43930057908663:43930057909737 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930058370388:43930058372982 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930058374444:43930058375161 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930058376214:43930058376742 26045:26051 hsa_signal_load_relaxed() = 1 -43930057910612:43930058378381 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930058377646:43930058379055 26045:26051 hsa_signal_store_screlease(, 0) = void -43930058379992:43930058380492 26045:26051 hsa_signal_destroy() = 0 -43930058821563:43930058822359 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930073422137:43930073423216 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930073429144:43930073430373 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930073432303:43930073435314 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930073436417:43930073437296 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930073438133:43930073438709 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930073439527:43930073440004 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930073907009:43930073907738 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930073909556:43930073910178 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930073911301:43930073912773 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9810) = 0 -43930073913796:43930073917240 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e97d0) = 0 -43930073918222:43930073920070 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930074387428:43930074390460 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930074391958:43930074392604 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930074393828:43930074394365 26045:26051 hsa_signal_load_relaxed() = 1 -43930073921036:43930074395906 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930074395257:43930074396644 26045:26051 hsa_signal_store_screlease(, 0) = void -43930074397265:43930074397938 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930074397529:43930074398174 26045:26051 hsa_signal_destroy() = 0 -43930074418318:43930074418971 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930074427103:43930074427745 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 106 -43930074429698:43930074430207 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 106 -43930074431196:43930074431829 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930074432669:43930074433028 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930074434201:43930074434808 26045:26045 hsa_signal_store_relaxed(, 106) = void -43930074436457:43930074437090 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930074443355:43930074443987 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930074446416:43930074447052 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930074447805:43930074448129 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 107 -43930074448864:43930074449190 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 106 -43930074450146:43930074450469 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930074451226:43930074451606 26045:26045 hsa_signal_store_relaxed(, 107) = void -43930074452547:43930075008052 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930075021524:43930075022297 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930075024847:43930075025868 26045:26045 hsa_signal_destroy() = 0 -43930075027089:43930075027637 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930075038667:43930075039104 26045:26045 hsa_signal_destroy() = 0 -43930075040535:43930075041842 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930075042727:43930075043195 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930075043988:43930075044607 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930075045351:43930075045730 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930075046735:43930075047173 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930075048304:43930075048944 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930075049825:43930075050632 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9870) = 0 -43930075051485:43930075053958 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9830) = 0 -43930075054813:43930075055824 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930075515520:43930075518102 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930075519534:43930075520257 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930075521311:43930075521831 26045:26051 hsa_signal_load_relaxed() = 1 -43930075056670:43930075523468 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930075522734:43930075524108 26045:26051 hsa_signal_store_screlease(, 0) = void -43930075528465:43930075528970 26045:26051 hsa_signal_destroy() = 0 -43930075962464:43930075963328 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930090570121:43930090571241 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930090576859:43930090577928 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930090579903:43930090582932 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930090584253:43930090584922 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930090585830:43930090586552 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930090587345:43930090587826 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930091054656:43930091055399 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930091057054:43930091057685 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930091058727:43930091060308 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e98d0) = 0 -43930091061837:43930091065912 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9890) = 0 -43930091066910:43930091068802 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930091537241:43930091540241 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930091541765:43930091542417 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930091543621:43930091544143 26045:26051 hsa_signal_load_relaxed() = 1 -43930091069822:43930091545708 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930091545053:43930091546623 26045:26051 hsa_signal_store_screlease(, 0) = void -43930091547059:43930091547735 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930091547562:43930091548190 26045:26051 hsa_signal_destroy() = 0 -43930091563818:43930091564476 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930091572437:43930091573195 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 108 -43930091574085:43930091574555 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 108 -43930091575570:43930091576173 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930091576993:43930091577354 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930091578507:43930091579095 26045:26045 hsa_signal_store_relaxed(, 108) = void -43930091580664:43930091581297 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930091591624:43930091592265 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930091594487:43930091595074 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930091595830:43930091596164 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 109 -43930091596898:43930091597251 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 108 -43930091598188:43930091598512 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930091599277:43930091599664 26045:26045 hsa_signal_store_relaxed(, 109) = void -43930091600640:43930092158131 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930092171613:43930092172439 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930092175088:43930092176094 26045:26045 hsa_signal_destroy() = 0 -43930092177301:43930092177905 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930092188461:43930092188927 26045:26045 hsa_signal_destroy() = 0 -43930092190468:43930092191756 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930092192638:43930092193151 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930092193966:43930092194579 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930092195330:43930092195706 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930092196628:43930092197061 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930092198230:43930092198879 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930092199767:43930092200533 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9930) = 0 -43930092201381:43930092204140 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e98f0) = 0 -43930092204988:43930092205995 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930092697461:43930092699997 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930092701317:43930092701962 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930092702911:43930092703383 26045:26051 hsa_signal_load_relaxed() = 1 -43930092206848:43930092704851 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930092704194:43930092705463 26045:26051 hsa_signal_store_screlease(, 0) = void -43930092714844:43930092715363 26045:26051 hsa_signal_destroy() = 0 -43930093151339:43930093152188 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930107758477:43930107759784 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930107766315:43930107767397 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930107777482:43930107780643 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930107781687:43930107782496 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930107783328:43930107794282 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930107795179:43930107795674 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930108255388:43930108256281 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930108258055:43930108258684 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930108259728:43930108261407 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9990) = 0 -43930108262411:43930108266442 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9950) = 0 -43930108267399:43930108269481 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930108738211:43930108741301 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930108742789:43930108743431 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930108744712:43930108745242 26045:26051 hsa_signal_load_relaxed() = 1 -43930108270312:43930108746768 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930108746095:43930108747496 26045:26051 hsa_signal_store_screlease(, 0) = void -43930108748024:43930108748701 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930108748386:43930108749046 26045:26051 hsa_signal_destroy() = 0 -43930108764816:43930108765453 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930108773674:43930108774372 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 110 -43930108775255:43930108775725 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 110 -43930108776729:43930108777326 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930108778101:43930108778462 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930108779607:43930108780221 26045:26045 hsa_signal_store_relaxed(, 110) = void -43930108782024:43930108782661 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930108789074:43930108789706 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930108791976:43930108792619 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930108793375:43930108793723 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 111 -43930108794460:43930108794793 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 110 -43930108795747:43930108796072 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930108798559:43930108798950 26045:26045 hsa_signal_store_relaxed(, 111) = void -43930108799891:43930109356299 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930109358212:43930109358714 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930109360294:43930109360865 26045:26045 hsa_signal_destroy() = 0 -43930109372669:43930109373210 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930109374193:43930109374601 26045:26045 hsa_signal_destroy() = 0 -43930109376125:43930109378087 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930109379019:43930109379617 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930109390440:43930109390940 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930109391694:43930109392064 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930109392912:43930109393318 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930109394244:43930109394893 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930109395706:43930109396315 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e99f0) = 0 -43930109397088:43930109399048 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e99b0) = 0 -43930109399831:43930109400611 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930109892117:43930109894713 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930109896044:43930109896710 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930109897654:43930109898135 26045:26051 hsa_signal_load_relaxed() = 1 -43930109401385:43930109899598 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930109898947:43930109900202 26045:26051 hsa_signal_store_screlease(, 0) = void -43930109909623:43930109910154 26045:26051 hsa_signal_destroy() = 0 -43930110345363:43930110346211 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930124999411:43930125000483 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930125005604:43930125006667 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930125008940:43930125011679 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930125012753:43930125013706 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930125014519:43930125015123 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930125015978:43930125016472 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930125484306:43930125485390 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930125491243:43930125491871 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930125492904:43930125494475 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9a50) = 0 -43930125495468:43930125498798 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9a10) = 0 -43930125499748:43930125501565 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930125970814:43930125973802 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930125975325:43930125975968 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930125977027:43930125977555 26045:26051 hsa_signal_load_relaxed() = 1 -43930125502444:43930125979055 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930125978406:43930125979784 26045:26051 hsa_signal_store_screlease(, 0) = void -43930125980369:43930125981047 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930125980668:43930125981300 26045:26051 hsa_signal_destroy() = 0 -43930125995463:43930125996100 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930126002331:43930126002998 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 112 -43930126003921:43930126004386 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 112 -43930126005300:43930126005912 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930126006656:43930126007132 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930126008106:43930126008678 26045:26045 hsa_signal_store_relaxed(, 112) = void -43930126009878:43930126010509 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930126016130:43930126016756 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930126018561:43930126019190 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930126020019:43930126020395 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 113 -43930126021133:43930126021484 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 112 -43930126022229:43930126022555 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930126023297:43930126023677 26045:26045 hsa_signal_store_relaxed(, 113) = void -43930126024704:43930126580357 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930126582192:43930126582678 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930126584295:43930126584870 26045:26045 hsa_signal_destroy() = 0 -43930126596418:43930126596987 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930126601244:43930126601662 26045:26045 hsa_signal_destroy() = 0 -43930126603241:43930126614040 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930126614903:43930126615341 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930126616185:43930126616677 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930126617438:43930126617814 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930126618686:43930126619080 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930126620041:43930126620686 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930126621501:43930126622047 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9ab0) = 0 -43930126622829:43930126624563 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9a70) = 0 -43930126625349:43930126626111 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930127077925:43930127080325 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930127081659:43930127082334 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930127083293:43930127083789 26045:26051 hsa_signal_load_relaxed() = 1 -43930126626903:43930127085196 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930127084623:43930127085877 26045:26051 hsa_signal_store_screlease(, 0) = void -43930127086746:43930127087227 26045:26051 hsa_signal_destroy() = 0 -43930127541256:43930127542102 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930142193127:43930142194192 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930142198885:43930142200138 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930142201933:43930142204638 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930142205713:43930142206473 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930142207295:43930142207935 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930142208805:43930142209269 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930142676960:43930142677839 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930142679720:43930142680356 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930142681336:43930142683067 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9b10) = 0 -43930142684257:43930142687499 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9ad0) = 0 -43930142688719:43930142690470 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930143157745:43930143160733 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930143162303:43930143162962 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930143164036:43930143164750 26045:26051 hsa_signal_load_relaxed() = 1 -43930142694788:43930143166320 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930143165658:43930143167047 26045:26051 hsa_signal_store_screlease(, 0) = void -43930143167725:43930143168446 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930143167935:43930143168597 26045:26051 hsa_signal_destroy() = 0 -43930143182530:43930143183169 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930143189111:43930143189780 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 114 -43930143190645:43930143191072 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 114 -43930143191976:43930143192584 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930143193384:43930143193781 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930143194762:43930143195337 26045:26045 hsa_signal_store_relaxed(, 114) = void -43930143196602:43930143197224 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930143203089:43930143203723 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930143205646:43930143206277 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930143207110:43930143207491 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 115 -43930143208229:43930143208563 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 114 -43930143209306:43930143209630 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930143210365:43930143210754 26045:26045 hsa_signal_store_relaxed(, 115) = void -43930143211806:43930143767689 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930143769160:43930143769652 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930143771126:43930143771673 26045:26045 hsa_signal_destroy() = 0 -43930143772610:43930143783589 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930143784559:43930143785040 26045:26045 hsa_signal_destroy() = 0 -43930143786428:43930143788087 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930143789027:43930143789539 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930143790414:43930143790973 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930143801703:43930143802124 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930143804578:43930143804965 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930143805922:43930143806552 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930143807345:43930143807869 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9b70) = 0 -43930143808633:43930143810596 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9b30) = 0 -43930143811371:43930143812187 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930144317143:43930144319678 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930144321025:43930144321673 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930144322606:43930144323075 26045:26051 hsa_signal_load_relaxed() = 1 -43930143812983:43930144324606 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930144323884:43930144325135 26045:26051 hsa_signal_store_screlease(, 0) = void -43930144325981:43930144326437 26045:26051 hsa_signal_destroy() = 0 -43930144768617:43930144769461 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930159400676:43930159401743 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930159406204:43930159407303 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930159409155:43930159411556 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930159412647:43930159413434 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930159414248:43930159414895 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930159415748:43930159416226 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930159885044:43930159885777 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930159887817:43930159888446 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930159889473:43930159891293 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9bd0) = 0 -43930159892366:43930159895560 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9b90) = 0 -43930159896538:43930159898604 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930160378394:43930160381326 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930160382853:43930160383506 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930160384652:43930160385173 26045:26051 hsa_signal_load_relaxed() = 1 -43930159899492:43930160386867 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930160386088:43930160387457 26045:26051 hsa_signal_store_screlease(, 0) = void -43930160388296:43930160388921 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930160393544:43930160394153 26045:26051 hsa_signal_destroy() = 0 -43930160405775:43930160406418 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930160411930:43930160412732 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 116 -43930160413505:43930160413981 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 116 -43930160414885:43930160415492 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930160416271:43930160416712 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930160417734:43930160418383 26045:26045 hsa_signal_store_relaxed(, 116) = void -43930160419803:43930160420434 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930160427292:43930160427922 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930160429635:43930160430275 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930160431101:43930160431479 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 117 -43930160432223:43930160432556 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 116 -43930160433303:43930160433644 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930160434382:43930160434768 26045:26045 hsa_signal_store_relaxed(, 117) = void -43930160435866:43930160987991 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930160989389:43930160989872 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930160991256:43930160991816 26045:26045 hsa_signal_destroy() = 0 -43930160992757:43930161003707 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930161004759:43930161005155 26045:26045 hsa_signal_destroy() = 0 -43930161006711:43930161008573 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930161009577:43930161010096 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930161010977:43930161011517 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930161021774:43930161022155 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930161023011:43930161023393 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930161024341:43930161024974 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930161025771:43930161026372 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9c30) = 0 -43930161027141:43930161028937 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9bf0) = 0 -43930161029718:43930161030624 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930161522870:43930161525310 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930161526640:43930161527286 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930161528225:43930161528696 26045:26051 hsa_signal_load_relaxed() = 1 -43930161032630:43930161530161 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930161529503:43930161530727 26045:26051 hsa_signal_store_screlease(, 0) = void -43930161531571:43930161532022 26045:26051 hsa_signal_destroy() = 0 -43930161973794:43930161974636 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930176593875:43930176594943 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930176599281:43930176600455 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930176602239:43930176604284 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930176605346:43930176606038 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930176606857:43930176607458 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930176608322:43930176608797 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930177074246:43930177075177 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930177076749:43930177077377 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930177078418:43930177080091 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9c90) = 0 -43930177081129:43930177084642 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9c50) = 0 -43930177085622:43930177087155 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930177554902:43930177557948 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930177559498:43930177560148 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930177561320:43930177561849 26045:26051 hsa_signal_load_relaxed() = 1 -43930177088116:43930177563663 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930177563007:43930177564367 26045:26051 hsa_signal_store_screlease(, 0) = void -43930177565032:43930177565734 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930177565251:43930177565914 26045:26051 hsa_signal_destroy() = 0 -43930177579160:43930177579806 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930177585481:43930177586280 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 118 -43930177587074:43930177587495 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 118 -43930177592420:43930177593077 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930177593907:43930177594353 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930177595311:43930177595878 26045:26045 hsa_signal_store_relaxed(, 118) = void -43930177597250:43930177597882 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930177603876:43930177604503 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930177606197:43930177606831 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930177607657:43930177608033 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 119 -43930177608774:43930177609122 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 118 -43930177609862:43930177610183 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930177610915:43930177611296 26045:26045 hsa_signal_store_relaxed(, 119) = void -43930177612345:43930178167865 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930178169467:43930178169938 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930178171542:43930178172095 26045:26045 hsa_signal_destroy() = 0 -43930178183486:43930178184086 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930178185049:43930178185439 26045:26045 hsa_signal_destroy() = 0 -43930178187050:43930178188806 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930178189848:43930178190373 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930178191251:43930178201329 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930178202156:43930178202528 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930178203376:43930178203756 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930178204686:43930178205318 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930178206116:43930178206665 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9cf0) = 0 -43930178207436:43930178209378 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9cb0) = 0 -43930178210158:43930178210893 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930178703085:43930178705428 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930178706816:43930178707463 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930178708397:43930178708867 26045:26051 hsa_signal_load_relaxed() = 1 -43930178211661:43930178710331 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930178709678:43930178710920 26045:26051 hsa_signal_store_screlease(, 0) = void -43930178714901:43930178715353 26045:26051 hsa_signal_destroy() = 0 -43930179154265:43930179155132 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930193783554:43930193784650 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930193789576:43930193790670 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930193792639:43930193794896 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930193796002:43930193796682 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930193797497:43930193798100 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930193798962:43930193799436 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930194267397:43930194268260 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930194270350:43930194270972 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930194272092:43930194273678 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9d50) = 0 -43930194274692:43930194277793 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9d10) = 0 -43930194278769:43930194280320 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930194749468:43930194752419 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930194754024:43930194754682 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930194755820:43930194756358 26045:26051 hsa_signal_load_relaxed() = 1 -43930194281171:43930194757980 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930194757326:43930194758730 26045:26051 hsa_signal_store_screlease(, 0) = void -43930194759356:43930194760035 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930194759615:43930194760266 26045:26051 hsa_signal_destroy() = 0 -43930194774092:43930194774725 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930194780080:43930194780724 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 120 -43930194781585:43930194782055 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 120 -43930194783168:43930194783776 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930194784646:43930194785052 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930194786078:43930194786641 26045:26045 hsa_signal_store_relaxed(, 120) = void -43930194787878:43930194788502 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930194794083:43930194794710 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930194800380:43930194801015 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930194801859:43930194802191 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 121 -43930194802927:43930194803258 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 120 -43930194803996:43930194804319 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930194805071:43930194805457 26045:26045 hsa_signal_store_relaxed(, 121) = void -43930194807001:43930195356961 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930195358367:43930195358857 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930195360266:43930195360823 26045:26045 hsa_signal_destroy() = 0 -43930195361776:43930195372628 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930195373634:43930195374277 26045:26045 hsa_signal_destroy() = 0 -43930195375656:43930195377537 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930195378611:43930195379130 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930195380004:43930195380605 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930195390876:43930195391259 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930195392111:43930195392497 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930195393448:43930195394075 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930195394872:43930195395398 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9db0) = 0 -43930195396159:43930195397880 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9d70) = 0 -43930195398649:43930195399394 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930195891248:43930195893694 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930195895043:43930195895687 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930195896630:43930195897097 26045:26051 hsa_signal_load_relaxed() = 1 -43930195400161:43930195898565 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930195897905:43930195899113 26045:26051 hsa_signal_store_screlease(, 0) = void -43930195899953:43930195900403 26045:26051 hsa_signal_destroy() = 0 -43930196369165:43930196370005 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930211023871:43930211024945 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930211029495:43930211030681 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930211032468:43930211034490 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930211039559:43930211040252 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930211041165:43930211041833 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930211042647:43930211043141 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930211505691:43930211506580 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930211508412:43930211509043 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930211510244:43930211511622 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9e10) = 0 -43930211512598:43930211516047 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9dd0) = 0 -43930211516990:43930211518647 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930211987544:43930211990831 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930211992433:43930211993110 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930211994315:43930211994855 26045:26051 hsa_signal_load_relaxed() = 1 -43930211519461:43930211996369 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930211995708:43930211997156 26045:26051 hsa_signal_store_screlease(, 0) = void -43930211997735:43930211998416 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930211998041:43930211998682 26045:26051 hsa_signal_destroy() = 0 -43930212027401:43930212028053 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930212033318:43930212033858 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 122 -43930212034967:43930212035512 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 122 -43930212036449:43930212037076 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930212037927:43930212038380 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930212039302:43930212039869 26045:26045 hsa_signal_store_relaxed(, 122) = void -43930212041145:43930212041795 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930212056997:43930212057625 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930212059358:43930212059995 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930212060806:43930212061137 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 123 -43930212061870:43930212062212 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 122 -43930212062971:43930212063289 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930212064027:43930212064410 26045:26045 hsa_signal_store_relaxed(, 123) = void -43930212066806:43930212618613 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930212620572:43930212621054 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930212622562:43930212623124 26045:26045 hsa_signal_destroy() = 0 -43930212634669:43930212635231 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930212636200:43930212636593 26045:26045 hsa_signal_destroy() = 0 -43930212638137:43930212640196 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930212641194:43930212641707 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930212652508:43930212652997 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930212653756:43930212654122 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930212654975:43930212655361 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930212656305:43930212656930 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930212657719:43930212658352 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9e70) = 0 -43930212659120:43930212660951 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9e30) = 0 -43930212661723:43930212662458 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930213154922:43930213157410 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930213158741:43930213159390 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930213160331:43930213160803 26045:26051 hsa_signal_load_relaxed() = 1 -43930212663242:43930213162275 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930213161621:43930213162846 26045:26051 hsa_signal_store_screlease(, 0) = void -43930213163692:43930213164136 26045:26051 hsa_signal_destroy() = 0 -43930213607568:43930213608407 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930228259586:43930228260654 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930228264995:43930228266443 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930228268286:43930228270524 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930228271655:43930228272491 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930228273485:43930228274140 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930228274987:43930228275453 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930228743437:43930228744351 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930228749589:43930228750224 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930228751206:43930228752913 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9ed0) = 0 -43930228753931:43930228757120 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9e90) = 0 -43930228758170:43930228759668 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930229228066:43930229231072 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930229232719:43930229233381 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930229234544:43930229235065 26045:26051 hsa_signal_load_relaxed() = 1 -43930228760586:43930229236571 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930229235918:43930229237296 26045:26051 hsa_signal_store_screlease(, 0) = void -43930229238102:43930229238781 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930229238184:43930229238824 26045:26051 hsa_signal_destroy() = 0 -43930229252290:43930229252928 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930229258181:43930229258687 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 124 -43930229259565:43930229260037 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 124 -43930229260949:43930229261558 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930229262344:43930229262787 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930229263705:43930229264267 26045:26045 hsa_signal_store_relaxed(, 124) = void -43930229265482:43930229266118 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930229271681:43930229272312 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930229274056:43930229274676 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930229275504:43930229275834 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 125 -43930229276574:43930229276909 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 124 -43930229277673:43930229277996 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930229278727:43930229279113 26045:26045 hsa_signal_store_relaxed(, 125) = void -43930229280116:43930229834926 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930229836363:43930229836829 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930229838264:43930229838822 26045:26045 hsa_signal_destroy() = 0 -43930229839761:43930229850715 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930229851724:43930229852124 26045:26045 hsa_signal_destroy() = 0 -43930229869082:43930229870154 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930229871060:43930229871474 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930229872294:43930229872746 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930229873481:43930229873850 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930229874780:43930229875176 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930229876092:43930229876723 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930229877514:43930229878037 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9f30) = 0 -43930229878798:43930229880721 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9ef0) = 0 -43930229881494:43930229882216 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930230375365:43930230377747 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930230379076:43930230379737 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930230380676:43930230381161 26045:26051 hsa_signal_load_relaxed() = 1 -43930229882993:43930230382617 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930230381967:43930230383208 26045:26051 hsa_signal_store_screlease(, 0) = void -43930230384050:43930230384511 26045:26051 hsa_signal_destroy() = 0 -43930230825905:43930230826789 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930245477637:43930245478708 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930245483129:43930245484272 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930245486183:43930245488284 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930245489374:43930245490065 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930245490879:43930245491404 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930245492279:43930245492748 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930245958438:43930245959171 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930245960725:43930245961346 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930245962323:43930245964109 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9f90) = 0 -43930245965131:43930245968451 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9f50) = 0 -43930245969424:43930245971140 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930246438507:43930246441473 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930246447741:43930246448397 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930246449507:43930246450035 26045:26051 hsa_signal_load_relaxed() = 1 -43930245972066:43930246451538 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930246450886:43930246452277 26045:26051 hsa_signal_store_screlease(, 0) = void -43930246453030:43930246453717 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930246453209:43930246453837 26045:26051 hsa_signal_destroy() = 0 -43930246467767:43930246468401 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930246473656:43930246474167 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 126 -43930246475033:43930246475494 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 126 -43930246476413:43930246477022 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930246477862:43930246478312 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930246479265:43930246479830 26045:26045 hsa_signal_store_relaxed(, 126) = void -43930246481044:43930246481668 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930246487484:43930246488115 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930246489852:43930246490476 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930246491303:43930246491633 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 127 -43930246492372:43930246492717 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 126 -43930246493464:43930246493783 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930246494554:43930246494939 26045:26045 hsa_signal_store_relaxed(, 127) = void -43930246496307:43930247049027 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930247050425:43930247050908 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930247052432:43930247052972 26045:26045 hsa_signal_destroy() = 0 -43930247053921:43930247064800 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930247065817:43930247066297 26045:26045 hsa_signal_destroy() = 0 -43930247067674:43930247069673 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930247070713:43930247071226 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930247072104:43930247072666 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930247082970:43930247083354 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930247084211:43930247084581 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930247087245:43930247087894 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930247088691:43930247089240 26045:26045 hsa_signal_create(1, , 0, 0x7f15277e9ff0) = 0 -43930247090016:43930247091762 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277e9fb0) = 0 -43930247092545:43930247093279 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930247585772:43930247588173 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930247589505:43930247590150 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930247591089:43930247591562 26045:26051 hsa_signal_load_relaxed() = 1 -43930247094046:43930247593017 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930247592370:43930247593588 26045:26051 hsa_signal_store_screlease(, 0) = void -43930247594436:43930247594891 26045:26051 hsa_signal_destroy() = 0 -43930248042948:43930248043789 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930262671271:43930262672345 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930262676858:43930262678314 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930262680446:43930262682519 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930262683769:43930262684462 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930262685280:43930262685889 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930262686749:43930262687216 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930263154299:43930263155178 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930263160755:43930263161391 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930263162441:43930263163896 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea050) = 0 -43930263164914:43930263168567 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea010) = 0 -43930263169535:43930263171066 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930263638240:43930263641292 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930263642911:43930263643568 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930263644814:43930263645351 26045:26051 hsa_signal_load_relaxed() = 1 -43930263172135:43930263646903 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930263646254:43930263647651 26045:26051 hsa_signal_store_screlease(, 0) = void -43930263648281:43930263648957 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930263648533:43930263649184 26045:26051 hsa_signal_destroy() = 0 -43930263664853:43930263665489 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930263670645:43930263671415 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 128 -43930263672287:43930263672756 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 128 -43930263673659:43930263674259 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930263675050:43930263675495 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930263676440:43930263677000 26045:26045 hsa_signal_store_relaxed(, 128) = void -43930263678189:43930263678829 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930263684524:43930263685155 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930263686803:43930263687425 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930263688254:43930263688582 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 129 -43930263689317:43930263689648 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 128 -43930263690388:43930263690710 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930263691449:43930263691826 26045:26045 hsa_signal_store_relaxed(, 129) = void -43930263692888:43930264252934 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930264254301:43930264254781 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930264256255:43930264256804 26045:26045 hsa_signal_destroy() = 0 -43930264257752:43930264268447 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930264269418:43930264269806 26045:26045 hsa_signal_destroy() = 0 -43930264271209:43930264273109 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930264274119:43930264274661 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930264275539:43930264276261 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930264286562:43930264286948 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930264287807:43930264288174 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930264289094:43930264289721 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930264290506:43930264291098 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea0b0) = 0 -43930264291860:43930264293830 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea070) = 0 -43930264294607:43930264295381 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930264787940:43930264790349 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930264794671:43930264795330 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930264796264:43930264796736 26045:26051 hsa_signal_load_relaxed() = 1 -43930264296159:43930264798191 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930264797544:43930264798771 26045:26051 hsa_signal_store_screlease(, 0) = void -43930264799591:43930264800052 26045:26051 hsa_signal_destroy() = 0 -43930265243725:43930265244567 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930279850463:43930279851537 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930279856038:43930279857058 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930279859189:43930279861355 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930279862464:43930279863107 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930279863934:43930279864506 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930279865365:43930279865857 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930280359778:43930280360519 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930280362283:43930280362921 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930280363999:43930280365901 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea110) = 0 -43930280366925:43930280370618 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea0d0) = 0 -43930280371587:43930280373330 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930280840446:43930280843699 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930280845255:43930280845906 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930280847051:43930280847576 26045:26051 hsa_signal_load_relaxed() = 1 -43930280374274:43930280849138 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930280848480:43930280849888 26045:26051 hsa_signal_store_screlease(, 0) = void -43930280850532:43930280851260 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930280850773:43930280851419 26045:26051 hsa_signal_destroy() = 0 -43930280865187:43930280865826 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930280870916:43930280871426 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 130 -43930280872315:43930280872778 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 130 -43930280873727:43930280874338 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930280878841:43930280879295 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930280880258:43930280880822 26045:26045 hsa_signal_store_relaxed(, 130) = void -43930280882023:43930280882651 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930280888485:43930280889106 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930280890891:43930280891523 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930280892349:43930280892684 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 131 -43930280893425:43930280893759 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 130 -43930280894498:43930280894824 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930280895563:43930280895945 26045:26045 hsa_signal_store_relaxed(, 131) = void -43930280896976:43930281453425 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930281454826:43930281455307 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930281456640:43930281457198 26045:26045 hsa_signal_destroy() = 0 -43930281458132:43930281458582 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930281469813:43930281470217 26045:26045 hsa_signal_destroy() = 0 -43930281471669:43930281473626 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930281474633:43930281475141 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930281475999:43930281476573 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930281486803:43930281487229 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930281488099:43930281488470 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930281489415:43930281490042 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930281490832:43930281491362 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea170) = 0 -43930281492130:43930281493839 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea130) = 0 -43930281494643:43930281495359 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930281988139:43930281990544 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930281991868:43930281992514 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930281993458:43930281993932 26045:26051 hsa_signal_load_relaxed() = 1 -43930281496132:43930281995390 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930281994742:43930281995987 26045:26051 hsa_signal_store_screlease(, 0) = void -43930281996833:43930281997289 26045:26051 hsa_signal_destroy() = 0 -43930282441011:43930282441848 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930297110077:43930297111154 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930297115543:43930297116563 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930297118590:43930297120780 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930297121876:43930297122563 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930297123422:43930297123997 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930297124852:43930297125539 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930297593394:43930297594143 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930297595699:43930297596322 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930297597427:43930297599171 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea1d0) = 0 -43930297600225:43930297603738 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea190) = 0 -43930297604740:43930297606472 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930298074520:43930298077546 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930298079122:43930298079777 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930298080926:43930298081465 26045:26051 hsa_signal_load_relaxed() = 1 -43930297607361:43930298083038 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930298082376:43930298083764 26045:26051 hsa_signal_store_screlease(, 0) = void -43930298084437:43930298085143 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930298084656:43930298085299 26045:26051 hsa_signal_destroy() = 0 -43930298099438:43930298100070 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930298105027:43930298105537 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 132 -43930298106398:43930298107019 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 132 -43930298107964:43930298108568 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930298109441:43930298109844 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930298110853:43930298111414 26045:26045 hsa_signal_store_relaxed(, 132) = void -43930298112595:43930298113222 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930298118928:43930298119557 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930298121188:43930298121760 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930298126211:43930298126542 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 133 -43930298127292:43930298127635 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 132 -43930298128400:43930298128720 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930298129456:43930298129843 26045:26045 hsa_signal_store_relaxed(, 133) = void -43930298130883:43930298679775 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930298681168:43930298681651 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930298683131:43930298683679 26045:26045 hsa_signal_destroy() = 0 -43930298684629:43930298695438 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930298696449:43930298696930 26045:26045 hsa_signal_destroy() = 0 -43930298698237:43930298700343 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930298701371:43930298701880 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930298702750:43930298703310 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930298713610:43930298713996 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930298714850:43930298715221 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930298716141:43930298716770 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930298717560:43930298718081 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea230) = 0 -43930298718842:43930298720745 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea1f0) = 0 -43930298721526:43930298722246 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930299214627:43930299217050 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930299218418:43930299219067 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930299220007:43930299220491 26045:26051 hsa_signal_load_relaxed() = 1 -43930298723013:43930299221933 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930299221293:43930299222530 26045:26051 hsa_signal_store_screlease(, 0) = void -43930299223374:43930299223840 26045:26051 hsa_signal_destroy() = 0 -43930299665520:43930299666355 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930314330897:43930314331959 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930314336469:43930314337418 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930314339322:43930314341301 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930314347914:43930314348632 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930314349690:43930314350277 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930314351135:43930314351609 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930314817944:43930314818636 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930314820620:43930314821258 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930314822286:43930314824071 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea290) = 0 -43930314825076:43930314828498 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea250) = 0 -43930314829443:43930314831197 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930315298445:43930315301462 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930315303088:43930315303742 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930315304845:43930315305383 26045:26051 hsa_signal_load_relaxed() = 1 -43930314832068:43930315306896 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930315306234:43930315307620 26045:26051 hsa_signal_store_screlease(, 0) = void -43930315308335:43930315308999 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930315308509:43930315309154 26045:26051 hsa_signal_destroy() = 0 -43930315323330:43930315323974 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930315328942:43930315329611 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 134 -43930315330477:43930315330943 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 134 -43930315331912:43930315332511 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930315333332:43930315333774 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930315334769:43930315335404 26045:26045 hsa_signal_store_relaxed(, 134) = void -43930315336605:43930315337235 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930315343295:43930315343921 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930315345646:43930315346267 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930315347076:43930315347401 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 135 -43930315348139:43930315348480 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 134 -43930315349214:43930315349538 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930315350273:43930315350654 26045:26045 hsa_signal_store_relaxed(, 135) = void -43930315351660:43930315911075 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930315914410:43930315914904 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930315927033:43930315927957 26045:26045 hsa_signal_destroy() = 0 -43930315929207:43930315929734 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930315930654:43930315931042 26045:26045 hsa_signal_destroy() = 0 -43930315932469:43930315934375 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930315945266:43930315945670 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930315946502:43930315946994 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930315947746:43930315948109 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930315948956:43930315949323 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930315950265:43930315950893 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930315951687:43930315952297 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea2f0) = 0 -43930315953059:43930315954736 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea2b0) = 0 -43930315955512:43930315956236 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930316461964:43930316464403 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930316465739:43930316466381 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930316467352:43930316467825 26045:26051 hsa_signal_load_relaxed() = 1 -43930315957008:43930316469338 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930316468637:43930316469903 26045:26051 hsa_signal_store_screlease(, 0) = void -43930316470755:43930316471207 26045:26051 hsa_signal_destroy() = 0 -43930316913335:43930316914176 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930331548383:43930331549455 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930331554207:43930331555478 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930331557566:43930331559662 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930331560772:43930331561537 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930331562350:43930331562980 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930331563821:43930331564291 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930332041035:43930332041743 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930332043377:43930332043997 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930332048422:43930332050143 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea350) = 0 -43930332051148:43930332054422 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea310) = 0 -43930332055366:43930332056917 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930332523405:43930332526496 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930332528117:43930332528765 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930332529903:43930332530425 26045:26051 hsa_signal_load_relaxed() = 1 -43930332057735:43930332531935 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930332531271:43930332532650 26045:26051 hsa_signal_store_screlease(, 0) = void -43930332533320:43930332534038 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930332533533:43930332534188 26045:26051 hsa_signal_destroy() = 0 -43930332548576:43930332549212 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930332554268:43930332554778 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 136 -43930332555636:43930332556105 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 136 -43930332557011:43930332557612 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930332558410:43930332558853 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930332559816:43930332560378 26045:26045 hsa_signal_store_relaxed(, 136) = void -43930332561767:43930332562407 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930332568043:43930332568669 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930332570342:43930332570964 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930332571725:43930332572058 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 137 -43930332572799:43930332573132 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 136 -43930332573950:43930332574272 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930332575005:43930332575390 26045:26045 hsa_signal_store_relaxed(, 137) = void -43930332576420:43930333132434 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930333133833:43930333134308 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930333135717:43930333136266 26045:26045 hsa_signal_destroy() = 0 -43930333137226:43930333147924 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930333148955:43930333149353 26045:26045 hsa_signal_destroy() = 0 -43930333150824:43930333152922 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930333166434:43930333166855 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930333167695:43930333168203 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930333168947:43930333169318 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930333170158:43930333170525 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930333171472:43930333172103 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930333172890:43930333173415 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea3b0) = 0 -43930333174175:43930333175900 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea370) = 0 -43930333176671:43930333177393 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930333669923:43930333672316 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930333673654:43930333674298 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930333675239:43930333675714 26045:26051 hsa_signal_load_relaxed() = 1 -43930333178168:43930333677180 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930333676525:43930333677755 26045:26051 hsa_signal_store_screlease(, 0) = void -43930333678596:43930333679046 26045:26051 hsa_signal_destroy() = 0 -43930334121585:43930334122424 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930348753851:43930348754904 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930348758883:43930348760147 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930348762169:43930348765096 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930348766323:43930348767037 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930348767850:43930348768372 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930348769223:43930348769692 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930349237569:43930349238300 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930349239864:43930349240492 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930349241521:43930349243262 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea410) = 0 -43930349244346:43930349247939 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea3d0) = 0 -43930349248923:43930349250574 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930349718855:43930349721860 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930349723379:43930349724027 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930349729888:43930349730416 26045:26051 hsa_signal_load_relaxed() = 1 -43930349251491:43930349732156 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930349731504:43930349732893 26045:26051 hsa_signal_store_screlease(, 0) = void -43930349733572:43930349734250 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930349733773:43930349734403 26045:26051 hsa_signal_destroy() = 0 -43930349747695:43930349748326 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930349753251:43930349753759 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 138 -43930349754618:43930349755085 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 138 -43930349756006:43930349756601 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930349757402:43930349757847 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930349758942:43930349759504 26045:26045 hsa_signal_store_relaxed(, 138) = void -43930349760663:43930349761291 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930349769459:43930349770089 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930349772101:43930349772796 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930349773628:43930349773960 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 139 -43930349774703:43930349775046 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 138 -43930349775793:43930349776124 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930349776859:43930349777241 26045:26045 hsa_signal_store_relaxed(, 139) = void -43930349778253:43930350329721 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930350331122:43930350331606 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930350333119:43930350333680 26045:26045 hsa_signal_destroy() = 0 -43930350334648:43930350345592 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930350346597:43930350347079 26045:26045 hsa_signal_destroy() = 0 -43930350348481:43930350350161 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930350351221:43930350351783 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930350352661:43930350353263 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930350364027:43930350364419 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930350365292:43930350365662 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930350366590:43930350367220 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930350369203:43930350369729 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea470) = 0 -43930350370498:43930350372393 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea430) = 0 -43930350373172:43930350373914 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930350865540:43930350867960 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930350869317:43930350869969 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930350870906:43930350871382 26045:26051 hsa_signal_load_relaxed() = 1 -43930350374687:43930350872850 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930350872192:43930350873418 26045:26051 hsa_signal_store_screlease(, 0) = void -43930350874269:43930350874723 26045:26051 hsa_signal_destroy() = 0 -43930351316166:43930351317006 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930365949770:43930365950842 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930365955341:43930365956595 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930365958955:43930365960814 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930365961916:43930365962654 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930365963476:43930365964099 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930365964944:43930365965415 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930366433406:43930366434138 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930366435770:43930366436396 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930366437584:43930366439175 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea4d0) = 0 -43930366440190:43930366443868 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea490) = 0 -43930366444911:43930366446512 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930366914868:43930366918056 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930366919645:43930366920292 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930366921572:43930366922096 26045:26051 hsa_signal_load_relaxed() = 1 -43930366447443:43930366923633 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930366922978:43930366924365 26045:26051 hsa_signal_store_screlease(, 0) = void -43930366925074:43930366925739 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930366925252:43930366925888 26045:26051 hsa_signal_destroy() = 0 -43930366939355:43930366939993 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930366945347:43930366945859 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 140 -43930366946729:43930366947199 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 140 -43930366948101:43930366948699 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930366949501:43930366950085 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930366951041:43930366951602 26045:26045 hsa_signal_store_relaxed(, 140) = void -43930366952825:43930366953453 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930366959391:43930366960030 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930366961732:43930366962432 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930366963263:43930366963594 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 141 -43930366964332:43930366964673 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 140 -43930366965432:43930366965750 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930366966484:43930366966864 26045:26045 hsa_signal_store_relaxed(, 141) = void -43930366967885:43930367519634 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930367521027:43930367521513 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930367523011:43930367523570 26045:26045 hsa_signal_destroy() = 0 -43930367524560:43930367535216 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930367536244:43930367536647 26045:26045 hsa_signal_destroy() = 0 -43930367538062:43930367539982 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930367541046:43930367541568 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930367542459:43930367543040 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930367553341:43930367553738 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930367554616:43930367554992 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930367555981:43930367556621 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930367557465:43930367558066 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea530) = 0 -43930367558843:43930367560593 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea4f0) = 0 -43930367561386:43930367562121 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930368014277:43930368016957 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930368018279:43930368018944 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930368022075:43930368022559 26045:26051 hsa_signal_load_relaxed() = 1 -43930367562912:43930368023946 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930368023393:43930368024687 26045:26051 hsa_signal_store_screlease(, 0) = void -43930368025542:43930368026001 26045:26051 hsa_signal_destroy() = 0 -43930368465746:43930368466513 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930383039813:43930383040885 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930383044772:43930383045816 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930383047794:43930383050275 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930383051646:43930383052336 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930383053165:43930383053742 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930383054587:43930383055071 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930383522605:43930383523339 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930383524904:43930383525530 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930383526540:43930383528239 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea590) = 0 -43930383529491:43930383532697 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea550) = 0 -43930383533726:43930383535264 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930384019592:43930384022644 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930384024188:43930384024834 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930384025981:43930384026696 26045:26051 hsa_signal_load_relaxed() = 1 -43930383536244:43930384028232 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930384027608:43930384029058 26045:26051 hsa_signal_store_screlease(, 0) = void -43930384029561:43930384030241 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930384029950:43930384030597 26045:26051 hsa_signal_destroy() = 0 -43930384044155:43930384044787 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930384049844:43930384050362 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 142 -43930384051242:43930384051712 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 142 -43930384052671:43930384053283 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930384054061:43930384054506 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930384061044:43930384061626 26045:26045 hsa_signal_store_relaxed(, 142) = void -43930384062832:43930384063462 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930384069503:43930384070137 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930384072042:43930384072674 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930384073528:43930384073858 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 143 -43930384074595:43930384074929 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 142 -43930384075673:43930384075995 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930384076727:43930384077115 26045:26045 hsa_signal_store_relaxed(, 143) = void -43930384078139:43930385997575 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930385999096:43930385999629 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930386001148:43930386001786 26045:26045 hsa_signal_destroy() = 0 -43930386013680:43930386014281 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930386015287:43930386015719 26045:26045 hsa_signal_destroy() = 0 -43930386017315:43930386018947 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930386020011:43930386020567 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930386031904:43930386032452 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930386033290:43930386033701 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930386034635:43930386035045 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930386036099:43930386036801 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930386037680:43930386038269 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea5f0) = 0 -43930386039118:43930386041363 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea5b0) = 0 -43930386042224:43930386043024 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930386507160:43930386509618 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930386511078:43930386511813 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930386512847:43930386513387 26045:26051 hsa_signal_load_relaxed() = 1 -43930386043894:43930386514894 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930386514286:43930386515644 26045:26051 hsa_signal_store_screlease(, 0) = void -43930386516587:43930386517098 26045:26051 hsa_signal_destroy() = 0 -43930386954121:43930386954925 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930401603822:43930401604890 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930401609019:43930401610034 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930401612228:43930401614041 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930401615127:43930401615836 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930401616643:43930401617263 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930401618123:43930401618597 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930402086681:43930402087413 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930402088863:43930402089488 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930402090656:43930402092590 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea650) = 0 -43930402093773:43930402097213 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea610) = 0 -43930402098188:43930402099877 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930402583368:43930402586438 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930402588105:43930402588747 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930402589852:43930402590379 26045:26051 hsa_signal_load_relaxed() = 1 -43930402100777:43930402591959 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930402591298:43930402592682 26045:26051 hsa_signal_store_screlease(, 0) = void -43930402593267:43930402593945 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930402593567:43930402594198 26045:26051 hsa_signal_destroy() = 0 -43930402607946:43930402608587 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930402613742:43930402614249 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 144 -43930402615117:43930402615580 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 144 -43930402616627:43930402617236 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930402618079:43930402618528 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930402619526:43930402620098 26045:26045 hsa_signal_store_relaxed(, 144) = void -43930402621366:43930402621990 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930402627763:43930402628392 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930402630101:43930402630710 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930402631542:43930402631872 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 145 -43930402636347:43930402636693 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 144 -43930402637440:43930402637764 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930402638495:43930402638880 26045:26045 hsa_signal_store_relaxed(, 145) = void -43930402639901:43930404580038 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930404581591:43930404582128 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930404583702:43930404584297 26045:26045 hsa_signal_destroy() = 0 -43930404585364:43930404585864 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930404586787:43930404587260 26045:26045 hsa_signal_destroy() = 0 -43930404588427:43930404589572 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930404590529:43930404590991 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930404591901:43930404592432 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930404593244:43930404593650 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930404594667:43930404595079 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930404596105:43930404596803 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930404597668:43930404598238 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea6b0) = 0 -43930404599081:43930404601173 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea670) = 0 -43930404602042:43930404602862 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930405065788:43930405068393 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930405069890:43930405070613 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930405071657:43930405072181 26045:26051 hsa_signal_load_relaxed() = 1 -43930404603717:43930405073702 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930405073083:43930405074472 26045:26051 hsa_signal_store_screlease(, 0) = void -43930405075408:43930405075915 26045:26051 hsa_signal_destroy() = 0 -43930405509802:43930405510610 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930420152337:43930420153471 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930420157549:43930420158498 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930420160669:43930420162572 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930420163640:43930420164319 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930420168707:43930420169320 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930420170137:43930420170607 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930420636301:43930420637305 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930420638760:43930420639385 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930420640411:43930420641926 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea710) = 0 -43930420643153:43930420646211 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea6d0) = 0 -43930420647164:43930420649137 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930421131809:43930421135152 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930421136798:43930421137442 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930421138559:43930421139088 26045:26051 hsa_signal_load_relaxed() = 1 -43930420650010:43930421140599 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930421139935:43930421141313 26045:26051 hsa_signal_store_screlease(, 0) = void -43930421141866:43930421142605 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930421142269:43930421142933 26045:26051 hsa_signal_destroy() = 0 -43930421156721:43930421157362 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930421162396:43930421162906 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 146 -43930421163992:43930421164456 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 146 -43930421165379:43930421165978 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930421166844:43930421167290 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930421168227:43930421168796 26045:26045 hsa_signal_store_relaxed(, 146) = void -43930421169915:43930421170533 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930421176310:43930421176942 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930421178823:43930421179444 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930421180285:43930421180616 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 147 -43930421181352:43930421181684 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 146 -43930421182423:43930421182747 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930421183484:43930421183865 26045:26045 hsa_signal_store_relaxed(, 147) = void -43930421184879:43930423121406 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930423123451:43930423123983 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930423138348:43930423139223 26045:26045 hsa_signal_destroy() = 0 -43930423140480:43930423141039 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930423142024:43930423142453 26045:26045 hsa_signal_destroy() = 0 -43930423143953:43930423155225 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930423156228:43930423156698 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930423157622:43930423158153 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930423158972:43930423159380 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930423160325:43930423160734 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930423161784:43930423162480 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930423163361:43930423164016 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea770) = 0 -43930423164872:43930423166977 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea730) = 0 -43930423167847:43930423168652 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930423632828:43930423635343 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930423636874:43930423637598 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930423638638:43930423639161 26045:26051 hsa_signal_load_relaxed() = 1 -43930423169514:43930423640679 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930423640065:43930423641418 26045:26051 hsa_signal_store_screlease(, 0) = void -43930423642359:43930423642859 26045:26051 hsa_signal_destroy() = 0 -43930424084375:43930424085185 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930438636098:43930438637153 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930438641239:43930438642223 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930438644741:43930438646763 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930438647829:43930438648493 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930438649304:43930438649879 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930438650726:43930438651234 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930439115931:43930439116662 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930439118760:43930439119386 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930439120396:43930439121926 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea7d0) = 0 -43930439126839:43930439130325 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea790) = 0 -43930439131284:43930439133127 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930439617889:43930439620888 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930439622566:43930439623218 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930439624326:43930439624851 26045:26051 hsa_signal_load_relaxed() = 1 -43930439133998:43930439626355 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930439625704:43930439627124 26045:26051 hsa_signal_store_screlease(, 0) = void -43930439627805:43930439628505 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930439628012:43930439628653 26045:26051 hsa_signal_destroy() = 0 -43930439641998:43930439642639 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930439647526:43930439648129 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 148 -43930439648904:43930439649361 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 148 -43930439650282:43930439650888 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930439651633:43930439652080 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930439653052:43930439653621 26045:26045 hsa_signal_store_relaxed(, 148) = void -43930439654927:43930439655557 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930439661237:43930439661882 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930439663586:43930439664201 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930439665027:43930439665359 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 149 -43930439666097:43930439666429 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 148 -43930439667194:43930439667515 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930439668254:43930439668638 26045:26045 hsa_signal_store_relaxed(, 149) = void -43930439669665:43930441590561 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930441605000:43930441605838 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930441608893:43930441619891 26045:26045 hsa_signal_destroy() = 0 -43930441621144:43930441621716 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930441622740:43930441623180 26045:26045 hsa_signal_destroy() = 0 -43930441624787:43930441626302 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930441627282:43930441627796 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930441631334:43930441631974 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930441632810:43930441633225 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930441634297:43930441634783 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930441636064:43930441636782 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930441637765:43930441638687 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea830) = 0 -43930441639626:43930441642720 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea7f0) = 0 -43930441643654:43930441644795 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930442108387:43930442111040 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930442112502:43930442113221 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930442114266:43930442114789 26045:26051 hsa_signal_load_relaxed() = 1 -43930441645726:43930442116283 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930442115679:43930442117035 26045:26051 hsa_signal_store_screlease(, 0) = void -43930442117975:43930442118474 26045:26051 hsa_signal_destroy() = 0 -43930442553596:43930442554392 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930457231368:43930457232471 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930457238724:43930457239866 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930457241990:43930457245413 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930457246890:43930457247594 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930457248424:43930457249138 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930457249965:43930457250447 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930457717139:43930457717854 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930457719606:43930457720241 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930457721361:43930457723177 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea890) = 0 -43930457724184:43930457727824 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea850) = 0 -43930457728846:43930457730964 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930458216142:43930458219226 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930458220748:43930458221405 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930458222557:43930458223081 26045:26051 hsa_signal_load_relaxed() = 1 -43930457731837:43930458231862 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930458231195:43930458232780 26045:26051 hsa_signal_store_screlease(, 0) = void -43930458233134:43930458233833 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930458233667:43930458234330 26045:26051 hsa_signal_destroy() = 0 -43930458251105:43930458251756 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930458260010:43930458260723 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 150 -43930458261636:43930458262118 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 150 -43930458263081:43930458263702 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930458264484:43930458264843 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930458265993:43930458266620 26045:26045 hsa_signal_store_relaxed(, 150) = void -43930458268217:43930458268853 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930458275215:43930458275848 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930458278106:43930458278748 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930458279510:43930458279848 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 151 -43930458280592:43930458280924 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 150 -43930458281899:43930458282221 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930458282975:43930458283355 26045:26045 hsa_signal_store_relaxed(, 151) = void -43930458284274:43930460207409 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930460221612:43930460222472 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930460225236:43930460226317 26045:26045 hsa_signal_destroy() = 0 -43930460237887:43930460238461 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930460239496:43930460239980 26045:26045 hsa_signal_destroy() = 0 -43930460241414:43930460242819 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930460243798:43930460244320 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930460245226:43930460245887 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930460246710:43930460247124 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930460248164:43930460248641 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930460249906:43930460250621 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930460251606:43930460252475 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea8f0) = 0 -43930460256134:43930460259217 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea8b0) = 0 -43930460260178:43930460261323 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930460725353:43930460728011 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930460729457:43930460730180 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930460731231:43930460731766 26045:26051 hsa_signal_load_relaxed() = 1 -43930460262279:43930460733299 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930460732657:43930460734048 26045:26051 hsa_signal_store_screlease(, 0) = void -43930460734982:43930460735542 26045:26051 hsa_signal_destroy() = 0 -43930461171194:43930461171991 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930475763980:43930475765090 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930475770867:43930475771966 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930475774134:43930475777279 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930475778373:43930475779122 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930475779948:43930475780533 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930475781328:43930475781993 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930476250648:43930476251334 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930476253101:43930476253739 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930476254772:43930476256241 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea950) = 0 -43930476257251:43930476261134 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea910) = 0 -43930476262121:43930476264051 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930476749514:43930476752623 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930476754137:43930476754787 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930476755921:43930476756443 26045:26051 hsa_signal_load_relaxed() = 1 -43930476264911:43930476758005 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930476757338:43930476758710 26045:26051 hsa_signal_store_screlease(, 0) = void -43930476759384:43930476760053 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930476759592:43930476760213 26045:26051 hsa_signal_destroy() = 0 -43930476775782:43930476776422 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930476787501:43930476788207 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 152 -43930476789114:43930476789587 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 152 -43930476790560:43930476791177 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930476792014:43930476792371 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930476793501:43930476794102 26045:26045 hsa_signal_store_relaxed(, 152) = void -43930476795703:43930476796334 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930476802536:43930476803167 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930476805381:43930476806009 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930476806786:43930476807120 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 153 -43930476807851:43930476808191 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 152 -43930476809131:43930476809460 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930476810219:43930476810602 26045:26045 hsa_signal_store_relaxed(, 153) = void -43930476811619:43930478730424 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930478744858:43930478745674 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930478748375:43930478749469 26045:26045 hsa_signal_destroy() = 0 -43930478760579:43930478761094 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930478762094:43930478762529 26045:26045 hsa_signal_destroy() = 0 -43930478764049:43930478765900 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930478766909:43930478767436 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930478768344:43930478768953 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930478769782:43930478770198 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930478771237:43930478771714 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930478772965:43930478773676 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930478774655:43930478775609 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ea9b0) = 0 -43930478776539:43930478779549 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea970) = 0 -43930478780503:43930478781611 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930479245698:43930479248352 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930479249808:43930479250529 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930479254624:43930479255168 26045:26051 hsa_signal_load_relaxed() = 1 -43930478782564:43930479256695 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930479256078:43930479257507 26045:26051 hsa_signal_store_screlease(, 0) = void -43930479258421:43930479258928 26045:26051 hsa_signal_destroy() = 0 -43930479692646:43930479693450 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930494303334:43930494304457 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930494310480:43930494311574 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930494313916:43930494316783 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930494317965:43930494318720 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930494319547:43930494320227 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930494321031:43930494321532 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930494787867:43930494788969 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930494790924:43930494791551 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930494792602:43930494794272 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eaa10) = 0 -43930494795467:43930494799014 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ea9d0) = 0 -43930494800002:43930494801728 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930495285718:43930495288787 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930495290344:43930495290998 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930495292158:43930495292684 26045:26051 hsa_signal_load_relaxed() = 1 -43930494802648:43930495294226 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930495293571:43930495295036 26045:26051 hsa_signal_store_screlease(, 0) = void -43930495295548:43930495296230 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930495295922:43930495296561 26045:26051 hsa_signal_destroy() = 0 -43930495312444:43930495313104 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930495320804:43930495321443 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 154 -43930495322320:43930495322785 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 154 -43930495323833:43930495324451 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930495325272:43930495325629 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930495326836:43930495327439 26045:26045 hsa_signal_store_relaxed(, 154) = void -43930495334289:43930495334929 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930495341545:43930495342176 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930495344516:43930495345146 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930495345918:43930495346256 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 155 -43930495347004:43930495347349 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 154 -43930495348309:43930495348637 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930495349408:43930495349792 26045:26045 hsa_signal_store_relaxed(, 155) = void -43930495350736:43930497263554 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930497277863:43930497278683 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930497281361:43930497282453 26045:26045 hsa_signal_destroy() = 0 -43930497293181:43930497293763 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930497294911:43930497295349 26045:26045 hsa_signal_destroy() = 0 -43930497296900:43930497298347 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930497299315:43930497299837 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930497300719:43930497301393 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930497302232:43930497302650 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930497303691:43930497304165 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930497305431:43930497306147 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930497307128:43930497307987 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eaa70) = 0 -43930497308936:43930497312021 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eaa30) = 0 -43930497312958:43930497314073 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930497777413:43930497780020 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930497781454:43930497782189 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930497783241:43930497783774 26045:26051 hsa_signal_load_relaxed() = 1 -43930497315014:43930497785274 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930497784671:43930497786045 26045:26051 hsa_signal_store_screlease(, 0) = void -43930497786983:43930497787494 26045:26051 hsa_signal_destroy() = 0 -43930498222092:43930498222891 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930512878556:43930512879686 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930512885421:43930512886569 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930512888887:43930512891521 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930512892874:43930512893694 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930512894517:43930512895111 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930512895888:43930512896465 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930513353396:43930513354532 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930513356247:43930513356870 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930513357866:43930513359578 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eaad0) = 0 -43930513360596:43930513364242 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eaa90) = 0 -43930513365227:43930513367164 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930513851910:43930513854920 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930513856427:43930513857081 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930513858227:43930513858766 26045:26051 hsa_signal_load_relaxed() = 1 -43930513368233:43930513860517 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930513859852:43930513861242 26045:26051 hsa_signal_store_screlease(, 0) = void -43930513861883:43930513862562 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930513862130:43930513862774 26045:26051 hsa_signal_destroy() = 0 -43930513878790:43930513879440 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930513887272:43930513887917 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 156 -43930513888806:43930513889462 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 156 -43930513890454:43930513891057 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930513891931:43930513892289 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930513893512:43930513894106 26045:26045 hsa_signal_store_relaxed(, 156) = void -43930513895648:43930513896278 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930513902565:43930513903196 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930513905511:43930513906086 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930513906829:43930513907156 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 157 -43930513907895:43930513908234 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 156 -43930513913262:43930513913607 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930513914364:43930513914752 26045:26045 hsa_signal_store_relaxed(, 157) = void -43930513915741:43930515839385 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930515853644:43930515854493 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930515857178:43930515858248 26045:26045 hsa_signal_destroy() = 0 -43930515869639:43930515870209 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930515871204:43930515871683 26045:26045 hsa_signal_destroy() = 0 -43930515873240:43930515874693 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930515875666:43930515876183 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930515877090:43930515877771 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930515878602:43930515879024 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930515880077:43930515880562 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930515881821:43930515882538 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930515883525:43930515884379 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eab30) = 0 -43930515885324:43930515888345 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eaaf0) = 0 -43930515889289:43930515890413 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930516355226:43930516357941 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930516359380:43930516360102 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930516361157:43930516361683 26045:26051 hsa_signal_load_relaxed() = 1 -43930515891361:43930516363293 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930516362579:43930516363968 26045:26051 hsa_signal_store_screlease(, 0) = void -43930516364901:43930516365417 26045:26051 hsa_signal_destroy() = 0 -43930516800669:43930516801470 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930531426968:43930531428249 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930531434191:43930531435375 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930531437287:43930531440372 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930531441503:43930531442175 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930531443002:43930531443687 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930531450097:43930531450508 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930531916937:43930531917655 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930531919422:43930531920048 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930531921307:43930531922789 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eab90) = 0 -43930531923722:43930531927071 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eab50) = 0 -43930531928025:43930531929854 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930532425399:43930532428413 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930532429960:43930532430596 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930532431706:43930532432233 26045:26051 hsa_signal_load_relaxed() = 1 -43930531930703:43930532433859 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930532433097:43930532434467 26045:26051 hsa_signal_store_screlease(, 0) = void -43930532435098:43930532435778 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930532435353:43930532435986 26045:26051 hsa_signal_destroy() = 0 -43930532451663:43930532452317 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930532460129:43930532460762 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 158 -43930532461555:43930532462023 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 158 -43930532462949:43930532463592 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930532464429:43930532464785 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930532465923:43930532466514 26045:26045 hsa_signal_store_relaxed(, 158) = void -43930532468077:43930532468707 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930532475146:43930532475779 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930532477920:43930532478543 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930532479294:43930532479626 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 159 -43930532480375:43930532480720 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 158 -43930532481656:43930532481986 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930532482784:43930532483172 26045:26045 hsa_signal_store_relaxed(, 159) = void -43930532484157:43930534406839 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930534421054:43930534421886 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930534424602:43930534425688 26045:26045 hsa_signal_destroy() = 0 -43930534440116:43930534440628 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930534441695:43930534442128 26045:26045 hsa_signal_destroy() = 0 -43930534443632:43930534445080 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930534446050:43930534446570 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930534447472:43930534448089 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930534448916:43930534449331 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930534450375:43930534450848 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930534452106:43930534452821 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930534453807:43930534454743 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eabf0) = 0 -43930534455687:43930534458721 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eabb0) = 0 -43930534459656:43930534460768 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930534924931:43930534927580 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930534929030:43930534929746 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930534930797:43930534931322 26045:26051 hsa_signal_load_relaxed() = 1 -43930534461709:43930534932839 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930534932226:43930534933620 26045:26051 hsa_signal_store_screlease(, 0) = void -43930534934551:43930534935054 26045:26051 hsa_signal_destroy() = 0 -43930535368760:43930535369561 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930549941981:43930549943098 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930549949144:43930549950225 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930549952494:43930549954858 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930549956055:43930549956797 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930549957831:43930549958496 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930549959267:43930549959738 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930550425460:43930550426144 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930550428127:43930550428752 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930550429779:43930550431449 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eac50) = 0 -43930550432478:43930550435877 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eac10) = 0 -43930550442764:43930550444751 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930550928911:43930550931989 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930550933453:43930550934101 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930550935204:43930550935730 26045:26051 hsa_signal_load_relaxed() = 1 -43930550445627:43930550937240 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930550936584:43930550937965 26045:26051 hsa_signal_store_screlease(, 0) = void -43930550938434:43930550939114 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930550938852:43930550939493 26045:26051 hsa_signal_destroy() = 0 -43930550956355:43930550956999 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930550964606:43930550965247 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 160 -43930550966138:43930550966616 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 160 -43930550967538:43930550968136 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930550968966:43930550969324 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930550970480:43930550971084 26045:26045 hsa_signal_store_relaxed(, 160) = void -43930550972802:43930550973431 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930550979605:43930550980237 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930550982681:43930550983308 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930550984071:43930550984403 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 161 -43930550985153:43930550985501 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 160 -43930550986440:43930550986767 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930550987519:43930550987903 26045:26045 hsa_signal_store_relaxed(, 161) = void -43930550988912:43930552910869 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930552925594:43930552926437 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930552929187:43930552940761 26045:26045 hsa_signal_destroy() = 0 -43930552941974:43930552942497 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930552943498:43930552943934 26045:26045 hsa_signal_destroy() = 0 -43930552945462:43930552947108 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930552948081:43930552948604 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930552949485:43930552950119 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930552953424:43930552953848 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930552954920:43930552955401 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930552956681:43930552957395 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930552958380:43930552959256 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eacb0) = 0 -43930552960199:43930552963295 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eac70) = 0 -43930552964230:43930552965376 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930553428786:43930553431517 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930553432974:43930553433690 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930553434748:43930553435271 26045:26051 hsa_signal_load_relaxed() = 1 -43930552966333:43930553436789 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930553436169:43930553437556 26045:26051 hsa_signal_store_screlease(, 0) = void -43930553438500:43930553439004 26045:26051 hsa_signal_destroy() = 0 -43930553873900:43930553874726 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930568596409:43930568597510 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930568603680:43930568605091 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930568607096:43930568609751 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930568610900:43930568611728 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930568612560:43930568613323 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930568614129:43930568614643 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930569079999:43930569080739 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930569082461:43930569083089 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930569084141:43930569085827 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ead10) = 0 -43930569086871:43930569090553 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eacd0) = 0 -43930569091563:43930569093704 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930569577860:43930569581195 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930569582847:43930569583503 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930569584691:43930569585228 26045:26051 hsa_signal_load_relaxed() = 1 -43930569094577:43930569586780 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930569586119:43930569587528 26045:26051 hsa_signal_store_screlease(, 0) = void -43930569591726:43930569592352 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930569592902:43930569593528 26045:26051 hsa_signal_destroy() = 0 -43930569609967:43930569610617 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930569618598:43930569619254 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 162 -43930569620167:43930569620891 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 162 -43930569621815:43930569622420 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930569623200:43930569623553 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930569624740:43930569625373 26045:26045 hsa_signal_store_relaxed(, 162) = void -43930569627084:43930569627721 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930569634320:43930569634949 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930569637359:43930569638001 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930569638770:43930569639102 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 163 -43930569639848:43930569640202 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 162 -43930569641162:43930569641489 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930569642241:43930569642625 26045:26045 hsa_signal_store_relaxed(, 163) = void -43930569643613:43930571567441 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930571581845:43930571582701 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930571585375:43930571586467 26045:26045 hsa_signal_destroy() = 0 -43930571597600:43930571598111 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930571599137:43930571599618 26045:26045 hsa_signal_destroy() = 0 -43930571601097:43930571602474 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930571603447:43930571603970 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930571604846:43930571605526 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930571606357:43930571606773 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930571607822:43930571608311 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930571609568:43930571610283 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930571611260:43930571612104 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ead70) = 0 -43930571615298:43930571618333 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ead30) = 0 -43930571619279:43930571620425 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930572083961:43930572086527 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930572087966:43930572088691 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930572089741:43930572090264 26045:26051 hsa_signal_load_relaxed() = 1 -43930571621380:43930572091845 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930572091160:43930572092533 26045:26051 hsa_signal_store_screlease(, 0) = void -43930572093466:43930572093965 26045:26051 hsa_signal_destroy() = 0 -43930572529138:43930572529940 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930587118519:43930587119632 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930587125734:43930587126923 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930587129244:43930587131976 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930587133037:43930587133834 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930587134662:43930587135352 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930587136147:43930587136547 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930587603055:43930587603866 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930587605889:43930587606513 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930587607547:43930587609052 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eadd0) = 0 -43930587610219:43930587613331 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ead90) = 0 -43930587614314:43930587616249 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930588113469:43930588116476 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930588117957:43930588118608 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930588119763:43930588120286 26045:26051 hsa_signal_load_relaxed() = 1 -43930587617267:43930588122083 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930588121169:43930588122535 26045:26051 hsa_signal_store_screlease(, 0) = void -43930588123541:43930588124224 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930588123641:43930588124279 26045:26051 hsa_signal_destroy() = 0 -43930588141066:43930588141704 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930588149540:43930588150182 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 164 -43930588155662:43930588156132 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 164 -43930588157093:43930588157756 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930588158596:43930588158955 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930588160081:43930588160840 26045:26045 hsa_signal_store_relaxed(, 164) = void -43930588162467:43930588163099 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930588169371:43930588170002 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930588172244:43930588172905 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930588173664:43930588173998 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 165 -43930588174737:43930588175076 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 164 -43930588176207:43930588176530 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930588177287:43930588177668 26045:26045 hsa_signal_store_relaxed(, 165) = void -43930588178682:43930590088611 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930590103125:43930590103963 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930590106606:43930590107685 26045:26045 hsa_signal_destroy() = 0 -43930590118818:43930590119266 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930590120267:43930590120708 26045:26045 hsa_signal_destroy() = 0 -43930590122316:43930590123776 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930590124753:43930590125289 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930590126173:43930590126798 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930590127633:43930590128047 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930590129086:43930590129569 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930590130840:43930590131554 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930590132538:43930590133486 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eae30) = 0 -43930590134425:43930590137426 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eadf0) = 0 -43930590138365:43930590139481 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930590603096:43930590605773 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930590607269:43930590607990 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930590609053:43930590609580 26045:26051 hsa_signal_load_relaxed() = 1 -43930590140421:43930590613905 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930590613281:43930590614694 26045:26051 hsa_signal_store_screlease(, 0) = void -43930590615621:43930590616118 26045:26051 hsa_signal_destroy() = 0 -43930591050702:43930591051497 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930605674802:43930605675986 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930605681619:43930605682807 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930605684790:43930605687305 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930605688415:43930605689281 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930605690101:43930605690787 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930605691737:43930605692208 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930606159003:43930606160087 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930606161682:43930606162313 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930606163539:43930606165046 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eae90) = 0 -43930606166069:43930606169907 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eae50) = 0 -43930606170907:43930606173104 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930606656907:43930606659909 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930606661412:43930606662067 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930606663130:43930606663665 26045:26051 hsa_signal_load_relaxed() = 1 -43930606174053:43930606665285 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930606664626:43930606666034 26045:26051 hsa_signal_store_screlease(, 0) = void -43930606666499:43930606667176 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930606666923:43930606667577 26045:26051 hsa_signal_destroy() = 0 -43930606683137:43930606683789 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930606691971:43930606692634 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 166 -43930606693514:43930606693985 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 166 -43930606694981:43930606695593 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930606696499:43930606696854 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930606697987:43930606698582 26045:26045 hsa_signal_store_relaxed(, 166) = void -43930606700418:43930606701055 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930606712593:43930606713225 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930606715547:43930606716181 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930606716945:43930606717284 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 167 -43930606718028:43930606718373 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 166 -43930606719335:43930606719665 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930606720425:43930606720815 26045:26045 hsa_signal_store_relaxed(, 167) = void -43930606721765:43930608652915 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930608667481:43930608668308 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930608670906:43930608671990 26045:26045 hsa_signal_destroy() = 0 -43930608682614:43930608683200 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930608684254:43930608684692 26045:26045 hsa_signal_destroy() = 0 -43930608686177:43930608687602 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930608688579:43930608689116 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930608690015:43930608690644 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930608691474:43930608691893 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930608692937:43930608693426 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930608694688:43930608695404 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930608696381:43930608697252 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eaef0) = 0 -43930608698190:43930608701279 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eaeb0) = 0 -43930608702230:43930608703335 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930609167083:43930609169715 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930609171141:43930609171871 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930609172931:43930609173462 26045:26051 hsa_signal_load_relaxed() = 1 -43930608704253:43930609174965 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930609174359:43930609175760 26045:26051 hsa_signal_store_screlease(, 0) = void -43930609176699:43930609177210 26045:26051 hsa_signal_destroy() = 0 -43930609612087:43930609612903 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930624294587:43930624295666 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930624307219:43930624308456 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930624310471:43930624313772 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930624314880:43930624315571 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930624316392:43930624316938 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930624317675:43930624318154 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930624784233:43930624785278 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930624787030:43930624787661 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930624788672:43930624790232 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eaf50) = 0 -43930624791217:43930624794817 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eaf10) = 0 -43930624795783:43930624797797 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930625281705:43930625284991 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930625286569:43930625287221 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930625288343:43930625288881 26045:26051 hsa_signal_load_relaxed() = 1 -43930624798682:43930625290399 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930625289739:43930625291139 26045:26051 hsa_signal_store_screlease(, 0) = void -43930625291651:43930625292331 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930625292023:43930625292668 26045:26051 hsa_signal_destroy() = 0 -43930625308384:43930625309049 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930625316576:43930625317217 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 168 -43930625318090:43930625318555 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 168 -43930625319611:43930625320227 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930625321005:43930625321360 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930625322491:43930625323082 26045:26045 hsa_signal_store_relaxed(, 168) = void -43930625324682:43930625325320 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930625331602:43930625332233 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930625334443:43930625335014 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930625335774:43930625336107 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 169 -43930625336851:43930625337185 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 168 -43930625338121:43930625338450 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930625340839:43930625341231 26045:26045 hsa_signal_store_relaxed(, 169) = void -43930625342224:43930627269779 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930627284119:43930627284990 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930627287724:43930627288797 26045:26045 hsa_signal_destroy() = 0 -43930627300552:43930627301071 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930627302088:43930627302568 26045:26045 hsa_signal_destroy() = 0 -43930627304090:43930627305498 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930627306487:43930627307008 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930627307921:43930627308602 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930627309435:43930627309853 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930627310917:43930627311405 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930627312677:43930627313394 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930627314375:43930627315235 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eafb0) = 0 -43930627316173:43930627319158 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eaf70) = 0 -43930627320101:43930627321223 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930627783972:43930627786569 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930627788009:43930627788727 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930627789793:43930627790319 26045:26051 hsa_signal_load_relaxed() = 1 -43930627322143:43930627791842 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930627791228:43930627792582 26045:26051 hsa_signal_store_screlease(, 0) = void -43930627793520:43930627794021 26045:26051 hsa_signal_destroy() = 0 -43930628234688:43930628235492 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930642852206:43930642853396 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930642858836:43930642859882 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930642861811:43930642864291 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930642865631:43930642866378 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930642867207:43930642867898 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930642868675:43930642869149 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930643339069:43930643339896 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930643344378:43930643345009 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930643346099:43930643347559 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb010) = 0 -43930643348759:43930643352164 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eafd0) = 0 -43930643353035:43930643355294 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930643823373:43930643826386 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930643827909:43930643828565 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930643829680:43930643830220 26045:26051 hsa_signal_load_relaxed() = 1 -43930643356259:43930643831720 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930643831076:43930643832612 26045:26051 hsa_signal_store_screlease(, 0) = void -43930643832956:43930643833619 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930643833498:43930643834143 26045:26051 hsa_signal_destroy() = 0 -43930643850840:43930643851504 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930643859192:43930643859826 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 170 -43930643860722:43930643861187 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 170 -43930643862110:43930643862713 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930643863581:43930643863940 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930643865111:43930643865721 26045:26045 hsa_signal_store_relaxed(, 170) = void -43930643867329:43930643867958 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930643875084:43930643875717 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930643877964:43930643878758 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930643879505:43930643879835 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 171 -43930643880576:43930643880917 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 170 -43930643881874:43930643882201 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930643882960:43930643883348 26045:26045 hsa_signal_store_relaxed(, 171) = void -43930643884281:43930644446142 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930644448445:43930644449010 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930644450662:43930644451372 26045:26045 hsa_signal_destroy() = 0 -43930644452358:43930644452852 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930644455804:43930644456201 26045:26045 hsa_signal_destroy() = 0 -43930644457602:43930644458967 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930644459838:43930644460320 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930644461109:43930644461721 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930644462469:43930644462843 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930644463811:43930644464244 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930644465402:43930644466040 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930644466920:43930644467781 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb070) = 0 -43930644468624:43930644471140 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb030) = 0 -43930644471985:43930644473008 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930644965738:43930644968229 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930644969545:43930644970207 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930644971156:43930644971635 26045:26051 hsa_signal_load_relaxed() = 1 -43930644473855:43930644973113 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930644972447:43930644973724 26045:26051 hsa_signal_store_screlease(, 0) = void -43930644974565:43930644975024 26045:26051 hsa_signal_destroy() = 0 -43930645415965:43930645416818 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930660040374:43930660041437 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930660047020:43930660048432 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930660050645:43930660053737 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930660054906:43930660055923 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930660056766:43930660057540 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930660058310:43930660058786 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930660522404:43930660523140 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930660524704:43930660525336 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930660526383:43930660527889 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb0d0) = 0 -43930660528975:43930660532781 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb090) = 0 -43930660533729:43930660535723 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930661005258:43930661008295 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930661009816:43930661010472 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930661011572:43930661012106 26045:26051 hsa_signal_load_relaxed() = 1 -43930660542321:43930661013604 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930661012959:43930661014334 26045:26051 hsa_signal_store_screlease(, 0) = void -43930661014825:43930661015505 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930661015225:43930661015884 26045:26051 hsa_signal_destroy() = 0 -43930661032010:43930661032656 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930661040204:43930661040833 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 172 -43930661041701:43930661042172 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 172 -43930661043075:43930661043679 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930661044520:43930661044874 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930661046012:43930661046624 26045:26045 hsa_signal_store_relaxed(, 172) = void -43930661048334:43930661048963 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930661054956:43930661055583 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930661057820:43930661058482 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930661059244:43930661059580 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 173 -43930661060316:43930661060653 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 172 -43930661061596:43930661061917 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930661062688:43930661063077 26045:26045 hsa_signal_store_relaxed(, 173) = void -43930661064094:43930661621166 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930661634335:43930661635112 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930661637605:43930661638622 26045:26045 hsa_signal_destroy() = 0 -43930661639873:43930661640422 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930661651813:43930661652216 26045:26045 hsa_signal_destroy() = 0 -43930661653650:43930661654903 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930661655796:43930661656255 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930661657047:43930661657614 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930661660755:43930661661136 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930661662100:43930661662530 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930661663671:43930661664311 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930661665201:43930661665988 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb130) = 0 -43930661666829:43930661669581 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb0f0) = 0 -43930661670429:43930661671486 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930662163509:43930662166050 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930662167378:43930662168026 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930662168978:43930662169450 26045:26051 hsa_signal_load_relaxed() = 1 -43930661672333:43930662170919 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930662170263:43930662171512 26045:26051 hsa_signal_store_screlease(, 0) = void -43930662172352:43930662172800 26045:26051 hsa_signal_destroy() = 0 -43930662616600:43930662617445 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930677235994:43930677237068 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930677243034:43930677244124 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930677246115:43930677249597 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930677250657:43930677251401 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930677252238:43930677252918 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930677253757:43930677254227 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930677719131:43930677719824 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930677721483:43930677722118 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930677723121:43930677724533 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb190) = 0 -43930677725553:43930677729102 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb150) = 0 -43930677730095:43930677732078 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930678200628:43930678203619 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930678205161:43930678205809 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930678206970:43930678207490 26045:26051 hsa_signal_load_relaxed() = 1 -43930677732977:43930678209046 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930678208398:43930678209778 26045:26051 hsa_signal_store_screlease(, 0) = void -43930678210322:43930678210949 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930678215453:43930678216065 26045:26051 hsa_signal_destroy() = 0 -43930678229622:43930678230270 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930678238040:43930678238683 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 174 -43930678239558:43930678240020 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 174 -43930678241025:43930678241642 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930678242489:43930678242846 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930678243977:43930678244579 26045:26045 hsa_signal_store_relaxed(, 174) = void -43930678246171:43930678246810 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930678253375:43930678254004 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930678256309:43930678256938 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930678257711:43930678258044 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 175 -43930678258778:43930678259115 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 174 -43930678260051:43930678260376 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930678261130:43930678261510 26045:26045 hsa_signal_store_relaxed(, 175) = void -43930678262449:43930678822265 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930678836140:43930678836961 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930678839449:43930678840483 26045:26045 hsa_signal_destroy() = 0 -43930678841665:43930678842364 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930678852927:43930678853381 26045:26045 hsa_signal_destroy() = 0 -43930678854762:43930678856064 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930678856944:43930678857418 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930678858239:43930678858841 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930678859587:43930678859963 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930678860903:43930678861336 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930678862472:43930678863116 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930678864002:43930678864774 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb1f0) = 0 -43930678865619:43930678868067 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb1b0) = 0 -43930678870922:43930678871959 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930679363681:43930679366198 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930679367527:43930679368169 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930679369124:43930679369593 26045:26051 hsa_signal_load_relaxed() = 1 -43930678872837:43930679371047 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930679370400:43930679371648 26045:26051 hsa_signal_store_screlease(, 0) = void -43930679372492:43930679372950 26045:26051 hsa_signal_destroy() = 0 -43930679814876:43930679815709 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930694474322:43930694475436 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930694481350:43930694482398 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930694484298:43930694487629 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930694489057:43930694489732 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930694490562:43930694491206 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930694492002:43930694492476 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930694959401:43930694960257 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930694962120:43930694962759 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930694963762:43930694965191 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb250) = 0 -43930694966216:43930694969661 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb210) = 0 -43930694970785:43930694972636 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930695441595:43930695444588 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930695446109:43930695446756 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930695447918:43930695448447 26045:26051 hsa_signal_load_relaxed() = 1 -43930694973564:43930695449979 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930695449337:43930695450943 26045:26051 hsa_signal_store_screlease(, 0) = void -43930695451360:43930695452022 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930695451831:43930695452458 26045:26051 hsa_signal_destroy() = 0 -43930695468422:43930695469071 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930695477045:43930695477683 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 176 -43930695478583:43930695479047 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 176 -43930695483969:43930695484602 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930695485441:43930695485804 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930695486942:43930695487551 26045:26045 hsa_signal_store_relaxed(, 176) = void -43930695489115:43930695489747 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930695495860:43930695496489 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930695498800:43930695499641 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930695500399:43930695500732 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 177 -43930695501472:43930695501803 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 176 -43930695502743:43930695503068 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930695503827:43930695504204 26045:26045 hsa_signal_store_relaxed(, 177) = void -43930695505182:43930696065132 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930696078721:43930696079494 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930696082043:43930696083071 26045:26045 hsa_signal_destroy() = 0 -43930696084345:43930696084951 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930696095987:43930696096383 26045:26045 hsa_signal_destroy() = 0 -43930696097699:43930696098984 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930696099861:43930696100335 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930696101136:43930696101695 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930696102442:43930696102816 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930696103754:43930696104195 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930696105329:43930696105971 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930696106855:43930696107705 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb2b0) = 0 -43930696108551:43930696111376 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb270) = 0 -43930696112223:43930696113259 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930696605290:43930696607803 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930696609124:43930696609778 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930696610727:43930696611204 26045:26051 hsa_signal_load_relaxed() = 1 -43930696114111:43930696612674 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930696612017:43930696613241 26045:26051 hsa_signal_store_screlease(, 0) = void -43930696617359:43930696617822 26045:26051 hsa_signal_destroy() = 0 -43930697059575:43930697060425 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930711709919:43930711711005 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930711717232:43930711718230 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930711720140:43930711723242 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930711724339:43930711725052 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930711725903:43930711726610 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930711727563:43930711728034 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930712196346:43930712197007 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930712198715:43930712199339 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930712200436:43930712202081 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb310) = 0 -43930712203443:43930712207191 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb2d0) = 0 -43930712208173:43930712210226 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930712676911:43930712680086 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930712681527:43930712682172 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930712683313:43930712683834 26045:26051 hsa_signal_load_relaxed() = 1 -43930712211234:43930712685409 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930712684748:43930712686124 26045:26051 hsa_signal_store_screlease(, 0) = void -43930712686618:43930712687281 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930712687090:43930712687711 26045:26051 hsa_signal_destroy() = 0 -43930712703852:43930712704500 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930712712024:43930712712802 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 178 -43930712713700:43930712714158 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 178 -43930712715102:43930712715705 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930712716588:43930712716945 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930712718097:43930712718688 26045:26045 hsa_signal_store_relaxed(, 178) = void -43930712720307:43930712720941 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930712727154:43930712727783 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930712734096:43930712734733 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930712735508:43930712735840 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 179 -43930712736575:43930712736918 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 178 -43930712737877:43930712738211 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930712738962:43930712739345 26045:26045 hsa_signal_store_relaxed(, 179) = void -43930712740260:43930713290693 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930713304445:43930713305222 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930713307767:43930713308789 26045:26045 hsa_signal_destroy() = 0 -43930713309958:43930713310440 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930713321497:43930713321904 26045:26045 hsa_signal_destroy() = 0 -43930713323354:43930713324692 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930713325573:43930713326047 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930713326868:43930713327430 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930713328176:43930713328551 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930713329511:43930713329951 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930713331088:43930713331735 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930713332617:43930713333422 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb370) = 0 -43930713334262:43930713336882 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb330) = 0 -43930713337734:43930713338742 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930713830652:43930713833154 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930713834478:43930713835131 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930713836083:43930713836565 26045:26051 hsa_signal_load_relaxed() = 1 -43930713339572:43930713838034 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930713837383:43930713838670 26045:26051 hsa_signal_store_screlease(, 0) = void -43930713839512:43930713839972 26045:26051 hsa_signal_destroy() = 0 -43930714282110:43930714282957 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930728917049:43930728918117 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930728924081:43930728925245 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930728932426:43930728935625 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930728936658:43930728937408 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930728938237:43930728938869 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930728939626:43930728940098 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930729410913:43930729411770 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930729413673:43930729414296 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930729415372:43930729416953 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb3d0) = 0 -43930729417927:43930729421306 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb390) = 0 -43930729422276:43930729424211 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930729890796:43930729893853 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930729895467:43930729896104 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930729897210:43930729897921 26045:26051 hsa_signal_load_relaxed() = 1 -43930729425111:43930729899436 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930729898784:43930729900180 26045:26051 hsa_signal_store_screlease(, 0) = void -43930729900893:43930729901560 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930729901064:43930729901767 26045:26051 hsa_signal_destroy() = 0 -43930729917740:43930729918386 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930729926048:43930729926678 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 180 -43930729927580:43930729928048 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 180 -43930729928985:43930729929592 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930729930367:43930729930721 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930729931857:43930729932442 26045:26045 hsa_signal_store_relaxed(, 180) = void -43930729934066:43930729934696 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930729940959:43930729941590 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930729943756:43930729944330 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930729945087:43930729945421 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 181 -43930729946159:43930729946505 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 180 -43930729947452:43930729947777 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930729948534:43930729948921 26045:26045 hsa_signal_store_relaxed(, 181) = void -43930729951472:43930730505137 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930730518472:43930730519286 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930730521748:43930730522772 26045:26045 hsa_signal_destroy() = 0 -43930730524044:43930730524741 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930730535206:43930730535769 26045:26045 hsa_signal_destroy() = 0 -43930730537159:43930730538470 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930730539362:43930730539827 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930730540621:43930730541190 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930730541943:43930730542320 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930730543279:43930730543715 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930730544847:43930730545492 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930730546380:43930730547468 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb430) = 0 -43930730548317:43930730550767 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb3f0) = 0 -43930730551616:43930730552618 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930731045164:43930731047689 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930731049003:43930731049663 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930731050614:43930731051098 26045:26051 hsa_signal_load_relaxed() = 1 -43930730553439:43930731052568 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930731051918:43930731053153 26045:26051 hsa_signal_store_screlease(, 0) = void -43930731053996:43930731054463 26045:26051 hsa_signal_destroy() = 0 -43930731496455:43930731497307 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930746134251:43930746135547 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930746141821:43930746143036 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930746144848:43930746147404 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930746148520:43930746149489 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930746150320:43930746150987 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930746151787:43930746152281 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930746618550:43930746619322 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930746626548:43930746627189 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930746628369:43930746629929 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb490) = 0 -43930746630868:43930746634484 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb450) = 0 -43930746635424:43930746637183 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930747103027:43930747106136 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930747107656:43930747108314 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930747109446:43930747109975 26045:26051 hsa_signal_load_relaxed() = 1 -43930746638141:43930747111484 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930747110844:43930747112219 26045:26051 hsa_signal_store_screlease(, 0) = void -43930747112814:43930747113495 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930747113104:43930747113763 26045:26051 hsa_signal_destroy() = 0 -43930747130740:43930747131380 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930747138975:43930747139634 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 182 -43930747140491:43930747140955 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 182 -43930747141900:43930747142515 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930747143355:43930747143718 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930747144842:43930747145432 26045:26045 hsa_signal_store_relaxed(, 182) = void -43930747147029:43930747147667 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930747153698:43930747154330 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930747156465:43930747157094 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930747157863:43930747158201 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 183 -43930747158937:43930747159273 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 182 -43930747160217:43930747160543 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930747161296:43930747161684 26045:26045 hsa_signal_store_relaxed(, 183) = void -43930747162626:43930747720208 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930747722157:43930747722657 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930747724189:43930747724747 26045:26045 hsa_signal_destroy() = 0 -43930747736264:43930747736792 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930747741077:43930747741486 26045:26045 hsa_signal_destroy() = 0 -43930747743256:43930747753874 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930747754773:43930747755200 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930747755977:43930747756453 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930747757191:43930747757555 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930747758404:43930747758785 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930747759719:43930747760347 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930747761130:43930747761727 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb4f0) = 0 -43930747762498:43930747764481 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb4b0) = 0 -43930747765269:43930747766042 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930748258775:43930748261265 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930748262599:43930748263252 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930748264188:43930748264671 26045:26051 hsa_signal_load_relaxed() = 1 -43930747766803:43930748266226 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930748265495:43930748266729 26045:26051 hsa_signal_store_screlease(, 0) = void -43930748267571:43930748268033 26045:26051 hsa_signal_destroy() = 0 -43930748710241:43930748711092 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930763360148:43930763361223 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930763366053:43930763367184 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930763368941:43930763371643 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930763372710:43930763373472 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930763374291:43930763374833 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930763375687:43930763376157 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930763843876:43930763844611 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930763846337:43930763846973 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930763848129:43930763849880 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb550) = 0 -43930763851125:43930763854702 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb510) = 0 -43930763855705:43930763857710 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930764337347:43930764340313 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930764346759:43930764347431 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930764348487:43930764349024 26045:26051 hsa_signal_load_relaxed() = 1 -43930763858561:43930764350629 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930764349869:43930764351287 26045:26051 hsa_signal_store_screlease(, 0) = void -43930764352012:43930764352675 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930764352167:43930764352845 26045:26051 hsa_signal_destroy() = 0 -43930764367014:43930764367649 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930764374200:43930764374871 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 184 -43930764375750:43930764376138 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 184 -43930764377030:43930764377644 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930764378420:43930764378870 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930764380093:43930764380656 26045:26045 hsa_signal_store_relaxed(, 184) = void -43930764382014:43930764382643 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930764388365:43930764388994 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930764390706:43930764391331 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930764392159:43930764392539 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 185 -43930764393276:43930764393609 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 184 -43930764394353:43930764394669 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930764395405:43930764395793 26045:26045 hsa_signal_store_relaxed(, 185) = void -43930764396862:43930764946356 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930764948272:43930764948752 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930764950254:43930764950837 26045:26045 hsa_signal_destroy() = 0 -43930764962450:43930764963009 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930764963942:43930764964335 26045:26045 hsa_signal_destroy() = 0 -43930764965898:43930764967953 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930764969000:43930764969572 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930764979964:43930764980459 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930764981211:43930764981574 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930764984189:43930764984572 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930764985521:43930764986150 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930764986943:43930764987470 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb5b0) = 0 -43930764988245:43930764990042 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb570) = 0 -43930764990824:43930764991610 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930765484050:43930765486458 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930765487782:43930765488432 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930765489372:43930765489844 26045:26051 hsa_signal_load_relaxed() = 1 -43930764992396:43930765491311 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930765490652:43930765491900 26045:26051 hsa_signal_store_screlease(, 0) = void -43930765492741:43930765493190 26045:26051 hsa_signal_destroy() = 0 -43930765934766:43930765935662 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930780589364:43930780590427 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930780594915:43930780596171 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930780597893:43930780600549 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930780601640:43930780602350 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930780603176:43930780603752 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930780604607:43930780605079 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930781071447:43930781072180 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930781073765:43930781074388 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930781075419:43930781077002 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb610) = 0 -43930781078029:43930781081356 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb5d0) = 0 -43930781082341:43930781083932 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930781551396:43930781554378 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930781555876:43930781556525 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930781557649:43930781558171 26045:26051 hsa_signal_load_relaxed() = 1 -43930781084824:43930781559740 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930781559079:43930781560437 26045:26051 hsa_signal_store_screlease(, 0) = void -43930781561126:43930781561792 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930781561320:43930781561949 26045:26051 hsa_signal_destroy() = 0 -43930781579581:43930781580221 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930781586169:43930781587002 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 186 -43930781587895:43930781588388 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 186 -43930781589253:43930781589863 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930781590655:43930781591104 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930781592055:43930781592844 26045:26045 hsa_signal_store_relaxed(, 186) = void -43930781594135:43930781594767 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930781600612:43930781601250 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930781603196:43930781603825 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930781604661:43930781604991 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 187 -43930781605733:43930781606071 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 186 -43930781606829:43930781607151 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930781607894:43930781608273 26045:26045 hsa_signal_store_relaxed(, 187) = void -43930781609327:43930782162843 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930782164353:43930782164844 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930782166273:43930782166823 26045:26045 hsa_signal_destroy() = 0 -43930782167708:43930782178567 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930782179564:43930782180045 26045:26045 hsa_signal_destroy() = 0 -43930782181476:43930782183172 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930782184216:43930782184731 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930782185597:43930782186137 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930782196391:43930782196823 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930782197698:43930782198083 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930782198984:43930782199617 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930782200410:43930782200910 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb670) = 0 -43930782201675:43930782203464 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb630) = 0 -43930782204240:43930782204955 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930782697951:43930782700632 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930782701976:43930782702631 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930782703579:43930782704054 26045:26051 hsa_signal_load_relaxed() = 1 -43930782209779:43930782705504 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930782704837:43930782706095 26045:26051 hsa_signal_store_screlease(, 0) = void -43930782706938:43930782707390 26045:26051 hsa_signal_destroy() = 0 -43930783149337:43930783150180 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930797815939:43930797817003 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930797821632:43930797822985 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930797824867:43930797826869 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930797827959:43930797828879 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930797829690:43930797830243 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930797831093:43930797831563 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930798300169:43930798300902 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930798302828:43930798303452 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930798304500:43930798306365 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb6d0) = 0 -43930798307334:43930798310809 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb690) = 0 -43930798311916:43930798313539 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930798780383:43930798783404 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930798785029:43930798785699 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930798786832:43930798787369 26045:26051 hsa_signal_load_relaxed() = 1 -43930798314487:43930798788940 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930798788271:43930798789655 26045:26051 hsa_signal_store_screlease(, 0) = void -43930798790548:43930798791191 26045:26051 hsa_signal_destroy() = 0 -43930798790495:43930798791218 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930798805461:43930798806109 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930798811798:43930798812463 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 188 -43930798813428:43930798813848 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 188 -43930798814804:43930798815446 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930798819865:43930798820318 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930798821286:43930798821848 26045:26045 hsa_signal_store_relaxed(, 188) = void -43930798823242:43930798823875 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930798829765:43930798830398 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930798832106:43930798832792 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930798833626:43930798834005 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 189 -43930798834744:43930798835090 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 188 -43930798835834:43930798836151 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930798836888:43930798837268 26045:26045 hsa_signal_store_relaxed(, 189) = void -43930798838295:43930799398327 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930799411450:43930799412222 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930799415113:43930799416121 26045:26045 hsa_signal_destroy() = 0 -43930799417560:43930799418182 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930799428731:43930799429141 26045:26045 hsa_signal_destroy() = 0 -43930799430681:43930799432042 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930799432922:43930799433392 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930799434239:43930799434802 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930799435564:43930799435936 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930799436884:43930799437322 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930799438453:43930799439093 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930799439968:43930799440865 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb730) = 0 -43930799441703:43930799444159 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb6f0) = 0 -43930799445012:43930799446008 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930799938233:43930799940923 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930799942302:43930799942955 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930799943911:43930799944383 26045:26051 hsa_signal_load_relaxed() = 1 -43930799446853:43930799945852 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930799945193:43930799946492 26045:26051 hsa_signal_store_screlease(, 0) = void -43930799951036:43930799951498 26045:26051 hsa_signal_destroy() = 0 -43930800416184:43930800417044 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930815029955:43930815031077 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930815036769:43930815037757 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930815040005:43930815043713 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930815044937:43930815045633 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930815046450:43930815047410 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930815048185:43930815048801 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930815530554:43930815531301 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930815533019:43930815533647 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930815534681:43930815536121 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb790) = 0 -43930815537140:43930815540798 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb750) = 0 -43930815541802:43930815543893 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930816016865:43930816030070 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930816031715:43930816032372 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930816033589:43930816034123 26045:26051 hsa_signal_load_relaxed() = 1 -43930815544772:43930816035752 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930816035049:43930816036507 26045:26051 hsa_signal_store_screlease(, 0) = void -43930816037095:43930816037816 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930816037468:43930816038159 26045:26051 hsa_signal_destroy() = 0 -43930816054122:43930816063545 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930816071735:43930816072447 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 190 -43930816073328:43930816073803 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 190 -43930816074898:43930816075507 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930816076408:43930816076767 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930816077941:43930816078536 26045:26045 hsa_signal_store_relaxed(, 190) = void -43930816080129:43930816080764 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930816087074:43930816087704 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930816090027:43930816090646 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930816095691:43930816096022 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 191 -43930816096766:43930816097110 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 190 -43930816098092:43930816098427 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930816099182:43930816099579 26045:26045 hsa_signal_store_relaxed(, 191) = void -43930816100572:43930816647945 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930816663772:43930816665565 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930816668401:43930816669646 26045:26045 hsa_signal_destroy() = 0 -43930816680674:43930816681214 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930816682386:43930816682888 26045:26045 hsa_signal_destroy() = 0 -43930816684544:43930816686059 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930816687146:43930816687746 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930816688738:43930816689493 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930816690381:43930816690829 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930816691991:43930816692535 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930816693924:43930816694754 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930816695832:43930816696892 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb7f0) = 0 -43930816697905:43930816701088 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb7b0) = 0 -43930816702166:43930816703432 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930817195584:43930817198164 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930817199543:43930817200195 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930817201228:43930817201712 26045:26051 hsa_signal_load_relaxed() = 1 -43930816704545:43930817203338 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930817202519:43930817203775 26045:26051 hsa_signal_store_screlease(, 0) = void -43930817204613:43930817205077 26045:26051 hsa_signal_destroy() = 0 -43930817649160:43930817650005 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930832154027:43930832155049 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930832161502:43930832162698 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930832164907:43930832168591 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930832175174:43930832176052 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930832176890:43930832177921 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930832188933:43930832189484 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930832641137:43930832642188 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930832644012:43930832644636 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930832645676:43930832647730 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb850) = 0 -43930832648626:43930832653468 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb810) = 0 -43930832654475:43930832656511 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930833123890:43930833126976 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930833128541:43930833129187 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930833130273:43930833130800 26045:26051 hsa_signal_load_relaxed() = 1 -43930832657289:43930833132302 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930833131651:43930833133006 26045:26051 hsa_signal_store_screlease(, 0) = void -43930833133477:43930833134153 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930833133892:43930833134490 26045:26051 hsa_signal_destroy() = 0 -43930833152227:43930833152882 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930833160341:43930833160908 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 192 -43930833161817:43930833162287 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 192 -43930833163198:43930833163807 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930833164641:43930833165002 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930833166136:43930833166744 26045:26045 hsa_signal_store_relaxed(, 192) = void -43930833168277:43930833168906 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930833175001:43930833175636 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930833177935:43930833178499 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930833179259:43930833179591 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 193 -43930833180348:43930833180678 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 192 -43930833181621:43930833181948 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930833182702:43930833183083 26045:26045 hsa_signal_store_relaxed(, 193) = void -43930833185045:43930833740846 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930833754059:43930833754871 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930833757440:43930833758445 26045:26045 hsa_signal_destroy() = 0 -43930833759643:43930833760344 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930833770842:43930833771302 26045:26045 hsa_signal_destroy() = 0 -43930833772813:43930833774128 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930833775019:43930833775474 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930833776293:43930833776866 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930833777614:43930833777987 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930833778924:43930833779354 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930833780483:43930833781118 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930833782002:43930833782718 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb8b0) = 0 -43930833783566:43930833786280 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb870) = 0 -43930833787135:43930833788127 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930834280192:43930834282672 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930834284003:43930834284664 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930834285644:43930834286122 26045:26051 hsa_signal_load_relaxed() = 1 -43930833788978:43930834287600 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930834286940:43930834288164 26045:26051 hsa_signal_store_screlease(, 0) = void -43930834289006:43930834289470 26045:26051 hsa_signal_destroy() = 0 -43930834731736:43930834732569 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930849332794:43930849333843 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930849340086:43930849341141 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930849343387:43930849346609 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930849347604:43930849348365 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930849349248:43930849349884 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930849350685:43930849351095 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930849811631:43930849812482 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930849814458:43930849815091 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930849821505:43930849823134 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb910) = 0 -43930849824157:43930849828512 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb8d0) = 0 -43930849829454:43930849831350 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930850297748:43930850300812 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930850302381:43930850303040 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930850304152:43930850304690 26045:26051 hsa_signal_load_relaxed() = 1 -43930849832310:43930850306191 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930850305540:43930850306913 26045:26051 hsa_signal_store_screlease(, 0) = void -43930850307531:43930850308212 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930850307797:43930850308359 26045:26051 hsa_signal_destroy() = 0 -43930850324104:43930850324746 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930850332186:43930850332787 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 194 -43930850333717:43930850334183 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 194 -43930850335103:43930850335723 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930850336572:43930850336929 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930850338075:43930850338682 26045:26045 hsa_signal_store_relaxed(, 194) = void -43930850340311:43930850340945 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930850347114:43930850347744 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930850349962:43930850350617 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930850351367:43930850351697 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 195 -43930850352434:43930850352780 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 194 -43930850353735:43930850354059 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930850354821:43930850355205 26045:26045 hsa_signal_store_relaxed(, 195) = void -43930850356183:43930850918474 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930850931822:43930850932604 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930850935240:43930850936288 26045:26045 hsa_signal_destroy() = 0 -43930850937450:43930850938091 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930850948581:43930850949050 26045:26045 hsa_signal_destroy() = 0 -43930850952458:43930850953759 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930850954644:43930850955115 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930850955937:43930850956504 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930850957249:43930850957622 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930850958549:43930850958987 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930850960132:43930850960779 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930850961664:43930850962520 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb970) = 0 -43930850963368:43930850965877 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb930) = 0 -43930850966725:43930850967744 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930851460241:43930851462782 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930851464120:43930851464777 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930851465725:43930851466214 26045:26051 hsa_signal_load_relaxed() = 1 -43930850968592:43930851467672 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930851467020:43930851468395 26045:26051 hsa_signal_store_screlease(, 0) = void -43930851469240:43930851469699 26045:26051 hsa_signal_destroy() = 0 -43930851910007:43930851910803 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930866543339:43930866544408 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930866550199:43930866551393 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930866553300:43930866556284 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930866557398:43930866558140 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930866558967:43930866559635 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930866560420:43930866560890 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930867028092:43930867028846 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930867030690:43930867031317 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930867032532:43930867034072 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eb9d0) = 0 -43930867035091:43930867039275 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb990) = 0 -43930867040263:43930867042240 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930867509801:43930867513108 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930867514585:43930867515227 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930867521076:43930867521608 26045:26051 hsa_signal_load_relaxed() = 1 -43930867043108:43930867523103 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930867522470:43930867523868 26045:26051 hsa_signal_store_screlease(, 0) = void -43930867524473:43930867525152 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930867524751:43930867525389 26045:26051 hsa_signal_destroy() = 0 -43930867541713:43930867542368 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930867549953:43930867550583 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 196 -43930867551465:43930867551936 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 196 -43930867552901:43930867553506 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930867554338:43930867554697 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930867555810:43930867556412 26045:26045 hsa_signal_store_relaxed(, 196) = void -43930867557988:43930867558619 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930867564516:43930867565148 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930867567505:43930867568134 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930867568900:43930867569236 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 197 -43930867569988:43930867570336 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 196 -43930867571267:43930867571587 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930867572356:43930867572740 26045:26045 hsa_signal_store_relaxed(, 197) = void -43930867573713:43930868131529 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930868145805:43930868146633 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930868149609:43930868150669 26045:26045 hsa_signal_destroy() = 0 -43930868161325:43930868161769 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930868162744:43930868163163 26045:26045 hsa_signal_destroy() = 0 -43930868164599:43930868166005 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930868166927:43930868167427 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930868168268:43930868168868 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930868169854:43930868170250 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930868171236:43930868171706 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930868175794:43930868176493 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930868177451:43930868178280 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eba30) = 0 -43930868179173:43930868182096 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eb9f0) = 0 -43930868182977:43930868184214 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930868637198:43930868639805 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930868641175:43930868641862 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930868642888:43930868643400 26045:26051 hsa_signal_load_relaxed() = 1 -43930868185112:43930868644857 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930868644249:43930868645600 26045:26051 hsa_signal_store_screlease(, 0) = void -43930868646498:43930868646979 26045:26051 hsa_signal_destroy() = 0 -43930869089420:43930869090188 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930883713016:43930883714116 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930883720278:43930883721400 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930883723484:43930883726142 26045:26045 hsa_amd_pointer_info(0x903200000, 0x7fffcdc387d0, 0, , 0) = 0 -43930883727267:43930883727974 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930883728816:43930883729545 26045:26045 hsa_amd_pointer_info(0x215b170, 0x7fffcdc38530, 0, , 0) = 0 -43930883730324:43930883730728 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930884181728:43930884182606 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930884184895:43930884185522 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930884186777:43930884188668 26045:26045 hsa_signal_create(1, , 0, 0x7f15277eba90) = 0 -43930884189764:43930884194590 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277eba50) = 0 -43930884195597:43930884197509 26045:26045 hsa_amd_memory_async_copy(0x903200000, , 0x904200000, , , , 0, ) = 0 -43930884664865:43930884667986 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930884669488:43930884670146 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930884671321:43930884671857 26045:26051 hsa_signal_load_relaxed() = 1 -43930884198389:43930884673427 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930884672752:43930884674161 26045:26051 hsa_signal_store_screlease(, 0) = void -43930884674703:43930884675442 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930884675111:43930884675748 26045:26051 hsa_signal_destroy() = 0 -43930884692652:43930884693293 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930884701303:43930884701976 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 198 -43930884702862:43930884703595 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 198 -43930884704556:43930884705174 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc380e8) = 0 -43930884706017:43930884706388 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930884707535:43930884708155 26045:26045 hsa_signal_store_relaxed(, 198) = void -43930884709760:43930884710388 26045:26045 hsa_system_get_info(2, 0x7fffcdc38420) = 0 -43930884716875:43930884717507 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930884719880:43930884720522 26045:26045 hsa_signal_create(1, , 0, 0x7fffcdc38270) = 0 -43930884721280:43930884721617 26045:26045 hsa_queue_load_write_index_relaxed(0x3c2a000) = 199 -43930884722358:43930884722691 26045:26045 hsa_queue_load_read_index_scacquire(0x3c2a000) = 198 -43930884723657:43930884723981 26045:26045 hsa_queue_store_write_index_relaxed(0x3c2a000, ) = void -43930884724735:43930884725116 26045:26045 hsa_signal_store_relaxed(, 199) = void -43930884726052:43930885276478 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930885290900:43930885291757 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930885294439:43930885295490 26045:26045 hsa_signal_destroy() = 0 -43930885306292:43930885306782 26045:26045 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43930885307804:43930885308279 26045:26045 hsa_signal_destroy() = 0 -43930885309720:43930885311121 26045:26045 hsa_amd_pointer_info(0x903a00000, 0x7fffcdc387a0, 0, , 0) = 0 -43930885312048:43930885312542 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38600) = 0 -43930885313377:43930885314023 26045:26045 hsa_amd_pointer_info(0x255b180, 0x7fffcdc38530, 0, , 0) = 0 -43930885314810:43930885315204 26045:26045 hsa_agent_get_info(, 17, 0x7fffcdc38524) = 0 -43930885316227:43930885316688 26045:26045 hsa_signal_silent_store_relaxed(, 1) = void -43930885317885:43930885318559 26045:26045 hsa_system_get_info(2, 0x7fffcdc380e8) = 0 -43930885319488:43930885320515 26045:26045 hsa_signal_create(1, , 0, 0x7f15277ebaf0) = 0 -43930885321404:43930885323970 26045:26045 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f15277ebab0) = 0 -43930885324862:43930885325965 26045:26045 hsa_amd_memory_async_copy(0x904200000, , 0x903a00000, , , , 0, ) = 0 -43930885778413:43930885780886 26045:26051 hsa_amd_profiling_get_async_copy_time(, 0x7f15277e5ac0) = 0 -43930885784299:43930885785000 26045:26051 hsa_system_get_info(2, 0x7f15277e5a28) = 0 -43930885786014:43930885786523 26045:26051 hsa_signal_load_relaxed() = 1 -43930885326868:43930885787958 26045:26045 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43930885787376:43930885788701 26045:26051 hsa_signal_store_screlease(, 0) = void -43930885789571:43930885790057 26045:26051 hsa_signal_destroy() = 0 -43930886236287:43930886237037 26045:26045 hsa_system_get_info(2, 0x7fffcdc385f0) = 0 -43930900876627:43930900877694 26045:26045 hsa_system_get_info(2, 0x7fffcdc385c0) = 0 -43930900900578:43930900901377 26045:26045 hsa_signal_load_scacquire() = 0 -43930900904849:43930900954068 26045:26045 hsa_amd_memory_pool_free(0x903200000) = 0 -43930900959303:43930900959949 26045:26045 hsa_system_get_info(2, 0x7fffcdc385c0) = 0 -43930900963250:43930900963872 26045:26045 hsa_system_get_info(2, 0x7fffcdc385c0) = 0 -43930900965827:43930900966275 26045:26045 hsa_signal_load_scacquire() = 0 -43930900967345:43930900979982 26045:26045 hsa_amd_memory_pool_free(0x903a00000) = 0 -43930900981956:43930900982600 26045:26045 hsa_system_get_info(2, 0x7fffcdc385c0) = 0 -43930900992150:43930901231079 26045:26045 hsa_memory_free(0x904200000) = 0 -43930901242424:43930901257455 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901258660:43930901260807 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901261981:43930901263956 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901265103:43930901266987 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901268025:43930901269897 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901271209:43930901287661 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901289066:43930901291065 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901292187:43930901294080 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901295324:43930901310566 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901311824:43930901313632 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901314684:43930901316553 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901317986:43930901319851 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901320976:43930901322856 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901325410:43930901327354 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901331388:43930901333602 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901334994:43930901336924 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901338016:43930901339898 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901341282:43930901343175 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901344244:43930901346491 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901347522:43930901349474 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901350739:43930901352606 26045:26045 hsa_code_object_reader_destroy() = 0 -43930901353799:43930901355657 26045:26045 hsa_code_object_reader_destroy() = 0 -43928832193607 26045:26045 0:"before hipLaunchKernel" -43928832254079 26045:26045 1:"hipLaunchKernel" -43929124521706 26045:26045 0:"after hipLaunchKernel" -43929124523355 26045:26045 1:"hipMemcpy" -43929127425092 26045:26045 2:"" -43929127430877 26045:26045 2:"" -43929142896327 26045:26045 0:"before hipLaunchKernel" -43929142897888 26045:26045 1:"hipLaunchKernel" -43929142933064 26045:26045 0:"after hipLaunchKernel" -43929142934002 26045:26045 1:"hipMemcpy" -43929145770309 26045:26045 2:"" -43929145772193 26045:26045 2:"" -43929161272883 26045:26045 0:"before hipLaunchKernel" -43929161274321 26045:26045 1:"hipLaunchKernel" -43929161301880 26045:26045 0:"after hipLaunchKernel" -43929161302792 26045:26045 1:"hipMemcpy" -43929164151033 26045:26045 2:"" -43929164152709 26045:26045 2:"" -43929179625675 26045:26045 0:"before hipLaunchKernel" -43929179627384 26045:26045 1:"hipLaunchKernel" -43929179653473 26045:26045 0:"after hipLaunchKernel" -43929179654404 26045:26045 1:"hipMemcpy" -43929182558700 26045:26045 2:"" -43929182560875 26045:26045 2:"" -43929198157220 26045:26045 0:"before hipLaunchKernel" -43929198158716 26045:26045 1:"hipLaunchKernel" -43929198190235 26045:26045 0:"after hipLaunchKernel" -43929198191170 26045:26045 1:"hipMemcpy" -43929201093127 26045:26045 2:"" -43929201095060 26045:26045 2:"" -43929216711146 26045:26045 0:"before hipLaunchKernel" -43929216712762 26045:26045 1:"hipLaunchKernel" -43929216742381 26045:26045 0:"after hipLaunchKernel" -43929216743300 26045:26045 1:"hipMemcpy" -43929219646747 26045:26045 2:"" -43929219648786 26045:26045 2:"" -43929235194800 26045:26045 0:"before hipLaunchKernel" -43929235196446 26045:26045 1:"hipLaunchKernel" -43929235226447 26045:26045 0:"after hipLaunchKernel" -43929235227595 26045:26045 1:"hipMemcpy" -43929238133106 26045:26045 2:"" -43929238134957 26045:26045 2:"" -43929253704257 26045:26045 0:"before hipLaunchKernel" -43929253705836 26045:26045 1:"hipLaunchKernel" -43929253740496 26045:26045 0:"after hipLaunchKernel" -43929253741459 26045:26045 1:"hipMemcpy" -43929256644851 26045:26045 2:"" -43929256646907 26045:26045 2:"" -43929272233006 26045:26045 0:"before hipLaunchKernel" -43929272234772 26045:26045 1:"hipLaunchKernel" -43929272265430 26045:26045 0:"after hipLaunchKernel" -43929272266366 26045:26045 1:"hipMemcpy" -43929275175881 26045:26045 2:"" -43929275177993 26045:26045 2:"" -43929290795395 26045:26045 0:"before hipLaunchKernel" -43929290796887 26045:26045 1:"hipLaunchKernel" -43929290827113 26045:26045 0:"after hipLaunchKernel" -43929290828070 26045:26045 1:"hipMemcpy" -43929293735628 26045:26045 2:"" -43929293737757 26045:26045 2:"" -43929309319919 26045:26045 0:"before hipLaunchKernel" -43929309321609 26045:26045 1:"hipLaunchKernel" -43929309353699 26045:26045 0:"after hipLaunchKernel" -43929309354671 26045:26045 1:"hipMemcpy" -43929312251687 26045:26045 2:"" -43929312253280 26045:26045 2:"" -43929327884128 26045:26045 0:"before hipLaunchKernel" -43929327885569 26045:26045 1:"hipLaunchKernel" -43929327911714 26045:26045 0:"after hipLaunchKernel" -43929327912722 26045:26045 1:"hipMemcpy" -43929330818254 26045:26045 2:"" -43929330820334 26045:26045 2:"" -43929346422291 26045:26045 0:"before hipLaunchKernel" -43929346423844 26045:26045 1:"hipLaunchKernel" -43929346458518 26045:26045 0:"after hipLaunchKernel" -43929346459504 26045:26045 1:"hipMemcpy" -43929349366693 26045:26045 2:"" -43929349369028 26045:26045 2:"" -43929364951532 26045:26045 0:"before hipLaunchKernel" -43929364953078 26045:26045 1:"hipLaunchKernel" -43929364989197 26045:26045 0:"after hipLaunchKernel" -43929364990197 26045:26045 1:"hipMemcpy" -43929367893483 26045:26045 2:"" -43929367895604 26045:26045 2:"" -43929383535687 26045:26045 0:"before hipLaunchKernel" -43929383537196 26045:26045 1:"hipLaunchKernel" -43929383567713 26045:26045 0:"after hipLaunchKernel" -43929383568677 26045:26045 1:"hipMemcpy" -43929386470015 26045:26045 2:"" -43929386472123 26045:26045 2:"" -43929402073281 26045:26045 0:"before hipLaunchKernel" -43929402074756 26045:26045 1:"hipLaunchKernel" -43929402106471 26045:26045 0:"after hipLaunchKernel" -43929402107560 26045:26045 1:"hipMemcpy" -43929403671863 26045:26045 2:"" -43929403673824 26045:26045 2:"" -43929419273645 26045:26045 0:"before hipLaunchKernel" -43929419275165 26045:26045 1:"hipLaunchKernel" -43929419305590 26045:26045 0:"after hipLaunchKernel" -43929419306573 26045:26045 1:"hipMemcpy" -43929420885361 26045:26045 2:"" -43929420887529 26045:26045 2:"" -43929436479739 26045:26045 0:"before hipLaunchKernel" -43929436484340 26045:26045 1:"hipLaunchKernel" -43929436514902 26045:26045 0:"after hipLaunchKernel" -43929436515829 26045:26045 1:"hipMemcpy" -43929438082158 26045:26045 2:"" -43929438084328 26045:26045 2:"" -43929453741570 26045:26045 0:"before hipLaunchKernel" -43929453743125 26045:26045 1:"hipLaunchKernel" -43929453777848 26045:26045 0:"after hipLaunchKernel" -43929453778818 26045:26045 1:"hipMemcpy" -43929455346736 26045:26045 2:"" -43929455348833 26045:26045 2:"" -43929470969868 26045:26045 0:"before hipLaunchKernel" -43929470971374 26045:26045 1:"hipLaunchKernel" -43929471007008 26045:26045 0:"after hipLaunchKernel" -43929471007981 26045:26045 1:"hipMemcpy" -43929472569751 26045:26045 2:"" -43929472571969 26045:26045 2:"" -43929488168118 26045:26045 0:"before hipLaunchKernel" -43929488169673 26045:26045 1:"hipLaunchKernel" -43929488200412 26045:26045 0:"after hipLaunchKernel" -43929488201367 26045:26045 1:"hipMemcpy" -43929489770585 26045:26045 2:"" -43929489772702 26045:26045 2:"" -43929505392720 26045:26045 0:"before hipLaunchKernel" -43929505394401 26045:26045 1:"hipLaunchKernel" -43929505425676 26045:26045 0:"after hipLaunchKernel" -43929505426590 26045:26045 1:"hipMemcpy" -43929506983830 26045:26045 2:"" -43929506985382 26045:26045 2:"" -43929522586814 26045:26045 0:"before hipLaunchKernel" -43929522588177 26045:26045 1:"hipLaunchKernel" -43929522615542 26045:26045 0:"after hipLaunchKernel" -43929522616473 26045:26045 1:"hipMemcpy" -43929524184116 26045:26045 2:"" -43929524185475 26045:26045 2:"" -43929539822508 26045:26045 0:"before hipLaunchKernel" -43929539823866 26045:26045 1:"hipLaunchKernel" -43929539850420 26045:26045 0:"after hipLaunchKernel" -43929539851399 26045:26045 1:"hipMemcpy" -43929541403539 26045:26045 2:"" -43929541404906 26045:26045 2:"" -43929557032699 26045:26045 0:"before hipLaunchKernel" -43929557034105 26045:26045 1:"hipLaunchKernel" -43929557065634 26045:26045 0:"after hipLaunchKernel" -43929557066518 26045:26045 1:"hipMemcpy" -43929558637687 26045:26045 2:"" -43929558639733 26045:26045 2:"" -43929574274586 26045:26045 0:"before hipLaunchKernel" -43929574276149 26045:26045 1:"hipLaunchKernel" -43929574306658 26045:26045 0:"after hipLaunchKernel" -43929574307649 26045:26045 1:"hipMemcpy" -43929575873835 26045:26045 2:"" -43929575876024 26045:26045 2:"" -43929591496089 26045:26045 0:"before hipLaunchKernel" -43929591497605 26045:26045 1:"hipLaunchKernel" -43929591527628 26045:26045 0:"after hipLaunchKernel" -43929591528597 26045:26045 1:"hipMemcpy" -43929593087544 26045:26045 2:"" -43929593089687 26045:26045 2:"" -43929608735327 26045:26045 0:"before hipLaunchKernel" -43929608737014 26045:26045 1:"hipLaunchKernel" -43929608767635 26045:26045 0:"after hipLaunchKernel" -43929608768725 26045:26045 1:"hipMemcpy" -43929610286709 26045:26045 2:"" -43929610288984 26045:26045 2:"" -43929625868476 26045:26045 0:"before hipLaunchKernel" -43929625870049 26045:26045 1:"hipLaunchKernel" -43929625900726 26045:26045 0:"after hipLaunchKernel" -43929625901694 26045:26045 1:"hipMemcpy" -43929627432888 26045:26045 2:"" -43929627435056 26045:26045 2:"" -43929643007691 26045:26045 0:"before hipLaunchKernel" -43929643009222 26045:26045 1:"hipLaunchKernel" -43929643039912 26045:26045 0:"after hipLaunchKernel" -43929643040818 26045:26045 1:"hipMemcpy" -43929644566834 26045:26045 2:"" -43929644568970 26045:26045 2:"" -43929660133204 26045:26045 0:"before hipLaunchKernel" -43929660134719 26045:26045 1:"hipLaunchKernel" -43929660168831 26045:26045 0:"after hipLaunchKernel" -43929660169813 26045:26045 1:"hipMemcpy" -43929661687944 26045:26045 2:"" -43929661689400 26045:26045 2:"" -43929677246668 26045:26045 0:"before hipLaunchKernel" -43929677248146 26045:26045 1:"hipLaunchKernel" -43929677278969 26045:26045 0:"after hipLaunchKernel" -43929677279968 26045:26045 1:"hipMemcpy" -43929678792393 26045:26045 2:"" -43929678793871 26045:26045 2:"" -43929694359618 26045:26045 0:"before hipLaunchKernel" -43929694360998 26045:26045 1:"hipLaunchKernel" -43929694386733 26045:26045 0:"after hipLaunchKernel" -43929694387663 26045:26045 1:"hipMemcpy" -43929695901459 26045:26045 2:"" -43929695903058 26045:26045 2:"" -43929711475673 26045:26045 0:"before hipLaunchKernel" -43929711477249 26045:26045 1:"hipLaunchKernel" -43929711503852 26045:26045 0:"after hipLaunchKernel" -43929711504784 26045:26045 1:"hipMemcpy" -43929713046409 26045:26045 2:"" -43929713048577 26045:26045 2:"" -43929728632152 26045:26045 0:"before hipLaunchKernel" -43929728636899 26045:26045 1:"hipLaunchKernel" -43929728667974 26045:26045 0:"after hipLaunchKernel" -43929728668976 26045:26045 1:"hipMemcpy" -43929730224178 26045:26045 2:"" -43929730226321 26045:26045 2:"" -43929745858157 26045:26045 0:"before hipLaunchKernel" -43929745859610 26045:26045 1:"hipLaunchKernel" -43929745890124 26045:26045 0:"after hipLaunchKernel" -43929745891166 26045:26045 1:"hipMemcpy" -43929747459653 26045:26045 2:"" -43929747461600 26045:26045 2:"" -43929763118598 26045:26045 0:"before hipLaunchKernel" -43929763120128 26045:26045 1:"hipLaunchKernel" -43929763155687 26045:26045 0:"after hipLaunchKernel" -43929763156749 26045:26045 1:"hipMemcpy" -43929766060436 26045:26045 2:"" -43929766062851 26045:26045 2:"" -43929781652299 26045:26045 0:"before hipLaunchKernel" -43929781653799 26045:26045 1:"hipLaunchKernel" -43929781683928 26045:26045 0:"after hipLaunchKernel" -43929781684850 26045:26045 1:"hipMemcpy" -43929784588087 26045:26045 2:"" -43929784590095 26045:26045 2:"" -43929800174289 26045:26045 0:"before hipLaunchKernel" -43929800175838 26045:26045 1:"hipLaunchKernel" -43929800206730 26045:26045 0:"after hipLaunchKernel" -43929800207750 26045:26045 1:"hipMemcpy" -43929803115544 26045:26045 2:"" -43929803117559 26045:26045 2:"" -43929818741754 26045:26045 0:"before hipLaunchKernel" -43929818743345 26045:26045 1:"hipLaunchKernel" -43929818773702 26045:26045 0:"after hipLaunchKernel" -43929818774878 26045:26045 1:"hipMemcpy" -43929821684815 26045:26045 2:"" -43929821686976 26045:26045 2:"" -43929837338319 26045:26045 0:"before hipLaunchKernel" -43929837339808 26045:26045 1:"hipLaunchKernel" -43929837370789 26045:26045 0:"after hipLaunchKernel" -43929837371713 26045:26045 1:"hipMemcpy" -43929840274498 26045:26045 2:"" -43929840276625 26045:26045 2:"" -43929855819333 26045:26045 0:"before hipLaunchKernel" -43929855820808 26045:26045 1:"hipLaunchKernel" -43929855857689 26045:26045 0:"after hipLaunchKernel" -43929855858624 26045:26045 1:"hipMemcpy" -43929858766013 26045:26045 2:"" -43929858768100 26045:26045 2:"" -43929874395676 26045:26045 0:"before hipLaunchKernel" -43929874397277 26045:26045 1:"hipLaunchKernel" -43929874434179 26045:26045 0:"after hipLaunchKernel" -43929874435284 26045:26045 1:"hipMemcpy" -43929877345306 26045:26045 2:"" -43929877347256 26045:26045 2:"" -43929892979729 26045:26045 0:"before hipLaunchKernel" -43929892981260 26045:26045 1:"hipLaunchKernel" -43929893012682 26045:26045 0:"after hipLaunchKernel" -43929893013686 26045:26045 1:"hipMemcpy" -43929895904381 26045:26045 2:"" -43929895906569 26045:26045 2:"" -43929911483586 26045:26045 0:"before hipLaunchKernel" -43929911485265 26045:26045 1:"hipLaunchKernel" -43929911515352 26045:26045 0:"after hipLaunchKernel" -43929911516398 26045:26045 1:"hipMemcpy" -43929914425975 26045:26045 2:"" -43929914428034 26045:26045 2:"" -43929930131890 26045:26045 0:"before hipLaunchKernel" -43929930133421 26045:26045 1:"hipLaunchKernel" -43929930164349 26045:26045 0:"after hipLaunchKernel" -43929930165349 26045:26045 1:"hipMemcpy" -43929933072634 26045:26045 2:"" -43929933074673 26045:26045 2:"" -43929948662241 26045:26045 0:"before hipLaunchKernel" -43929948663847 26045:26045 1:"hipLaunchKernel" -43929948694263 26045:26045 0:"after hipLaunchKernel" -43929948695229 26045:26045 1:"hipMemcpy" -43929951600521 26045:26045 2:"" -43929951602673 26045:26045 2:"" -43929967197643 26045:26045 0:"before hipLaunchKernel" -43929967199124 26045:26045 1:"hipLaunchKernel" -43929967233235 26045:26045 0:"after hipLaunchKernel" -43929967234209 26045:26045 1:"hipMemcpy" -43929970137448 26045:26045 2:"" -43929970139612 26045:26045 2:"" -43929985785961 26045:26045 0:"before hipLaunchKernel" -43929985787490 26045:26045 1:"hipLaunchKernel" -43929985823835 26045:26045 0:"after hipLaunchKernel" -43929985824825 26045:26045 1:"hipMemcpy" -43929988725928 26045:26045 2:"" -43929988728283 26045:26045 2:"" -43930004349887 26045:26045 0:"before hipLaunchKernel" -43930004351386 26045:26045 1:"hipLaunchKernel" -43930004382219 26045:26045 0:"after hipLaunchKernel" -43930004383291 26045:26045 1:"hipMemcpy" -43930007280993 26045:26045 2:"" -43930007283345 26045:26045 2:"" -43930022896173 26045:26045 0:"before hipLaunchKernel" -43930022897734 26045:26045 1:"hipLaunchKernel" -43930022927729 26045:26045 0:"after hipLaunchKernel" -43930022928780 26045:26045 1:"hipMemcpy" -43930024459209 26045:26045 2:"" -43930024461258 26045:26045 2:"" -43930040069665 26045:26045 0:"before hipLaunchKernel" -43930040072294 26045:26045 1:"hipLaunchKernel" -43930040111698 26045:26045 0:"after hipLaunchKernel" -43930040112679 26045:26045 1:"hipMemcpy" -43930041644042 26045:26045 2:"" -43930041646001 26045:26045 2:"" -43930057260250 26045:26045 0:"before hipLaunchKernel" -43930057261700 26045:26045 1:"hipLaunchKernel" -43930057292448 26045:26045 0:"after hipLaunchKernel" -43930057293488 26045:26045 1:"hipMemcpy" -43930058825865 26045:26045 2:"" -43930058828078 26045:26045 2:"" -43930074407587 26045:26045 0:"before hipLaunchKernel" -43930074409118 26045:26045 1:"hipLaunchKernel" -43930074441274 26045:26045 0:"after hipLaunchKernel" -43930074442217 26045:26045 1:"hipMemcpy" -43930075966817 26045:26045 2:"" -43930075968848 26045:26045 2:"" -43930091553203 26045:26045 0:"before hipLaunchKernel" -43930091554719 26045:26045 1:"hipLaunchKernel" -43930091589521 26045:26045 0:"after hipLaunchKernel" -43930091590505 26045:26045 1:"hipMemcpy" -43930093155690 26045:26045 2:"" -43930093157814 26045:26045 2:"" -43930108754327 26045:26045 0:"before hipLaunchKernel" -43930108755859 26045:26045 1:"hipLaunchKernel" -43930108786925 26045:26045 0:"after hipLaunchKernel" -43930108787985 26045:26045 1:"hipMemcpy" -43930110349201 26045:26045 2:"" -43930110350914 26045:26045 2:"" -43930125986118 26045:26045 0:"before hipLaunchKernel" -43930125987570 26045:26045 1:"hipLaunchKernel" -43930126014238 26045:26045 0:"after hipLaunchKernel" -43930126015132 26045:26045 1:"hipMemcpy" -43930127545043 26045:26045 2:"" -43930127546528 26045:26045 2:"" -43930143173713 26045:26045 0:"before hipLaunchKernel" -43930143175221 26045:26045 1:"hipLaunchKernel" -43930143201136 26045:26045 0:"after hipLaunchKernel" -43930143202010 26045:26045 1:"hipMemcpy" -43930144772462 26045:26045 2:"" -43930144773826 26045:26045 2:"" -43930160396876 26045:26045 0:"before hipLaunchKernel" -43930160398282 26045:26045 1:"hipLaunchKernel" -43930160425391 26045:26045 0:"after hipLaunchKernel" -43930160426311 26045:26045 1:"hipMemcpy" -43930161977584 26045:26045 2:"" -43930161979129 26045:26045 2:"" -43930177570521 26045:26045 0:"before hipLaunchKernel" -43930177572023 26045:26045 1:"hipLaunchKernel" -43930177601781 26045:26045 0:"after hipLaunchKernel" -43930177602735 26045:26045 1:"hipMemcpy" -43930179158168 26045:26045 2:"" -43930179159709 26045:26045 2:"" -43930194765029 26045:26045 0:"before hipLaunchKernel" -43930194766545 26045:26045 1:"hipLaunchKernel" -43930194792262 26045:26045 0:"after hipLaunchKernel" -43930194793140 26045:26045 1:"hipMemcpy" -43930196373084 26045:26045 2:"" -43930196374529 26045:26045 2:"" -43930212007918 26045:26045 0:"before hipLaunchKernel" -43930212019699 26045:26045 1:"hipLaunchKernel" -43930212054865 26045:26045 0:"after hipLaunchKernel" -43930212055779 26045:26045 1:"hipMemcpy" -43930213611304 26045:26045 2:"" -43930213612822 26045:26045 2:"" -43930229243573 26045:26045 0:"before hipLaunchKernel" -43930229245030 26045:26045 1:"hipLaunchKernel" -43930229269745 26045:26045 0:"after hipLaunchKernel" -43930229270692 26045:26045 1:"hipMemcpy" -43930230829751 26045:26045 2:"" -43930230831097 26045:26045 2:"" -43930246458629 26045:26045 0:"before hipLaunchKernel" -43930246460054 26045:26045 1:"hipLaunchKernel" -43930246485626 26045:26045 0:"after hipLaunchKernel" -43930246486521 26045:26045 1:"hipMemcpy" -43930248046816 26045:26045 2:"" -43930248048250 26045:26045 2:"" -43930263655993 26045:26045 0:"before hipLaunchKernel" -43930263657388 26045:26045 1:"hipLaunchKernel" -43930263682554 26045:26045 0:"after hipLaunchKernel" -43930263683542 26045:26045 1:"hipMemcpy" -43930265247741 26045:26045 2:"" -43930265249277 26045:26045 2:"" -43930280856326 26045:26045 0:"before hipLaunchKernel" -43930280857801 26045:26045 1:"hipLaunchKernel" -43930280886503 26045:26045 0:"after hipLaunchKernel" -43930280887369 26045:26045 1:"hipMemcpy" -43930282444821 26045:26045 2:"" -43930282446285 26045:26045 2:"" -43930298090321 26045:26045 0:"before hipLaunchKernel" -43930298092103 26045:26045 1:"hipLaunchKernel" -43930298116973 26045:26045 0:"after hipLaunchKernel" -43930298117938 26045:26045 1:"hipMemcpy" -43930299669308 26045:26045 2:"" -43930299670856 26045:26045 2:"" -43930315313897 26045:26045 0:"before hipLaunchKernel" -43930315315289 26045:26045 1:"hipLaunchKernel" -43930315341179 26045:26045 0:"after hipLaunchKernel" -43930315342198 26045:26045 1:"hipMemcpy" -43930316917231 26045:26045 2:"" -43930316918768 26045:26045 2:"" -43930332538930 26045:26045 0:"before hipLaunchKernel" -43930332540349 26045:26045 1:"hipLaunchKernel" -43930332566099 26045:26045 0:"after hipLaunchKernel" -43930332567031 26045:26045 1:"hipMemcpy" -43930334125323 26045:26045 2:"" -43930334126840 26045:26045 2:"" -43930349739119 26045:26045 0:"before hipLaunchKernel" -43930349740609 26045:26045 1:"hipLaunchKernel" -43930349767422 26045:26045 0:"after hipLaunchKernel" -43930349768343 26045:26045 1:"hipMemcpy" -43930351320046 26045:26045 2:"" -43930351321561 26045:26045 2:"" -43930366930647 26045:26045 0:"before hipLaunchKernel" -43930366932148 26045:26045 1:"hipLaunchKernel" -43930366957373 26045:26045 0:"after hipLaunchKernel" -43930366958376 26045:26045 1:"hipMemcpy" -43930368469307 26045:26045 2:"" -43930368470646 26045:26045 2:"" -43930384035305 26045:26045 0:"before hipLaunchKernel" -43930384036703 26045:26045 1:"hipLaunchKernel" -43930384067482 26045:26045 0:"after hipLaunchKernel" -43930384068444 26045:26045 1:"hipMemcpy" -43930386958031 26045:26045 2:"" -43930386959502 26045:26045 2:"" -43930402598865 26045:26045 0:"before hipLaunchKernel" -43930402600313 26045:26045 1:"hipLaunchKernel" -43930402625918 26045:26045 0:"after hipLaunchKernel" -43930402626806 26045:26045 1:"hipMemcpy" -43930405513676 26045:26045 2:"" -43930405515127 26045:26045 2:"" -43930421147649 26045:26045 0:"before hipLaunchKernel" -43930421149289 26045:26045 1:"hipLaunchKernel" -43930421174349 26045:26045 0:"after hipLaunchKernel" -43930421175281 26045:26045 1:"hipMemcpy" -43930424088220 26045:26045 2:"" -43930424089561 26045:26045 2:"" -43930439633513 26045:26045 0:"before hipLaunchKernel" -43930439634923 26045:26045 1:"hipLaunchKernel" -43930439659247 26045:26045 0:"after hipLaunchKernel" -43930439660284 26045:26045 1:"hipMemcpy" -43930442559969 26045:26045 2:"" -43930442562027 26045:26045 2:"" -43930458239408 26045:26045 0:"before hipLaunchKernel" -43930458241184 26045:26045 1:"hipLaunchKernel" -43930458273084 26045:26045 0:"after hipLaunchKernel" -43930458274113 26045:26045 1:"hipMemcpy" -43930461175581 26045:26045 2:"" -43930461177594 26045:26045 2:"" -43930476765487 26045:26045 0:"before hipLaunchKernel" -43930476766975 26045:26045 1:"hipLaunchKernel" -43930476800524 26045:26045 0:"after hipLaunchKernel" -43930476801447 26045:26045 1:"hipMemcpy" -43930479696832 26045:26045 2:"" -43930479698975 26045:26045 2:"" -43930495301605 26045:26045 0:"before hipLaunchKernel" -43930495303204 26045:26045 1:"hipLaunchKernel" -43930495339346 26045:26045 0:"after hipLaunchKernel" -43930495340321 26045:26045 1:"hipMemcpy" -43930498228736 26045:26045 2:"" -43930498230716 26045:26045 2:"" -43930513868153 26045:26045 0:"before hipLaunchKernel" -43930513869871 26045:26045 1:"hipLaunchKernel" -43930513900422 26045:26045 0:"after hipLaunchKernel" -43930513901489 26045:26045 1:"hipMemcpy" -43930516804990 26045:26045 2:"" -43930516807000 26045:26045 2:"" -43930532441156 26045:26045 0:"before hipLaunchKernel" -43930532442597 26045:26045 1:"hipLaunchKernel" -43930532473098 26045:26045 0:"after hipLaunchKernel" -43930532474123 26045:26045 1:"hipMemcpy" -43930535372955 26045:26045 2:"" -43930535375077 26045:26045 2:"" -43930550945455 26045:26045 0:"before hipLaunchKernel" -43930550946913 26045:26045 1:"hipLaunchKernel" -43930550977467 26045:26045 0:"after hipLaunchKernel" -43930550978505 26045:26045 1:"hipMemcpy" -43930553878320 26045:26045 2:"" -43930553880569 26045:26045 2:"" -43930569598287 26045:26045 0:"before hipLaunchKernel" -43930569599851 26045:26045 1:"hipLaunchKernel" -43930569632200 26045:26045 0:"after hipLaunchKernel" -43930569633255 26045:26045 1:"hipMemcpy" -43930572533419 26045:26045 2:"" -43930572535521 26045:26045 2:"" -43930588130200 26045:26045 0:"before hipLaunchKernel" -43930588131861 26045:26045 1:"hipLaunchKernel" -43930588167154 26045:26045 0:"after hipLaunchKernel" -43930588168196 26045:26045 1:"hipMemcpy" -43930591055062 26045:26045 2:"" -43930591057084 26045:26045 2:"" -43930606672766 26045:26045 0:"before hipLaunchKernel" -43930606674262 26045:26045 1:"hipLaunchKernel" -43930606710367 26045:26045 0:"after hipLaunchKernel" -43930606711380 26045:26045 1:"hipMemcpy" -43930609616339 26045:26045 2:"" -43930609618454 26045:26045 2:"" -43930625297702 26045:26045 0:"before hipLaunchKernel" -43930625299169 26045:26045 1:"hipLaunchKernel" -43930625329586 26045:26045 0:"after hipLaunchKernel" -43930625330516 26045:26045 1:"hipMemcpy" -43930628239004 26045:26045 2:"" -43930628241090 26045:26045 2:"" -43930643839430 26045:26045 0:"before hipLaunchKernel" -43930643841018 26045:26045 1:"hipLaunchKernel" -43930643873111 26045:26045 0:"after hipLaunchKernel" -43930643874031 26045:26045 1:"hipMemcpy" -43930645420483 26045:26045 2:"" -43930645422470 26045:26045 2:"" -43930661021277 26045:26045 0:"before hipLaunchKernel" -43930661022810 26045:26045 1:"hipLaunchKernel" -43930661052964 26045:26045 0:"after hipLaunchKernel" -43930661053971 26045:26045 1:"hipMemcpy" -43930662620991 26045:26045 2:"" -43930662623011 26045:26045 2:"" -43930678219539 26045:26045 0:"before hipLaunchKernel" -43930678221092 26045:26045 1:"hipLaunchKernel" -43930678251361 26045:26045 0:"after hipLaunchKernel" -43930678252335 26045:26045 1:"hipMemcpy" -43930679819229 26045:26045 2:"" -43930679821361 26045:26045 2:"" -43930695457540 26045:26045 0:"before hipLaunchKernel" -43930695459286 26045:26045 1:"hipLaunchKernel" -43930695493755 26045:26045 0:"after hipLaunchKernel" -43930695494754 26045:26045 1:"hipMemcpy" -43930697063945 26045:26045 2:"" -43930697066174 26045:26045 2:"" -43930712692624 26045:26045 0:"before hipLaunchKernel" -43930712694170 26045:26045 1:"hipLaunchKernel" -43930712725133 26045:26045 0:"after hipLaunchKernel" -43930712726090 26045:26045 1:"hipMemcpy" -43930714286531 26045:26045 2:"" -43930714288518 26045:26045 2:"" -43930729907089 26045:26045 0:"before hipLaunchKernel" -43930729908910 26045:26045 1:"hipLaunchKernel" -43930729938937 26045:26045 0:"after hipLaunchKernel" -43930729939904 26045:26045 1:"hipMemcpy" -43930731500834 26045:26045 2:"" -43930731502885 26045:26045 2:"" -43930747119659 26045:26045 0:"before hipLaunchKernel" -43930747121303 26045:26045 1:"hipLaunchKernel" -43930747151745 26045:26045 0:"after hipLaunchKernel" -43930747152711 26045:26045 1:"hipMemcpy" -43930748714057 26045:26045 2:"" -43930748715596 26045:26045 2:"" -43930764357498 26045:26045 0:"before hipLaunchKernel" -43930764358971 26045:26045 1:"hipLaunchKernel" -43930764386512 26045:26045 0:"after hipLaunchKernel" -43930764387399 26045:26045 1:"hipMemcpy" -43930765938730 26045:26045 2:"" -43930765940132 26045:26045 2:"" -43930781570534 26045:26045 0:"before hipLaunchKernel" -43930781572023 26045:26045 1:"hipLaunchKernel" -43930781598618 26045:26045 0:"after hipLaunchKernel" -43930781599552 26045:26045 1:"hipMemcpy" -43930783153175 26045:26045 2:"" -43930783154688 26045:26045 2:"" -43930798796107 26045:26045 0:"before hipLaunchKernel" -43930798797536 26045:26045 1:"hipLaunchKernel" -43930798827734 26045:26045 0:"after hipLaunchKernel" -43930798828764 26045:26045 1:"hipMemcpy" -43930800420626 26045:26045 2:"" -43930800422656 26045:26045 2:"" -43930816043656 26045:26045 0:"before hipLaunchKernel" -43930816045269 26045:26045 1:"hipLaunchKernel" -43930816085007 26045:26045 0:"after hipLaunchKernel" -43930816086017 26045:26045 1:"hipMemcpy" -43930817653676 26045:26045 2:"" -43930817655672 26045:26045 2:"" -43930833141637 26045:26045 0:"before hipLaunchKernel" -43930833143165 26045:26045 1:"hipLaunchKernel" -43930833172965 26045:26045 0:"after hipLaunchKernel" -43930833173875 26045:26045 1:"hipMemcpy" -43930834736065 26045:26045 2:"" -43930834738048 26045:26045 2:"" -43930850313641 26045:26045 0:"before hipLaunchKernel" -43930850315187 26045:26045 1:"hipLaunchKernel" -43930850345019 26045:26045 0:"after hipLaunchKernel" -43930850346010 26045:26045 1:"hipMemcpy" -43930851914107 26045:26045 2:"" -43930851916023 26045:26045 2:"" -43930867530577 26045:26045 0:"before hipLaunchKernel" -43930867532516 26045:26045 1:"hipLaunchKernel" -43930867562543 26045:26045 0:"after hipLaunchKernel" -43930867563504 26045:26045 1:"hipMemcpy" -43930869093564 26045:26045 2:"" -43930869095446 26045:26045 2:"" -43930884681274 26045:26045 0:"before hipLaunchKernel" -43930884682837 26045:26045 1:"hipLaunchKernel" -43930884714814 26045:26045 0:"after hipLaunchKernel" -43930884715845 26045:26045 1:"hipMemcpy" -43930886240209 26045:26045 2:"" -43930886242260 26045:26045 2:"" +3802698015872109:3802698015877849 1976:1976 hipGetDeviceProperties(props=, device=0) +3802698016927236:3802698017150008 1976:1976 hipMalloc(ptr=0x7f52745ff010, size=4194304) +3802698017153518:3802698017216919 1976:1976 hipMalloc(ptr=0x7fff4ce03de8, size=4194304) +3802698017231019:3802698295938414 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698295947234:3802698295947235 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698295979364:3802698295983824 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698295991054:3802698295991974 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=99, stream=0x7f52745ff010) +3802698296018134:3802698296587879 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x63, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698296602509:3802698296602510 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698296606839:3802698299906483 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698307983993:3802698309833567 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698309837417:3802698309837418 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698309844167:3802698309845217 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698309849057:3802698309849637 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828243d3cf81) +3802698309853207:3802698309858907 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698309866277:3802698309866278 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698309869617:3802698312826819 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698320277314:3802698322141238 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698322145528:3802698322145529 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698322153548:3802698322154328 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698322158288:3802698322158938 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282448fa1ab) +3802698322162458:3802698322167328 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698322169958:3802698322169959 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698322173018:3802698324993129 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698332380754:3802698334531110 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698334534550:3802698334534551 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698334540800:3802698334541510 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698334551800:3802698334552530 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282454ca4cb) +3802698334555890:3802698334560810 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698334564760:3802698334564761 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698334567790:3802698337579462 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698344962297:3802698346843961 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698346848081:3802698346848082 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698346854271:3802698346854911 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698346864521:3802698346865201 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282460887c1) +3802698346868811:3802698346873591 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698346876211:3802698346876212 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698346879201:3802698349813653 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698357057637:3802698358947031 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698358950141:3802698358950142 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698358956001:3802698358956751 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698358960291:3802698358960991 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828246c1303b) +3802698358964341:3802698358969841 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698358976781:3802698358976782 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698358979621:3802698361839972 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698369096256:3802698370978670 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698370982180:3802698370982181 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698370988200:3802698370989010 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698370999020:3802698370999680 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824778c8fd) +3802698371003050:3802698371007780 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698371009920:3802698371009921 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698371016520:3802698373836521 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698381104905:3802698382990919 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698382997699:3802698382997700 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698383003669:3802698383004439 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698383007889:3802698383008569 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828248301fed) +3802698383011899:3802698383017169 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698383020389:3802698383020390 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698383023739:3802698385836870 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698393238935:3802698395127329 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698395134879:3802698395134880 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698395140789:3802698395141509 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698395146559:3802698395147259 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828248e9520f) +3802698395150749:3802698395156379 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698395158779:3802698395158780 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698395161649:3802698397932679 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698405165913:3802698407055987 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698407065507:3802698407065508 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698407071567:3802698407072457 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698407076287:3802698407077007 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282499f5f09) +3802698407080547:3802698407085537 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698407087777:3802698407087778 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698407091857:3802698409927749 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698417166372:3802698419042406 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698419045756:3802698419045757 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698419051586:3802698419052446 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698419059606:3802698419060286 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824a562b9d) +3802698419063796:3802698419068827 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698419071107:3802698419071108 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698419073987:3802698421927727 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698429167221:3802698431050745 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698431060185:3802698431060186 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698431066045:3802698431066825 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698431070675:3802698431071365 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824b0d7e73) +3802698431076265:3802698431081355 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698431083615:3802698431083616 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698431087795:3802698433920236 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698441159910:3802698443038324 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698443043334:3802698443043335 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698443049364:3802698443050184 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698443054324:3802698443055014 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824bc45827) +3802698443059954:3802698443065784 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698443068164:3802698443068165 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698443071024:3802698445931526 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698453374541:3802698455528076 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698455539866:3802698455539867 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698455545726:3802698455546476 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698455550346:3802698455551126 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824c83057d) +3802698455554596:3802698455559556 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698455562336:3802698455562337 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698455566536:3802698458584219 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698465864013:3802698467748687 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698467751957:3802698467751958 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698467758067:3802698467758827 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698467763147:3802698467763857 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824d3d5daf) +3802698467772527:3802698467777437 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698467779937:3802698467779938 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698467782817:3802698470820700 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698478072834:3802698479961148 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698479964478:3802698479964479 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698479973768:3802698479974558 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698479978348:3802698479979238 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824df7c315) +3802698479982858:3802698479987858 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698479990268:3802698479990269 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698479994198:3802698482846779 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698490250744:3802698492122088 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698492125418:3802698492125419 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698492131648:3802698492132438 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698492140908:3802698492141578 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824eb14681) +3802698492146868:3802698492151538 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698492153978:3802698492153979 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698492157248:3802698494985219 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698502475875:3802698504552480 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698504556420:3802698504556421 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698504570810:3802698504571920 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698504575730:3802698504576490 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82824f6f15ee) +3802698504580300:3802698504585580 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698504587860:3802698504587861 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698504591710:3802698507587163 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698515015737:3802698516903541 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698516906771:3802698516906772 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698516912641:3802698516913441 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698516917091:3802698516917791 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282502b66b2) +3802698516928731:3802698516933721 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698516936121:3802698516936122 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698516939151:3802698519824783 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698527215468:3802698529101272 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698529104732:3802698529104733 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698529115542:3802698529116322 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698529120092:3802698529120772 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828250e599e6) +3802698529124442:3802698529129932 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698529133632:3802698529133633 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698529136502:3802698531954413 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698539405568:3802698541534783 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698541537943:3802698541537944 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698541543984:3802698541544804 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698541548744:3802698541549434 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828251a33e5a) +3802698541558404:3802698541563294 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698541565744:3802698541565745 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698541568744:3802698544541906 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698551824910:3802698553762554 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698553765904:3802698553765905 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698553774894:3802698553775814 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698553779285:3802698553779995 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282525ddf71) +3802698553783795:3802698553788265 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698553790555:3802698553790556 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698553793465:3802698556823497 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698564244132:3802698566107986 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698566111326:3802698566111327 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698566116776:3802698566117626 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698566121766:3802698566122516 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282531a3161) +3802698566126166:3802698566137386 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698566142066:3802698566142067 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698566145077:3802698568977887 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698576231231:3802698578103905 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698578108025:3802698578108026 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698578116965:3802698578117845 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698578122005:3802698578122705 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828253d14ce7) +3802698578126085:3802698578130925 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698578133315:3802698578133316 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698578136275:3802698580956066 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698588212930:3802698590069164 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698590072484:3802698590072485 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698590078364:3802698590079234 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698590083124:3802698590083814 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825487d0c9) +3802698590092514:3802698590097144 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698590100994:3802698590100995 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698590103984:3802698592940445 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698600194518:3802698602566996 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698602570766:3802698602570767 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698602577166:3802698602577936 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698602586706:3802698602587416 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828255468789) +3802698602591096:3802698602595836 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698602598126:3802698602598127 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698602601046:3802698605586558 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698612934073:3802698614811157 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698614814347:3802698614814348 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698614820047:3802698614820857 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698614824427:3802698614825077 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825601572f) +3802698614828537:3802698614833547 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698614841217:3802698614841218 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698614844207:3802698617802709 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698625065933:3802698626947857 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698626951147:3802698626951148 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698626957377:3802698626958157 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698626969947:3802698626970777 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828256ba8a2d) +3802698626974477:3802698626979477 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698626982237:3802698626982238 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698626985217:3802698629844328 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698637097002:3802698638984856 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698638991536:3802698638991537 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698638997896:3802698638998596 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698639002406:3802698639003126 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282577242d9) +3802698639006646:3802698639011626 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698639015116:3802698639015117 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698639017996:3802698641843627 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698649104331:3802698650986315 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698650989655:3802698650989656 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698651000795:3802698651001445 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698651006395:3802698651007055 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282582968af) +3802698651010945:3802698651016085 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698651018375:3802698651018376 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698651021405:3802698653842886 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698661092030:3802698662968043 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698662977334:3802698662977335 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698662984034:3802698662984694 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698662988874:3802698662989644 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828258e041f5) +3802698662993074:3802698662998784 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698663001144:3802698663001145 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698663005174:3802698665831335 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698673093789:3802698674982913 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698674986333:3802698674986334 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698674991703:3802698674992453 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698675000923:3802698675001833 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828259977af9) +3802698675005653:3802698675010413 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698675012763:3802698675012764 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698675015743:3802698677838834 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698685090387:3802698686971751 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698686980551:3802698686980552 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698686986121:3802698686986761 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698686990881:3802698686991591 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825a4e7f73) +3802698686996781:3802698687001261 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698687003541:3802698687003542 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698687007622:3802698689836403 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698697093957:3802698698978491 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698698981831:3802698698981832 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698698987451:3802698698988501 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698698992431:3802698698993131 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825b05a0f3) +3802698698999511:3802698699004481 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698699006891:3802698699006892 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698699009751:3802698701848762 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698709098846:3802698710988590 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698710995730:3802698710995731 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698711004290:3802698711005030 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698711008480:3802698711009550 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825bbcfc38) +3802698711013210:3802698711018320 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698711020970:3802698711020971 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698711024770:3802698713845771 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698721107654:3802698722990218 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698722993688:3802698722993689 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698722999508:3802698723000258 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698723003928:3802698723004618 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825c74044a) +3802698723014049:3802698723018959 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698723021439:3802698723021440 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698723024429:3802698725841450 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698733094984:3802698734981848 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698734987828:3802698734987829 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698734993758:3802698734994588 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698734998708:3802698734999418 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825d2b08d8) +3802698735002858:3802698735008788 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698735011228:3802698735011229 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698735015178:3802698737897959 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698745149532:3802698747033366 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698747036726:3802698747036727 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698747041946:3802698747042776 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698747052177:3802698747052907 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825de2dfca) +3802698747057897:3802698747063217 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698747066657:3802698747066658 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698747069927:3802698749887798 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698757146482:3802698759028576 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698759032336:3802698759032337 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698759043536:3802698759044296 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698759048306:3802698759049006 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825e9a006e) +3802698759052596:3802698759057406 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698759059966:3802698759059967 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698759064016:3802698761932187 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698769290852:3802698771179555 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698771183245:3802698771183246 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698771188785:3802698771189615 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698771193275:3802698771194015 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82825f5352ca) +3802698771204526:3802698771209356 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698771212106:3802698771212107 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698771215006:3802698774027536 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698781263910:3802698783147674 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698783151074:3802698783151075 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698783162124:3802698783162904 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698783167024:3802698783167734 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282600a0528) +3802698783171274:3802698783175904 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698783178304:3802698783178305 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698783184314:3802698785947815 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698793202959:3802698795096683 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698795100043:3802698795100044 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698795105613:3802698795106453 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698795110393:3802698795111063 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828260c0435a) +3802698795117133:3802698795123433 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698795125883:3802698795125884 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698795128793:3802698797931564 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698805165327:3802698807044071 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698807052281:3802698807052282 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698807059521:3802698807060271 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698807063661:3802698807064351 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826176a9a9) +3802698807067981:3802698807072491 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698807075211:3802698807075212 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698807078121:3802698809933983 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698817185407:3802698819064101 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698819067461:3802698819067462 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698819073331:3802698819074091 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698819077981:3802698819079001 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282622dfa63) +3802698819082351:3802698819087251 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698819094981:3802698819094982 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698819097961:3802698821923752 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698829150735:3802698831032259 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698831035469:3802698831035470 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698831046149:3802698831046859 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698831050529:3802698831051239 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828262e4aaaf) +3802698831054749:3802698831059739 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698831062159:3802698831062160 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698831065039:3802698833845180 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698841111474:3802698842991428 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698842994778:3802698842994779 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698843000878:3802698843001738 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698843005648:3802698843006338 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282639b1523) +3802698843014828:3802698843019208 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698843023028:3802698843023029 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698843026008:3802698845853349 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698853111313:3802698854993887 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698854997117:3802698854997118 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698855002497:3802698855003517 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698855012077:3802698855012797 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282645236d5) +3802698855016057:3802698855020817 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698855023077:3802698855023078 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698855025977:3802698857837238 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698865088641:3802698866964035 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698866967105:3802698866967106 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698866972615:3802698866973345 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698866976955:3802698866977825 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826508dba5) +3802698866981435:3802698866986035 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698866997146:3802698866997147 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698867000106:3802698869839287 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698877242462:3802698879128256 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698879131726:3802698879131727 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698879137336:3802698879138166 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698879148266:3802698879149336 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828265c27a2d) +3802698879153116:3802698879158216 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698879160956:3802698879160957 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698879163846:3802698881940627 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698889189470:3802698891077304 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698891083484:3802698891083485 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698891089354:3802698891090154 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698891093694:3802698891094704 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826678d957) +3802698891098244:3802698891103244 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698891106824:3802698891106825 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698891109864:3802698893939445 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698901188239:3802698903064553 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698903068033:3802698903068034 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698903073683:3802698903074353 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698903085733:3802698903086663 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282672fb652) +3802698903091353:3802698903096063 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698903098493:3802698903098494 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698903101383:3802698905925564 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698913173308:3802698915053642 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698915061782:3802698915061783 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698915069532:3802698915070312 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698915074072:3802698915074782 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828267e6c13e) +3802698915078272:3802698915083682 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698915085962:3802698915085963 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698915089812:3802698917892322 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698925126706:3802698927011150 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698927014230:3802698927014231 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698927020000:3802698927020720 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698927032440:3802698927033170 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282689d1a46) +3802698927036700:3802698927041321 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698927043761:3802698927043762 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698927046621:3802698929935752 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698937177436:3802698939061320 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698939069750:3802698939069751 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698939076310:3802698939077020 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698939080870:3802698939081570 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282695510dc) +3802698939084870:3802698939089430 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698939092990:3802698939092991 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698939097200:3802698941978711 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698949221485:3802698951101659 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698951105299:3802698951105300 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698951111219:3802698951111929 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698951118669:3802698951119389 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826a0cb3ee) +3802698951122789:3802698951127409 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698951129829:3802698951129830 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698951132689:3802698953920560 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698961171144:3802698963051518 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698963061238:3802698963061239 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698963066828:3802698963067678 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698963071128:3802698963071828 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826ac321c8) +3802698963075298:3802698963079728 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698963082038:3802698963082039 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698963086228:3802698965967039 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698973217592:3802698975091506 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698975094756:3802698975094757 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698975101086:3802698975102076 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698975106056:3802698975106726 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826b7ac2dc) +3802698975116227:3802698975121077 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698975123477:3802698975123478 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698975126387:3802698977949518 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698985301822:3802698987542479 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698987549519:3802698987549520 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698987555649:3802698987556719 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698987560349:3802698987561079 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826c38cd80) +3802698987564509:3802698987569269 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698987571619:3802698987571620 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698987575609:3802698990597572 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802698997874896:3802698999754640 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802698999758110:3802698999758111 1976:1976 MARK(name(before HIP LaunchKernel)) +3802698999764690:3802698999765410 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802698999769380:3802698999770100 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826cf31766) +3802698999780600:3802698999785940 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802698999788340:3802698999788341 1976:1976 MARK(name(after HIP LaunchKernel)) +3802698999791270:3802699002817762 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699010227657:3802699012097991 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699012101871:3802699012101872 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699012115941:3802699012116741 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699012120621:3802699012121391 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826daf8e7d) +3802699012124861:3802699012129831 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699012132251:3802699012132252 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699012136581:3802699014949362 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699022438768:3802699024580584 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699024583594:3802699024583595 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699024589914:3802699024590634 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699024594074:3802699024594744 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826e6de453) +3802699024604114:3802699024610624 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699024612984:3802699024612985 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699024615904:3802699027593276 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699035017020:3802699036905485 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699036908675:3802699036908676 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699036919985:3802699036920785 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699036924575:3802699036925295 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826f2a08ad) +3802699036928735:3802699036933725 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699036936185:3802699036936186 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699036939295:3802699039828536 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699047215001:3802699049111605 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699049114885:3802699049114886 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699049121225:3802699049122015 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699049125975:3802699049126655 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82826fe4356f) +3802699049133065:3802699049137906 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699049140196:3802699049140197 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699049143176:3802699051974467 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699059210290:3802699061571937 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699061576927:3802699061576928 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699061591027:3802699061592157 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699061599587:3802699061600227 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828270a27ca0) +3802699061603827:3802699061610067 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699061612518:3802699061612519 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699061615468:3802699064561019 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699071845474:3802699073754768 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699073760088:3802699073760089 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699073766628:3802699073767328 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699073771818:3802699073772888 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282715c4396) +3802699073777188:3802699073783848 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699073794088:3802699073794089 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699073797098:3802699076475358 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699083684022:3802699085593416 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699085598346:3802699085598347 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699085614206:3802699085614916 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699085618656:3802699085619256 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828272110afa) +3802699085622846:3802699085629626 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699085632166:3802699085632167 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699085635456:3802699088538477 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699095734401:3802699097652455 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699097658055:3802699097658056 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699097663865:3802699097664635 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699097669005:3802699097669915 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828272c8e7db) +3802699097674485:3802699097681205 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699097693135:3802699097693136 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699097696155:3802699100511266 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699107694939:3802699109619024 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699109624404:3802699109624405 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699109630474:3802699109631254 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699109643374:3802699109644064 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282737f8035) +3802699109647524:3802699109653984 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699109656704:3802699109656705 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699109659804:3802699112540796 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699119742278:3802699121659023 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699121664153:3802699121664154 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699121678353:3802699121679243 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699121682993:3802699121683643 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827437565f) +3802699121687033:3802699121693163 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699121697313:3802699121697314 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699121700263:3802699124540774 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699131738558:3802699133655522 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699133660552:3802699133660553 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699133666152:3802699133666972 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699133679242:3802699133679882 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828274ee411b) +3802699133683652:3802699133691702 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699133694372:3802699133694373 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699133697272:3802699136512213 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699143703507:3802699145635491 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699145648991:3802699145648992 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699145655871:3802699145656651 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699145660741:3802699145661361 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828275a5337f) +3802699145664821:3802699145671511 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699145675191:3802699145675192 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699145678281:3802699148510591 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699155711275:3802699157626019 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699157631109:3802699157631110 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699157637459:3802699157638229 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699157652159:3802699157652859 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282765c063f) +3802699157656110:3802699157662340 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699157665000:3802699157665001 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699157668360:3802699160511181 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699167714664:3802699169649569 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699169661229:3802699169661230 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699169667029:3802699169667729 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699169672569:3802699169673269 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828277139439) +3802699169676819:3802699169682979 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699169689049:3802699169689050 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699169691989:3802699172511900 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699179707213:3802699181741368 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699181746668:3802699181746669 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699181753328:3802699181754138 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699181767048:3802699181767888 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828277cc006d) +3802699181771528:3802699181778048 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699181780598:3802699181780599 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699181783668:3802699184623319 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699191820303:3802699193611266 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699193624326:3802699193624327 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699193631736:3802699193632546 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699193636886:3802699193637606 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827881402a) +3802699193641336:3802699193650646 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699193653116:3802699193653117 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699193657326:3802699196561538 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699203761851:3802699205681105 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699205686495:3802699205686496 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699205692475:3802699205693165 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699205705485:3802699205706195 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282793947aa) +3802699205709745:3802699205715435 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699205717865:3802699205717866 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699205721345:3802699208555366 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699215749260:3802699217667774 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699217682594:3802699217682595 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699217694364:3802699217694984 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699217698675:3802699217699385 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828279f0697a) +3802699217702705:3802699217708915 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699217711325:3802699217711326 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699217716055:3802699220641626 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699227838340:3802699229766974 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699229772334:3802699229772335 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699229778744:3802699229779444 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699229783344:3802699229784044 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827aa8ce1a) +3802699229796224:3802699229802554 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699229804964:3802699229804965 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699229807954:3802699232621635 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699239803828:3802699241725872 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699241737733:3802699241737734 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699241743593:3802699241744863 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699241749303:3802699241749993 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827b5f61ba) +3802699241753533:3802699241759763 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699241762193:3802699241762194 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699241766503:3802699244615794 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699251803527:3802699253725762 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699253730862:3802699253730863 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699253737332:3802699253738082 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699253742362:3802699253743032 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827c1661f2) +3802699253758812:3802699253764912 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699253767352:3802699253767353 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699253770612:3802699256616103 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699263811336:3802699265743710 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699265749390:3802699265749391 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699265763500:3802699265764180 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699265768430:3802699265769150 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827ccde29a) +3802699265772570:3802699265778851 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699265781451:3802699265781452 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699265786301:3802699268615402 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699275804585:3802699277731319 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699277736669:3802699277736670 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699277742800:3802699277743570 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699277747580:3802699277748250 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827d84accc) +3802699277759610:3802699277765550 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699277768230:3802699277768231 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699277771280:3802699280612001 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699287807834:3802699289726278 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699289731828:3802699289731829 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699289745528:3802699289746758 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699289750869:3802699289751579 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827e3bd3f6) +3802699289755189:3802699289761699 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699289764109:3802699289764110 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699289767699:3802699292619549 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699299873663:3802699301803658 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699301809348:3802699301809349 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699301815888:3802699301816798 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699301821108:3802699301822328 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827ef40042) +3802699301834178:3802699301841128 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699301843648:3802699301843649 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699301848508:3802699304645529 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699311829462:3802699313753087 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699313758697:3802699313758698 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699313771767:3802699313773057 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699313778777:3802699313779477 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82827faa7019) +3802699313782847:3802699313788517 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699313790917:3802699313790918 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699313794047:3802699316614648 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699323797590:3802699325714435 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699325719505:3802699325719506 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699325734505:3802699325735225 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699325739345:3802699325740035 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82828060f711) +3802699325743645:3802699325749805 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699325757445:3802699325757446 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699325760665:3802699328644537 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699335827320:3802699337749964 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699337755554:3802699337755555 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699337769104:3802699337770514 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699337774764:3802699337775474 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828281189b95) +3802699337779024:3802699337785055 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699337787655:3802699337787656 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699337790605:3802699340622336 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699347804409:3802699349737103 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699349742063:3802699349742064 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699349748683:3802699349749523 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699349753293:3802699349753943 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828281cf644b) +3802699349758393:3802699349764493 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699349774693:3802699349774694 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699349779943:3802699352616714 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699359803588:3802699361730812 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699361736152:3802699361736153 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699361742292:3802699361743052 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699361754862:3802699361755562 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282828665b9) +3802699361759102:3802699361765312 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699361767752:3802699361767753 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699361771282:3802699364613603 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699371823247:3802699373736611 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699373746211:3802699373746212 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699373752561:3802699373753271 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699373758271:3802699373758901 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282833da859) +3802699373762221:3802699373768931 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699373775911:3802699373775912 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699373779381:3802699376620982 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699383817145:3802699385737460 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699385742870:3802699385742871 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699385749530:3802699385750290 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699385761920:3802699385762530 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828283f4b769) +3802699385766130:3802699385772000 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699385774620:3802699385774621 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699385777950:3802699388612991 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699395807895:3802699397733849 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699397740909:3802699397740910 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699397747049:3802699397747799 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699397752029:3802699397752719 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828284abc862) +3802699397757249:3802699397763349 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699397776809:3802699397776810 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699397780029:3802699400617390 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699407934635:3802699409873649 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699409879209:3802699409879210 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699409885679:3802699409886629 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699409899719:3802699409900449 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828285650165) +3802699409905739:3802699409912319 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699409915079:3802699409915080 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699409918789:3802699412719650 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699420036374:3802699421950258 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699421957068:3802699421957069 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699421963598:3802699421964618 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699421969478:3802699421970138 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282861d4cbe) +3802699421973578:3802699422037899 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699422042189:3802699422042190 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699422045949:3802699424850750 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699432145324:3802699434173909 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699434179829:3802699434179830 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699434187029:3802699434187689 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699434200289:3802699434200939 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828286d7ced1) +3802699434204389:3802699434210599 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699434212959:3802699434212960 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699434216169:3802699436905809 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699444200713:3802699446173478 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699446185298:3802699446185299 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699446193848:3802699446194668 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699446198508:3802699446199208 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282878f04c9) +3802699446202728:3802699446209428 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699446211658:3802699446211659 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699446216658:3802699448885168 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699456165452:3802699458174717 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699458180397:3802699458180398 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699458187887:3802699458188587 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699458200577:3802699458201267 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd8282884607bc) +3802699458205087:3802699458211437 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699458213717:3802699458213718 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699458217267:3802699460898057 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699468180681:3802699470179786 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699470191986:3802699470191987 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699470201086:3802699470201916 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699470207526:3802699470208446 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828288fd5682) +3802699470211866:3802699470218576 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699470220906:3802699470220907 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699470226026:3802699472914856 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699480188860:3802699482175565 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699482180735:3802699482180736 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699482188645:3802699482189345 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699482193665:3802699482194535 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd828289b4401c) +3802699482209565:3802699482216395 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699482218925:3802699482218926 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699482223115:3802699484900465 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699492186919:3802699494178534 1976:1976 hipMemcpy(dst=0x7f51e6400000, src=0x7f52745ff010, sizeBytes=4194304, kind=1) +3802699494189584:3802699494189585 1976:1976 MARK(name(before HIP LaunchKernel)) +3802699494197714:3802699494198884 1976:1976 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802699494202904:3802699494203814 1976:1976 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=139996654690522, stream=0xd82828a6b8014) +3802699494207244:3802699494213974 1976:1976 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802699494216254:3802699494216255 1976:1976 MARK(name(after HIP LaunchKernel)) +3802699494221114:3802699496905484 1976:1976 hipMemcpy(dst=0x7f52741fe010, src=0x7f51e5e00000, sizeBytes=4194304, kind=2) +3802699504183397:3802699504274468 1976:1976 hipFree(ptr=0x7f51e6400000) +3802699504288208:3802699504307198 1976:1976 hipFree(ptr=0x7f51e5e00000) +3802698011201934:3802698011203914 1976:1976 hsa_amd_profiling_async_copy_enable() = 0 +3802698011441816:3802698011443066 1976:1976 hsa_system_get_major_extension_table(, , , 0x7f5383f680a0) = 0 +3802698011446786:3802698011447196 1976:1976 hsa_agent_get_info(, 17, 0x7fff4ce0388c) = 0 +3802698011450456:3802698011451166 1976:1976 hsa_amd_memory_pool_get_info(, 0, 0x7fff4ce03730) = 0 +3802698011451626:3802698011451946 1976:1976 hsa_amd_memory_pool_get_info(, 1, 0x7fff4ce03734) = 0 +3802698011452426:3802698011452726 1976:1976 hsa_amd_memory_pool_get_info(, 0, 0x7fff4ce03730) = 0 +3802698011453166:3802698011453466 1976:1976 hsa_amd_memory_pool_get_info(, 1, 0x7fff4ce03734) = 0 +3802698011453166:3802698011453916 1976:1976 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fff4ce03890) = 1 +3802698011455016:3802698011455406 1976:1976 hsa_agent_get_info(, 17, 0x7fff4ce0388c) = 0 +3802698011455016:3802698011455976 1976:1976 hsa_iterate_agents(1, 0) = 0 +3802698011458096:3802698011458426 1976:1976 hsa_agent_get_info(, 40960, 0x7fff4ce03a78) = 0 +3802698011458956:3802698011461986 1976:1976 hsa_agent_get_info(, 0, 0x7fff4ce03b50) = 0 +3802698011463226:3802698011463556 1976:1976 hsa_agent_get_info(, 19, 0x7fff4ce03a80) = 0 +3802698011465546:3802698011480886 1976:1976 hsa_isa_get_info_alt(, 0, 0x7fff4ce03a7c) = 0 +3802698011481446:3802698011485266 1976:1976 hsa_isa_get_info_alt(, 1, 0x7fff4ce039d0) = 0 +3802698011494106:3802698011494446 1976:1976 hsa_agent_get_info(, 4, 0x17ffa40) = 0 +3802698011495066:3802698011495406 1976:1976 hsa_agent_get_info(, 40976, 0x7fff4ce038d0) = 0 +3802698014769910:3802698014771410 1976:1976 hsa_agent_get_info(, 40966, 0x7fff4ce038d4) = 0 +3802698014792061:3802698014792421 1976:1976 hsa_agent_get_info(, 40969, 0x7fff4ce037b0) = 0 +3802698014792881:3802698014793181 1976:1976 hsa_agent_get_info(, 40962, 0x17ff4d4) = 0 +3802698014793571:3802698014793871 1976:1976 hsa_agent_get_info(, 40961, 0x17ff5dc) = 0 +3802698014794261:3802698014794651 1976:1976 hsa_agent_get_info(, 18, 0x7fff4ce03410) = 0 +3802698014802871:3802698014803461 1976:1976 hsa_agent_get_info(, 40963, 0x17ff548) = 0 +3802698014803871:3802698014804171 1976:1976 hsa_agent_get_info(, 40968, 0x17ff54c) = 0 +3802698014807501:3802698014808421 1976:1976 hsa_amd_agent_memory_pool_get_info(, , 1, 0x7fff4ce03304) = 0 +3802698014808871:3802698014809171 1976:1976 hsa_amd_agent_memory_pool_get_info(, , 2, 0x18274a0) = 0 +3802698014811571:3802698014812321 1976:1976 hsa_amd_memory_pool_get_info(, 0, 0x7fff4ce0325c) = 0 +3802698014812731:3802698014813011 1976:1976 hsa_amd_memory_pool_get_info(, 1, 0x7fff4ce03260) = 0 +3802698014813411:3802698014813761 1976:1976 hsa_amd_agent_memory_pool_get_info(, , 0, 0x7fff4ce03264) = 0 +3802698014815331:3802698014815641 1976:1976 hsa_amd_memory_pool_get_info(, 0, 0x7fff4ce0325c) = 0 +3802698014815331:3802698014816131 1976:1976 hsa_amd_agent_iterate_memory_pools(, 1, 0x17ff480) = 0 +3802698014816651:3802698014816951 1976:1976 hsa_amd_memory_pool_get_info(, 2, 0x7fff4ce033f0) = 0 +3802698014817361:3802698014817641 1976:1976 hsa_amd_memory_pool_get_info(, 2, 0x7fff4ce03400) = 0 +3802698014818161:3802698014818451 1976:1976 hsa_amd_memory_pool_get_info(, 6, 0x17ffa80) = 0 +3802698014819041:3802698014819341 1976:1976 hsa_agent_get_info(, 8, 0x7fff4ce033ec) = 0 +3802698014819731:3802698014820091 1976:1976 hsa_agent_get_info(, 7, 0x7fff4ce0340a) = 0 +3802698014820571:3802698014820871 1976:1976 hsa_agent_get_info(, 21, 0x7fff4ce033e8) = 0 +3802698014821261:3802698014821551 1976:1976 hsa_agent_get_info(, 22, 0x7fff4ce033ea) = 0 +3802698014828401:3802698014962122 1976:1976 hsa_agent_get_info(, 20, 0x7fff4ce037f0) = 0 +3802698014962982:3802698014963362 1976:1976 hsa_agent_get_info(, 12299, 0x17ff5b0) = 0 +3802698014963752:3802698014964052 1976:1976 hsa_agent_get_info(, 12297, 0x17ff560) = 0 +3802698014964442:3802698014964732 1976:1976 hsa_agent_get_info(, 12298, 0x17ff568) = 0 +3802698014970512:3802698014971232 1976:1976 hsa_amd_agent_iterate_memory_pools(, 1, 0x18275f0) = 1 +3802698014970512:3802698015025842 1976:1976 hsa_agent_get_info(, 12291, 0x7fff4ce03480) = 0 +3802698015026382:3802698015026862 1976:1976 hsa_agent_get_info(, 12295, 0x7fff4ce03480) = 0 +3802698015027252:3802698015027592 1976:1976 hsa_agent_get_info(, 12296, 0x7fff4ce03400) = 0 +3802698015027982:3802698015028312 1976:1976 hsa_agent_get_info(, 12290, 0x7fff4ce03480) = 0 +3802698015028782:3802698015029082 1976:1976 hsa_agent_get_info(, 6, 0x17ff7ec) = 0 +3802698015029482:3802698015029782 1976:1976 hsa_agent_get_info(, 40967, 0x17ff550) = 0 +3802698015030172:3802698015030462 1976:1976 hsa_agent_get_info(, 40970, 0x7fff4ce033f8) = 0 +3802698015030852:3802698015031152 1976:1976 hsa_agent_get_info(, 18, 0x7fff4ce03480) = 0 +3802698015031552:3802698015031832 1976:1976 hsa_agent_get_info(, 40978, 0x7fff4ce03400) = 0 +3802698015047713:3802698015087373 1976:1976 hsa_amd_memory_pool_allocate(, , , 0x7fff4ce03610) = 0 +3802698015089253:3802698015251344 1976:1976 hsa_amd_agents_allow_access(, 0x17ff460, 0, 0x7f5384db4000) = 0 +3802698015254074:3802698015454916 1976:1976 hsa_amd_memory_pool_allocate(, , , 0x7fff4ce037f0) = 0 +3802698015455576:3802698015556336 1976:1976 hsa_amd_agents_allow_access(, 0x17ff460, 0, 0x7f5274c00000) = 0 +3802698015559026:3802698015754028 1976:1976 hsa_amd_memory_pool_allocate(, , , 0x7fff4ce037f0) = 0 +3802698015756988:3802698015839818 1976:1976 hsa_amd_agents_allow_access(, 0x17ff460, 0, 0x7f5274a00000) = 0 +3802698015842078:3802698015846288 1976:1976 hsa_signal_create(1, , 0, 0x17ffa70) = 0 +3802698015862619:3802698015863069 1976:1976 hsa_system_get_info(3, 0x7fff4ce03950) = 0 +3802698015870569:3802698015871099 1976:1976 hsa_system_get_info(2, 0x7fff4ce03950) = 0 +3802698015878849:3802698015879379 1976:1976 hsa_system_get_info(2, 0x7fff4ce03940) = 0 +3802698016925756:3802698016926376 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698016930647:3802698017148068 1976:1976 hsa_amd_memory_pool_allocate(, , , 0x7fff4ce03da0) = 0 +3802698017150708:3802698017151248 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698017152518:3802698017153048 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698017154718:3802698017215619 1976:1976 hsa_amd_memory_pool_allocate(, , , 0x7fff4ce03da0) = 0 +3802698017217619:3802698017218159 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698017229979:3802698017230509 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698017503041:3802698017506901 1976:1980 hsa_agent_get_info(, 14, 0x7f5384c978ec) = 0 +3802698017519911:3802698027635946 1976:1980 hsa_queue_create(, , , 1, 0x17ff480, , , ) = 0 +3802698027648626:3802698027649546 1976:1980 hsa_amd_profiling_set_profiler_enabled(, 1) = 0 +3802698027653516:3802698027750107 1976:1980 hsa_amd_memory_pool_allocate(, , , 0x7f5384c97b00) = 0 +3802698027751077:3802698027870718 1976:1980 hsa_amd_agents_allow_access(, 0x17ff460, 0, 0x7f5375a80000) = 0 +3802698027876688:3802698027880688 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027881108:3802698027882418 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027882808:3802698027884198 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027884578:3802698027885848 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027886228:3802698027887358 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027887738:3802698027889168 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027889558:3802698027890708 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027891088:3802698027892118 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027892508:3802698027893558 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027893948:3802698027894738 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027895118:3802698027895908 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027896288:3802698027897348 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027899368:3802698027900358 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027900748:3802698027902108 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027902498:3802698027903368 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027903748:3802698027904798 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027905188:3802698027906228 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027906618:3802698027907498 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027907878:3802698027908758 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027909138:3802698027910448 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027910838:3802698027912308 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027912698:3802698027913658 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027914048:3802698027914758 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027915148:3802698027916048 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027916428:3802698027917208 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027917598:3802698027984709 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027985329:3802698027986089 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027986469:3802698027987409 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027987799:3802698027988509 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027988889:3802698027989799 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027990189:3802698027990899 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027991279:3802698027991989 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027992379:3802698027993279 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027993669:3802698027994999 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027995389:3802698027996499 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027996889:3802698027997959 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027998349:3802698027999119 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698027999509:3802698028008949 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028009369:3802698028010169 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028010549:3802698028011259 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028013009:3802698028013789 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028014179:3802698028015529 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028015909:3802698028017919 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028018319:3802698028019209 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028019589:3802698028020309 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028020699:3802698028021409 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028021799:3802698028022509 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028022899:3802698028023609 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028023989:3802698028024699 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028025089:3802698028025969 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028026359:3802698028027069 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028027449:3802698028028339 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028028729:3802698028029509 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028029889:3802698028030609 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028030989:3802698028031779 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028032159:3802698028032889 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028033279:3802698028033989 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028034379:3802698028035089 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028035469:3802698028036339 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028036729:3802698028037479 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028037869:3802698028038599 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028038989:3802698028040309 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028040709:3802698028041489 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028041869:3802698028042709 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028043099:3802698028043869 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028044259:3802698028045139 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028045519:3802698028046239 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028046629:3802698028047339 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028047729:3802698028048439 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028049999:3802698028050779 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028051169:3802698028051899 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028052289:3802698028054369 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028054769:3802698028055549 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028055939:3802698028056649 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028057039:3802698028057749 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028058139:3802698028058849 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028059229:3802698028059939 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028060329:3802698028061049 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028061429:3802698028062139 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028062529:3802698028063289 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028063669:3802698028064389 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028064769:3802698028065479 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028065869:3802698028066579 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028066959:3802698028067789 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028068169:3802698028068879 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028069269:3802698028069979 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028070359:3802698028071079 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028071459:3802698028072179 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028072559:3802698028073379 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028073769:3802698028147370 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028148160:3802698028149060 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028149440:3802698028150170 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028150550:3802698028151260 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028151650:3802698028152360 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028152750:3802698028153460 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028153840:3802698028154560 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028154940:3802698028155650 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028156930:3802698028157680 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028158070:3802698028158780 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028159160:3802698028159880 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028160270:3802698028161020 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028161400:3802698028162140 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028162520:3802698028163510 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028163900:3802698028164840 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028165220:3802698028165940 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028166320:3802698028167110 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028167500:3802698028168320 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028168700:3802698028169420 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028169800:3802698028170640 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028171030:3802698028171810 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028172200:3802698028172900 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028173290:3802698028174000 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028174390:3802698028175100 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028175480:3802698028176190 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028176580:3802698028177280 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028177670:3802698028178380 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028178760:3802698028179480 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028179860:3802698028180570 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028180950:3802698028182610 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028183010:3802698028183720 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028184110:3802698028184810 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028185200:3802698028185920 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028186300:3802698028187010 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028187400:3802698028188100 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028188490:3802698028189220 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028189600:3802698028190570 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028191930:3802698028192770 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028193160:3802698028193870 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028194260:3802698028194970 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028195350:3802698028196060 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028196450:3802698028197160 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028197540:3802698028198250 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028198640:3802698028199350 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028199730:3802698028200450 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028200830:3802698028201670 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028202060:3802698028202780 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028203160:3802698028203880 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028204270:3802698028205180 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028205570:3802698028206360 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028206750:3802698028207460 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028207850:3802698028208560 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028208950:3802698028209660 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028210040:3802698028210870 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028211260:3802698028212100 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028212480:3802698028213190 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028213580:3802698028214400 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028214780:3802698028216450 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028216850:3802698028217580 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028217970:3802698028218680 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028219070:3802698028219780 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028220160:3802698028220880 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028221260:3802698028222140 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028222520:3802698028223290 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028223680:3802698028224390 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028225500:3802698028226260 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028226650:3802698028227541 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028227921:3802698028228691 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028229081:3802698028229961 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028230351:3802698028231381 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028231761:3802698028232601 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028232981:3802698028233691 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028234081:3802698028234941 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028235331:3802698028236031 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028236421:3802698028237131 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028237511:3802698028238221 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028238601:3802698028239311 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028239701:3802698028240531 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028240921:3802698028241631 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028242021:3802698028242731 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028243111:3802698028243831 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028244211:3802698028244991 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028245371:3802698028246091 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028246471:3802698028247411 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028247791:3802698028248511 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028248901:3802698028249611 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028249991:3802698028251681 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028252081:3802698028252811 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028253191:3802698028253911 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028254301:3802698028255381 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028255771:3802698028256761 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028257141:3802698028257861 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028258241:3802698028258951 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028260231:3802698028261111 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028261491:3802698028262211 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028262591:3802698028263311 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028263691:3802698028264411 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028264791:3802698028265511 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028265891:3802698028266611 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028266991:3802698028267721 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028268101:3802698028269101 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028269481:3802698028270341 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028270731:3802698028271441 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028271821:3802698028272531 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028272921:3802698028273631 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028274021:3802698028274841 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028275221:3802698028275931 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028276321:3802698028277031 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028277421:3802698028278131 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028278511:3802698028279231 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028279621:3802698028280341 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028280721:3802698028281721 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028282111:3802698028283011 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028283401:3802698028284111 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028284501:3802698028286141 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028286531:3802698028287261 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028287641:3802698028288421 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028288811:3802698028289521 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028289901:3802698028290611 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028291001:3802698028291841 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028292231:3802698028292941 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028293321:3802698028294201 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028297131:3802698028297891 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028298281:3802698028299001 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028299381:3802698028300091 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028300471:3802698028301181 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028301571:3802698028302281 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028302661:3802698028303371 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028303761:3802698028378272 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028378862:3802698028379742 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028380122:3802698028380912 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028381302:3802698028382012 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028382392:3802698028383102 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028383482:3802698028384202 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028384592:3802698028385472 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028385852:3802698028386562 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028386952:3802698028387672 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028388052:3802698028388772 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028389162:3802698028389872 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028390252:3802698028390972 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028391362:3802698028392072 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028392452:3802698028393172 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028393552:3802698028394262 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028394642:3802698028395362 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028395742:3802698028396462 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028396842:3802698028397552 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028397942:3802698028398652 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028399042:3802698028399752 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028400132:3802698028400862 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028401252:3802698028402152 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028403662:3802698028404702 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028405092:3802698028405902 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028406282:3802698028407002 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028407392:3802698028408102 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028408482:3802698028410342 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028410742:3802698028411512 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028411892:3802698028412752 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028413132:3802698028413852 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028414232:3802698028414952 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028415332:3802698028416052 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028416432:3802698028417152 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028417542:3802698028418252 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028418642:3802698028419352 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028419742:3802698028420452 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028420842:3802698028421802 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028422192:3802698028423052 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028423442:3802698028424152 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028424542:3802698028425252 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028425642:3802698028426362 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028426742:3802698028427572 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028427952:3802698028428662 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028429052:3802698028429762 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028430152:3802698028430992 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028431372:3802698028432082 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028432472:3802698028433182 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028433572:3802698028434282 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028434672:3802698028435382 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028435772:3802698028436492 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028436882:3802698028438172 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028439432:3802698028440432 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028440822:3802698028441652 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028442042:3802698028442762 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028443152:3802698028444132 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028444522:3802698028446282 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028446682:3802698028447392 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028447782:3802698028448492 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028448872:3802698028449762 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028450142:3802698028450852 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028451242:3802698028451952 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028452332:3802698028453102 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028453482:3802698028454322 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028454712:3802698028455532 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028455922:3802698028456722 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028457102:3802698028457812 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028458202:3802698028458912 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028459302:3802698028460012 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028460402:3802698028461242 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028461622:3802698028462332 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028462722:3802698028463432 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028463812:3802698028464522 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028464912:3802698028465692 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028466072:3802698028466782 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028467172:3802698028468052 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028468442:3802698028469152 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028469532:3802698028470312 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028470692:3802698028471402 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028471792:3802698028472502 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028474592:3802698028475342 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028475732:3802698028476472 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028476862:3802698028477572 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028477962:3802698028479512 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028479892:3802698028481752 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028482142:3802698028483182 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028483572:3802698028484422 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028484812:3802698028485702 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028486092:3802698028487072 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028487452:3802698028488532 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028488922:3802698028490032 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028490422:3802698028491192 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028491582:3802698028492292 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028492672:3802698028493392 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028493782:3802698028494492 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028494872:3802698028495652 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028496042:3802698028496762 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028497142:3802698028497852 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028498242:3802698028498952 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028499342:3802698028500112 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028500502:3802698028501212 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028501592:3802698028502592 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028502982:3802698028503823 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028504203:3802698028504913 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028505303:3802698028506013 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028506393:3802698028507253 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028507633:3802698028508343 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028508733:3802698028509443 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028509823:3802698028510533 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028511743:3802698028512503 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028512893:3802698028513603 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028513993:3802698028514703 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028515083:3802698028515793 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028516173:3802698028517663 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028518053:3802698028518763 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028519153:3802698028519863 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028520243:3802698028520953 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028521343:3802698028522063 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028522453:3802698028523173 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028523553:3802698028524633 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028525013:3802698028526003 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028526383:3802698028527093 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028527483:3802698028528183 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028528573:3802698028529333 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028529723:3802698028530423 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028530813:3802698028531623 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028532013:3802698028532833 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028533213:3802698028533923 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028534303:3802698028535023 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028535403:3802698028536123 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028536513:3802698028537213 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028537603:3802698028538313 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028538693:3802698028539453 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028539833:3802698028540543 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028540923:3802698028541633 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028542023:3802698028542733 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028543113:3802698028543823 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028545123:3802698028545863 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028546253:3802698028546963 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028547353:3802698028548053 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028548443:3802698028549153 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028549533:3802698028551013 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028551403:3802698028552123 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028552513:3802698028553223 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028553603:3802698028554313 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028554693:3802698028555413 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028555803:3802698028556513 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028556893:3802698028557603 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028557993:3802698028558693 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028559083:3802698028559793 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028560183:3802698028560883 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028561273:3802698028561983 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028562363:3802698028563083 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028563463:3802698028564173 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028564563:3802698028565273 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028565653:3802698028566363 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028566753:3802698028567473 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028567863:3802698028568703 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028569083:3802698028570313 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028570703:3802698028571573 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028571963:3802698028572843 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028573233:3802698028574073 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028574463:3802698028575163 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028575553:3802698028576323 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028576713:3802698028577433 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028577813:3802698028578863 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028580093:3802698028580843 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028581223:3802698028582053 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028582443:3802698028583673 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028584053:3802698028585573 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028585963:3802698028586713 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028587103:3802698028587823 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028588213:3802698028588923 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028589303:3802698028590013 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028590403:3802698028591113 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028591493:3802698028592213 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028592593:3802698028593393 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028593783:3802698028594493 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028594873:3802698028595583 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028595973:3802698028596873 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028597253:3802698028597963 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028598353:3802698028599063 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028599443:3802698028600153 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028600543:3802698028601253 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028601633:3802698028602433 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028602813:3802698028603523 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028603913:3802698028604623 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028605003:3802698028605713 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028606103:3802698028606813 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028607193:3802698028607903 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028608293:3802698028609003 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028609383:3802698028610093 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028610483:3802698028611403 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028611783:3802698028612503 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028613783:3802698028614543 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028614933:3802698028615653 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028616043:3802698028616753 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028617133:3802698028617863 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028618243:3802698028619743 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028620133:3802698028621213 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028621603:3802698028622563 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028622953:3802698028623723 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028624113:3802698028624823 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028625213:3802698028625913 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028626303:3802698028627073 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028627463:3802698028628173 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028628553:3802698028629263 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028629653:3802698028630473 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028630863:3802698028631973 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028632363:3802698028633283 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028633673:3802698028634553 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028634943:3802698028635813 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028636193:3802698028636943 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028637323:3802698028638183 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028638563:3802698028639423 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028639813:3802698028640773 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028641153:3802698028641944 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028642334:3802698028643214 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028643604:3802698028644374 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028644754:3802698028645624 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028646014:3802698028646874 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028647254:3802698028648114 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028649314:3802698028650164 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028650544:3802698028651254 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028651644:3802698028652354 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028652734:3802698028653444 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028653834:3802698028655314 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028655704:3802698028656614 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028657004:3802698028657744 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028658124:3802698028659534 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028659924:3802698028661024 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028661414:3802698028662564 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028662954:3802698028663774 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028664164:3802698028665034 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028665424:3802698028666304 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028666684:3802698028667584 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028667974:3802698028668954 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028669344:3802698028670174 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028670564:3802698028671274 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028671664:3802698028672364 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028672754:3802698028673464 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028673854:3802698028674564 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028674944:3802698028675694 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028676084:3802698028676784 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028677174:3802698028677884 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028678274:3802698028678974 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028679364:3802698028680074 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028680454:3802698028681164 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028681554:3802698028682264 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028682654:3802698028683354 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028683744:3802698028684454 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028685734:3802698028686634 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028687024:3802698028687744 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028688134:3802698028688844 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028689224:3802698028689934 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028690324:3802698028691824 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028692214:3802698028692934 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028693324:3802698028780545 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028781185:3802698028781975 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028782365:3802698028783075 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028783455:3802698028784175 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028784565:3802698028785265 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028785655:3802698028786365 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028786755:3802698028787455 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028787835:3802698028788555 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028788935:3802698028789665 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028790045:3802698028790755 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028791135:3802698028791845 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028792225:3802698028792945 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028793325:3802698028794035 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028794415:3802698028795125 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028795515:3802698028796225 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028796615:3802698028797525 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028797915:3802698028798675 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028799055:3802698028799815 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028800205:3802698028801175 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028801565:3802698028802495 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028802885:3802698028803665 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028804045:3802698028804905 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028806225:3802698028806995 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028807395:3802698028808215 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028808605:3802698028809305 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028809695:3802698028810515 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028810905:3802698028811615 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028812005:3802698028812715 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028813105:3802698028813815 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028814205:3802698028815225 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028815615:3802698028816325 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028816715:3802698028817425 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028817815:3802698028818655 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028819045:3802698028819805 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028820195:3802698028820905 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028821295:3802698028822015 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028822405:3802698028823335 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028823725:3802698028825645 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028826045:3802698028826795 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028827185:3802698028827905 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028828295:3802698028829005 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028829395:3802698028830115 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028830505:3802698028831215 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028831605:3802698028832315 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028832705:3802698028833425 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028833815:3802698028834525 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028834915:3802698028835625 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028836015:3802698028836725 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028837125:3802698028837895 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028838285:3802698028839005 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028839395:3802698028840105 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028841245:3802698028842075 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028842455:3802698028843175 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028843555:3802698028844265 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028844655:3802698028845365 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028845745:3802698028846455 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028846845:3802698028847555 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028847935:3802698028848665 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028849055:3802698028849785 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028850175:3802698028851165 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028851555:3802698028852595 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028852985:3802698028853815 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028854195:3802698028855075 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028855465:3802698028856175 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028856565:3802698028857325 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028857715:3802698028858425 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028858805:3802698028860415 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028860815:3802698028861685 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028862075:3802698028862785 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028863165:3802698028863875 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028864265:3802698028864975 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028865365:3802698028866075 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028866465:3802698028867175 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028867555:3802698028868335 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028868715:3802698028869615 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028869995:3802698028870875 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028871255:3802698028872135 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028872515:3802698028873375 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028873755:3802698028874475 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028875635:3802698028876515 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028876905:3802698028877635 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028878015:3802698028878905 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028879285:3802698028880175 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028880565:3802698028881635 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028882025:3802698028882905 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028883295:3802698028884065 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028884445:3802698028885305 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028885685:3802698028886395 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028886785:3802698028887485 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028887875:3802698028888575 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028888965:3802698028889835 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028890215:3802698028891205 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028891595:3802698028892535 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028892915:3802698028893625 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028894015:3802698028896315 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028896715:3802698028897615 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028897995:3802698028898705 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028899085:3802698028899795 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028900185:3802698028901025 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028901405:3802698028902125 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028902505:3802698028903335 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028903725:3802698028904445 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028904835:3802698028906195 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028906585:3802698028907525 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028907915:3802698028908775 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028909165:3802698028910225 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028910615:3802698028911385 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028911775:3802698028912485 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028913675:3802698028914425 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028914815:3802698028915535 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028915915:3802698028916625 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028917015:3802698028917726 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028918116:3802698028918826 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028919206:3802698028919986 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028920366:3802698028921076 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028921466:3802698028922216 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028922606:3802698028923316 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028923706:3802698028924416 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028924796:3802698028925506 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028925896:3802698028926666 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028927056:3802698028927886 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028928276:3802698028928986 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028929366:3802698028930086 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028930466:3802698028931956 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028932346:3802698028933056 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028933446:3802698028934156 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028934546:3802698028935256 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028935646:3802698028936366 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028936756:3802698028937466 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028937846:3802698028938606 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028938986:3802698028939826 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028940216:3802698028940926 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028941306:3802698028942016 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028942406:3802698028943116 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028943496:3802698028944216 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028944596:3802698028945446 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028946626:3802698028947366 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028947756:3802698028948456 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028948846:3802698028949556 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028949936:3802698028950646 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028951036:3802698028951746 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028952126:3802698028952846 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028953226:3802698028953956 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028954336:3802698028955126 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028955506:3802698028956596 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028956986:3802698028957906 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028958286:3802698028959066 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028959446:3802698028960156 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028960546:3802698028961256 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028961646:3802698028962346 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028962736:3802698028963506 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028963896:3802698028965856 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028966256:3802698028967096 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028967486:3802698028968196 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028968576:3802698028969296 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028969676:3802698028970386 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028970776:3802698028971546 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028971936:3802698028972646 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028973026:3802698028973736 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028974126:3802698028974836 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028975216:3802698028975936 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028976316:3802698028977146 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028977526:3802698028978246 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028978626:3802698028979346 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028979736:3802698028980526 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028982346:3802698028983126 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028983516:3802698028984496 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028984896:3802698028985756 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028986136:3802698028986916 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028987296:3802698028988006 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028988386:3802698028989096 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028989476:3802698028990186 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028990566:3802698028991276 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028991656:3802698028992446 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028992826:3802698028993536 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028993926:3802698028994636 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028995016:3802698028995726 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028996116:3802698028996816 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028997206:3802698028997916 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028998296:3802698028999056 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698028999436:3802698029001006 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029001396:3802698029002116 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029002496:3802698029003206 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029003596:3802698029004326 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029004706:3802698029005426 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029005816:3802698029006726 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029007116:3802698029008106 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029008486:3802698029009206 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029009586:3802698029010406 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029010796:3802698029011496 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029011886:3802698029012596 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029012986:3802698029013826 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029014206:3802698029014996 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029016176:3802698029016926 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029017306:3802698029018016 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029018406:3802698029019116 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029019496:3802698029020206 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029020596:3802698029021306 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029021686:3802698029022536 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029022916:3802698029023636 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029024016:3802698029024726 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029025106:3802698029025816 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029026206:3802698029026916 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029027296:3802698029028136 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029028526:3802698029029236 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029029616:3802698029030476 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029030866:3802698029031686 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029032066:3802698029032776 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029033166:3802698029035036 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029035436:3802698029036236 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029036616:3802698029037336 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029037726:3802698029038496 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029038886:3802698029039596 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029039976:3802698029040696 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029041076:3802698029041786 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029042176:3802698029042886 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029043266:3802698029043976 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029044366:3802698029045076 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029045466:3802698029046176 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029046566:3802698029047276 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029047656:3802698029048366 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029049486:3802698029050246 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029050636:3802698029051336 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029051726:3802698029052446 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029052836:3802698029053556 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029053946:3802698029055016 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029055396:3802698029056397 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029056777:3802698029057497 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029057887:3802698029059307 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029059697:3802698029060417 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029060807:3802698029061517 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029061897:3802698029062607 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029062987:3802698029063697 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029064087:3802698029064787 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029065177:3802698029066027 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029066417:3802698029067247 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029067627:3802698029071807 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029072217:3802698029073797 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029074187:3802698029074907 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029075297:3802698029076007 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029076397:3802698029077117 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029077497:3802698029078207 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029078597:3802698029079307 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029079697:3802698029080407 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029080797:3802698029081507 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029081897:3802698029082607 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029082997:3802698029083717 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029084107:3802698029084817 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029085197:3802698029085917 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029086307:3802698029087017 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029088337:3802698029089077 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029089467:3802698029090177 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029090567:3802698029091347 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029091727:3802698029092447 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029092827:3802698029093547 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029093927:3802698029094637 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029095027:3802698029095747 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029096127:3802698029096847 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029097227:3802698029097937 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029098327:3802698029099037 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029099427:3802698029100137 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029100527:3802698029101247 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029101637:3802698029102357 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029102747:3802698029103637 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029104027:3802698029104897 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029105277:3802698029108857 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029109277:3802698029109997 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029110387:3802698029111097 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029111487:3802698029112197 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029112577:3802698029113297 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029113687:3802698029114397 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029114787:3802698029115497 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029115887:3802698029116847 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029117237:3802698029117947 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029118327:3802698029119037 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029119427:3802698029120137 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029120527:3802698029121407 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029121797:3802698029122507 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029123687:3802698029124447 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029124837:3802698029125677 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029126067:3802698029126777 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029127167:3802698029127897 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029128277:3802698029128997 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029129387:3802698029130767 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029131157:3802698029132277 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029132667:3802698029133537 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029133917:3802698029134787 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029135177:3802698029136077 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029136457:3802698029137487 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029137867:3802698029138847 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029139237:3802698029140097 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029140487:3802698029141207 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029141587:3802698029142667 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029143057:3802698029145367 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029145767:3802698029146517 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029146907:3802698029147767 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029148157:3802698029148867 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029149257:3802698029149977 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029150367:3802698029151077 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029151467:3802698029152177 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029152567:3802698029153287 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029153677:3802698029154387 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029154777:3802698029155487 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029155877:3802698029156597 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029156987:3802698029157697 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029158087:3802698029158977 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029159367:3802698029160077 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029161267:3802698029162037 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029162427:3802698029163157 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029163547:3802698029164267 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029164657:3802698029165837 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029166227:3802698029167277 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029167667:3802698029168537 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029168927:3802698029170107 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029170497:3802698029171287 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029171667:3802698029172387 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029172777:3802698029173487 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029173877:3802698029174587 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029174977:3802698029175697 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029176077:3802698029176807 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029177197:3802698029178067 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029178447:3802698029179167 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029179547:3802698029181877 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029182277:3802698029183117 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029183497:3802698029184507 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029184897:3802698029185777 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029186167:3802698029186887 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029187267:3802698029187977 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029188367:3802698029189087 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029189477:3802698029190197 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029190577:3802698029191297 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029191687:3802698029192527 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029192907:3802698029193767 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029194158:3802698029194868 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029195258:3802698029195968 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029197588:3802698029198538 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029199028:3802698029199738 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029200118:3802698029200828 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029201218:3802698029201928 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029202308:3802698029203018 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029203408:3802698029204118 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029204498:3802698029205338 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029205728:3802698029206428 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029206818:3802698029207528 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029207908:3802698029208618 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029209008:3802698029209718 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029210098:3802698029210808 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029211198:3802698029211908 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029212288:3802698029212998 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029213388:3802698029214228 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029214608:3802698029216658 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029217058:3802698029217818 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029218208:3802698029218928 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029219318:3802698029220038 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029220428:3802698029221348 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029221738:3802698029222608 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029222998:3802698029223908 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029224298:3802698029225018 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029225408:3802698029226108 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029226508:3802698029227228 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029227638:3802698029228518 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029228998:3802698029230018 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029230508:3802698029231398 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029231878:3802698029232768 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029234968:3802698029235848 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029236228:3802698029236948 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029237328:3802698029238198 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029238588:3802698029239288 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029239668:3802698029240378 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029240758:3802698029241468 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029241848:3802698029242548 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029242938:3802698029243748 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029244138:3802698029244998 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029245388:3802698029246088 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029246468:3802698029247168 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029247558:3802698029248258 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029248648:3802698029249548 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029249938:3802698029250648 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029251028:3802698029252218 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029252608:3802698029255148 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029255548:3802698029256268 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029256648:3802698029257358 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029257738:3802698029258588 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029258968:3802698029259788 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029260178:3802698029260888 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029261278:3802698029261988 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029262368:3802698029263078 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029263468:3802698029264168 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029264558:3802698029265418 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029265808:3802698029266508 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029266898:3802698029267608 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029267988:3802698029268698 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029269838:3802698029270598 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029270988:3802698029271688 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029272078:3802698029272788 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029273168:3802698029273878 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029274258:3802698029274968 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029275348:3802698029276048 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029276438:3802698029277148 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029277528:3802698029278238 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029278618:3802698029279328 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029279708:3802698029280418 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029280798:3802698029281508 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029281898:3802698029282598 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029282978:3802698029283688 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029284078:3802698029284778 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029285168:3802698029285868 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029286248:3802698029288168 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029288558:3802698029289308 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029289698:3802698029290418 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029290808:3802698029291678 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029292068:3802698029292798 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029293178:3802698029293898 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029294288:3802698029295488 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029295878:3802698029296848 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029297238:3802698029298088 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029298468:3802698029299188 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029299578:3802698029300288 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029300678:3802698029301448 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029301838:3802698029302558 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029302948:3802698029304028 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029305208:3802698029305968 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029306358:3802698029307068 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029307458:3802698029308168 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029308548:3802698029309258 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029309638:3802698029310348 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029310738:3802698029311448 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029311838:3802698029312538 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029312928:3802698029313688 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029314078:3802698029314928 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029315318:3802698029316018 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029316408:3802698029317118 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029317498:3802698029318208 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029318588:3802698029319298 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029319688:3802698029320388 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029320778:3802698029321478 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029321868:3802698029324068 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029324458:3802698029325188 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029325568:3802698029326278 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029326668:3802698029327368 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029327758:3802698029328478 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029328868:3802698029329578 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029329968:3802698029330868 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029331258:3802698029332028 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029332419:3802698029333129 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029333509:3802698029334219 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029334609:3802698029335309 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029335699:3802698029336399 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029336789:3802698029337509 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029338599:3802698029339359 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029339749:3802698029340449 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029340839:3802698029341549 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029341929:3802698029342639 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029343019:3802698029343729 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029344109:3802698029344819 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029345199:3802698029345909 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029346289:3802698029346999 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029347379:3802698029348089 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029348469:3802698029349329 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029349709:3802698029350419 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029350799:3802698029351509 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029351889:3802698029352599 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029352989:3802698029353689 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029354069:3802698029354779 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029355169:3802698029357059 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029357449:3802698029358189 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029358579:3802698029359289 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029359679:3802698029360389 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029360769:3802698029361489 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029361869:3802698029362579 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029362959:3802698029363669 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029364059:3802698029364769 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029365159:3802698029365859 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029366249:3802698029366959 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029367349:3802698029368059 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029368449:3802698029369219 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029369609:3802698029370319 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029371469:3802698029372229 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029372619:3802698029373459 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029373839:3802698029374549 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029374939:3802698029375659 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029376049:3802698029376759 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029377149:3802698029378199 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029378589:3802698029379449 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029379829:3802698029380879 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029381269:3802698029382269 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029382649:3802698029383369 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029383749:3802698029384709 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029385099:3802698029385809 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029386189:3802698029386899 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029387289:3802698029387989 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029388379:3802698029389189 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029389579:3802698029390849 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029391249:3802698029393109 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029393509:3802698029394589 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029394979:3802698029395689 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029396069:3802698029396779 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029397169:3802698029397989 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029398379:3802698029399089 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029399469:3802698029400179 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029400569:3802698029401419 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029401799:3802698029402509 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029402899:3802698029403609 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029403999:3802698029404839 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029405219:3802698029405929 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029406319:3802698029407029 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029408169:3802698029408919 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029409309:3802698029410019 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029410399:3802698029411109 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029411499:3802698029412249 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029412639:3802698029413339 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029413729:3802698029414439 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029414819:3802698029529570 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029530260:3802698029531060 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029531450:3802698029532170 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029532550:3802698029533330 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029533710:3802698029534440 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029534830:3802698029535620 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029536000:3802698029536700 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029537090:3802698029537790 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029538170:3802698029538880 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029539260:3802698029539980 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029540360:3802698029541060 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029541450:3802698029542350 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029542730:3802698029543460 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029543840:3802698029544540 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029544930:3802698029545630 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029546010:3802698029546740 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029547120:3802698029548170 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029548550:3802698029549270 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029549650:3802698029550360 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029550750:3802698029551920 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029552300:3802698029553160 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029553540:3802698029554240 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029555940:3802698029556780 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029557170:3802698029557890 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029558270:3802698029558980 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029559360:3802698029560070 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029560450:3802698029561150 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029561540:3802698029562240 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029562630:3802698029563510 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029563890:3802698029564720 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029565110:3802698029565900 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029566280:3802698029567010 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029567390:3802698029568110 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029568490:3802698029569220 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029569600:3802698029570310 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029570700:3802698029572790 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029573190:3802698029574090 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029574480:3802698029575200 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029575580:3802698029576300 1976:1980 hsa_signal_create(0, , 0, 0x7f5384c97b30) = 0 +3802698029579460:3802698029580180 1976:1980 hsa_signal_create(0, , 0, 0x7f51e002d258) = 0 +3802698290007520:3802698290018520 1976:1980 hsa_executable_create_alt(1, 0, +3802698290038750:3802698290062560 1976:1980 hsa_code_object_reader_create_from_memory(0x7f51e0405360, , 0x7f51e002e1c0) = 0 +3802698290064890:3802698290460733 1976:1980 hsa_executable_load_agent_code_object(, , , +3802698290463113:3802698290858146 1976:1980 hsa_executable_freeze(, +3802698290947497:3802698290948577 1976:1980 hsa_executable_get_symbol_by_name(, copyBuffer.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698290950177:3802698290950957 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e0393dd8) = 0 +3802698290951817:3802698290952197 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291014047:3802698291014677 1976:1980 hsa_executable_get_symbol_by_name(, copyBufferAligned.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291015107:3802698291015377 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e0421ba8) = 0 +3802698291015767:3802698291016057 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291071848:3802698291072398 1976:1980 hsa_executable_get_symbol_by_name(, copyBufferRect.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291074758:3802698291075048 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e01331b8) = 0 +3802698291075438:3802698291075728 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291130908:3802698291131448 1976:1980 hsa_executable_get_symbol_by_name(, copyBufferRectAligned.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291131868:3802698291132138 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e00c2028) = 0 +3802698291132528:3802698291132818 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291194059:3802698291194619 1976:1980 hsa_executable_get_symbol_by_name(, copyBufferToImage.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291195049:3802698291195329 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e0105848) = 0 +3802698291195709:3802698291195999 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291250829:3802698291251329 1976:1980 hsa_executable_get_symbol_by_name(, copyImage.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291251749:3802698291252029 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e00f0988) = 0 +3802698291252419:3802698291252699 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291307309:3802698291307779 1976:1980 hsa_executable_get_symbol_by_name(, copyImage1DA.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291308189:3802698291308459 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e0388338) = 0 +3802698291308849:3802698291309129 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291378050:3802698291378580 1976:1980 hsa_executable_get_symbol_by_name(, copyImageToBuffer.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291378990:3802698291379260 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e016e4c8) = 0 +3802698291379650:3802698291379930 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291438100:3802698291438580 1976:1980 hsa_executable_get_symbol_by_name(, fillBuffer.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291439000:3802698291439280 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e00d99a8) = 0 +3802698291439670:3802698291439950 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291499511:3802698291499971 1976:1980 hsa_executable_get_symbol_by_name(, fillImage.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291500401:3802698291500671 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e0411888) = 0 +3802698291501061:3802698291501341 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291540241:3802698291540681 1976:1980 hsa_executable_get_symbol_by_name(, gwsInit.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291541091:3802698291541361 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e00df238) = 0 +3802698291541751:3802698291542031 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291581561:3802698291582021 1976:1980 hsa_executable_get_symbol_by_name(, scheduler.kd, 0x7f5384c96d88, 0x7f5384c96d80) = 0 +3802698291582431:3802698291582701 1976:1980 hsa_executable_symbol_get_info(, 22, 0x7f51e04180b8) = 0 +3802698291584241:3802698291584531 1976:1980 hsa_agent_get_info(, 6, 0x7f5384c96d98) = 0 +3802698291614842:3802698291715222 1976:1980 hsa_amd_memory_lock_to_pool(0x7f51e0379000, , 0, 0, , , 0x7f51e0836f08) = 0 +3802698291716532:3802698291717872 1976:1980 hsa_signal_create(1, , 0, 0x7f5384c97b88) = 0 +3802698291720612:3802698291720922 1976:1980 hsa_system_get_info(3, 0x7f5384c97b90) = 0 +3802698291774653:3802698292041525 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698292045835:3802698292046295 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698292051125:3802698292051705 1976:1980 hsa_agent_get_info(, 17, 0x7f5384c973b4) = 0 +3802698292053185:3802698292053665 1976:1980 hsa_amd_memory_pool_get_info(, 0, 0x7f5384c97258) = 0 +3802698292054075:3802698292054365 1976:1980 hsa_amd_memory_pool_get_info(, 1, 0x7f5384c9725c) = 0 +3802698292054765:3802698292055035 1976:1980 hsa_amd_memory_pool_get_info(, 0, 0x7f5384c97258) = 0 +3802698292055425:3802698292055705 1976:1980 hsa_amd_memory_pool_get_info(, 1, 0x7f5384c9725c) = 0 +3802698292055425:3802698292056105 1976:1980 hsa_amd_agent_iterate_memory_pools(, 1, 0x7f51e035d0b0) = 1 +3802698292056965:3802698292057245 1976:1980 hsa_amd_memory_pool_get_info(, 0, 0x7f5384c97258) = 0 +3802698292057625:3802698292057895 1976:1980 hsa_amd_memory_pool_get_info(, 1, 0x7f5384c9725c) = 0 +3802698292057625:3802698292058275 1976:1980 hsa_amd_agent_iterate_memory_pools(, 1, 0x7f51e035d0c0) = 1 +3802698292059225:3802698292059565 1976:1980 hsa_agent_get_info(, 17, 0x7f5384c973b4) = 0 +3802698292060135:3802698292062875 1976:1980 hsa_agent_get_info(, 0, 0x7f51e0255904) = 0 +3802698292065225:3802698292065525 1976:1980 hsa_agent_get_info(, 6, 0x7f51e0255944) = 0 +3802698292065915:3802698292066215 1976:1980 hsa_agent_get_info(, 14, 0x7f51e0255948) = 0 +3802698292066595:3802698292066875 1976:1980 hsa_agent_get_info(, 4, 0x7f51e025594c) = 0 +3802698292067275:3802698292067565 1976:1980 hsa_agent_get_info(, 40962, 0x7f51e0255968) = 0 +3802698292067955:3802698292068245 1976:1980 hsa_agent_get_info(, 40970, 0x7f51e025596c) = 0 +3802698292068635:3802698292068915 1976:1980 hsa_agent_get_info(, 40971, 0x7f51e0255970) = 0 +3802698292069295:3802698292069575 1976:1980 hsa_agent_get_info(, 40972, 0x7f51e0255974) = 0 +3802698292069955:3802698292070255 1976:1980 hsa_agent_get_info(, 40973, 0x7f51e0255978) = 0 +3802698292071005:3802698292071285 1976:1980 hsa_amd_memory_pool_get_info(, 0, 0x7f5384c97248) = 0 +3802698292071665:3802698292071945 1976:1980 hsa_amd_memory_pool_get_info(, 1, 0x7f5384c9724c) = 0 +3802698292071665:3802698292072325 1976:1980 hsa_amd_agent_iterate_memory_pools(, 1, 0x7f51e0255958) = 1 +3802698292071665:3802698292072945 1976:1980 hsa_iterate_agents(1, 0x7f51e02889e0) = 0 +3802698292075685:3802698292186406 1976:1980 hsa_system_get_major_extension_table(, , , 0x7f51e0288a78) = 0 +3802698292187246:3802698292187566 1976:1980 hsa_system_get_major_extension_table(, , , 0x7f51e0288ac8) = 0 +3802698292188026:3802698292188316 1976:1980 hsa_system_get_info(3, 0x7f5384c975d8) = 0 +3802698292191896:3802698292192416 1976:1980 hsa_system_get_info(2, 0x7f51e016b030) = 0 +3802698292194016:3802698292194546 1976:1980 hsa_system_get_info(2, 0x7f51e016b038) = 0 +3802698292194956:3802698292195476 1976:1980 hsa_system_get_info(2, 0x7f51e016b040) = 0 +3802698292195866:3802698292196386 1976:1980 hsa_system_get_info(2, 0x7f51e016b048) = 0 +3802698292196776:3802698292197286 1976:1980 hsa_system_get_info(2, 0x7f51e016b050) = 0 +3802698292197676:3802698292198196 1976:1980 hsa_system_get_info(2, 0x7f51e016b058) = 0 +3802698292198586:3802698292199106 1976:1980 hsa_system_get_info(2, 0x7f51e016b060) = 0 +3802698292199496:3802698292200006 1976:1980 hsa_system_get_info(2, 0x7f51e016b068) = 0 +3802698292200396:3802698292200916 1976:1980 hsa_system_get_info(2, 0x7f51e016b070) = 0 +3802698292201306:3802698292201826 1976:1980 hsa_system_get_info(2, 0x7f51e016b078) = 0 +3802698292202216:3802698292202726 1976:1980 hsa_system_get_info(2, 0x7f51e016b080) = 0 +3802698292203116:3802698292203636 1976:1980 hsa_system_get_info(2, 0x7f51e016b088) = 0 +3802698292204026:3802698292204546 1976:1980 hsa_system_get_info(2, 0x7f51e016b090) = 0 +3802698292204936:3802698292205456 1976:1980 hsa_system_get_info(2, 0x7f51e016b098) = 0 +3802698292205836:3802698292206356 1976:1980 hsa_system_get_info(2, 0x7f51e016b0a0) = 0 +3802698292206746:3802698292207266 1976:1980 hsa_system_get_info(2, 0x7f51e016b0a8) = 0 +3802698292207656:3802698292208176 1976:1980 hsa_system_get_info(2, 0x7f51e016b0b0) = 0 +3802698292208556:3802698292209076 1976:1980 hsa_system_get_info(2, 0x7f51e016b0b8) = 0 +3802698292209466:3802698292210086 1976:1980 hsa_system_get_info(2, 0x7f51e016b0c0) = 0 +3802698292210566:3802698292211216 1976:1980 hsa_system_get_info(2, 0x7f51e016b0c8) = 0 +3802698292211696:3802698292212336 1976:1980 hsa_system_get_info(2, 0x7f51e016b0d0) = 0 +3802698292212826:3802698292213466 1976:1980 hsa_system_get_info(2, 0x7f51e016b0d8) = 0 +3802698292213946:3802698292214596 1976:1980 hsa_system_get_info(2, 0x7f51e016b0e0) = 0 +3802698292215076:3802698292215716 1976:1980 hsa_system_get_info(2, 0x7f51e016b0e8) = 0 +3802698292216196:3802698292216846 1976:1980 hsa_system_get_info(2, 0x7f51e016b0f0) = 0 +3802698292218406:3802698292218926 1976:1980 hsa_system_get_info(2, 0x7f51e016b0f8) = 0 +3802698292219316:3802698292219826 1976:1980 hsa_system_get_info(2, 0x7f51e016b100) = 0 +3802698292220216:3802698292220726 1976:1980 hsa_system_get_info(2, 0x7f51e016b108) = 0 +3802698292221116:3802698292221626 1976:1980 hsa_system_get_info(2, 0x7f51e016b110) = 0 +3802698292222016:3802698292222526 1976:1980 hsa_system_get_info(2, 0x7f51e016b118) = 0 +3802698292222916:3802698292223426 1976:1980 hsa_system_get_info(2, 0x7f51e016b120) = 0 +3802698292223816:3802698292224326 1976:1980 hsa_system_get_info(2, 0x7f51e016b128) = 0 +3802698292224716:3802698292225226 1976:1980 hsa_system_get_info(2, 0x7f51e016b130) = 0 +3802698292225616:3802698292226126 1976:1980 hsa_system_get_info(2, 0x7f51e016b138) = 0 +3802698292226516:3802698292227026 1976:1980 hsa_system_get_info(2, 0x7f51e016b140) = 0 +3802698292227416:3802698292227926 1976:1980 hsa_system_get_info(2, 0x7f51e016b148) = 0 +3802698292228306:3802698292228826 1976:1980 hsa_system_get_info(2, 0x7f51e016b150) = 0 +3802698292229206:3802698292229726 1976:1980 hsa_system_get_info(2, 0x7f51e016b158) = 0 +3802698292230106:3802698292230626 1976:1980 hsa_system_get_info(2, 0x7f51e016b160) = 0 +3802698292231006:3802698292231526 1976:1980 hsa_system_get_info(2, 0x7f51e016b168) = 0 +3802698292231906:3802698292232426 1976:1980 hsa_system_get_info(2, 0x7f51e016b170) = 0 +3802698292232806:3802698292233326 1976:1980 hsa_system_get_info(2, 0x7f51e016b178) = 0 +3802698292233706:3802698292234226 1976:1980 hsa_system_get_info(2, 0x7f51e016b180) = 0 +3802698292234606:3802698292235126 1976:1980 hsa_system_get_info(2, 0x7f51e016b188) = 0 +3802698292235506:3802698292236026 1976:1980 hsa_system_get_info(2, 0x7f51e016b190) = 0 +3802698292236406:3802698292236926 1976:1980 hsa_system_get_info(2, 0x7f51e016b198) = 0 +3802698292237306:3802698292237826 1976:1980 hsa_system_get_info(2, 0x7f51e016b1a0) = 0 +3802698292238206:3802698292238726 1976:1980 hsa_system_get_info(2, 0x7f51e016b1a8) = 0 +3802698292239106:3802698292239626 1976:1980 hsa_system_get_info(2, 0x7f51e016b1b0) = 0 +3802698292240006:3802698292240516 1976:1980 hsa_system_get_info(2, 0x7f51e016b1b8) = 0 +3802698292240906:3802698292241416 1976:1980 hsa_system_get_info(2, 0x7f51e016b1c0) = 0 +3802698292241806:3802698292242316 1976:1980 hsa_system_get_info(2, 0x7f51e016b1c8) = 0 +3802698292242706:3802698292243216 1976:1980 hsa_system_get_info(2, 0x7f51e016b1d0) = 0 +3802698292243606:3802698292244116 1976:1980 hsa_system_get_info(2, 0x7f51e016b1d8) = 0 +3802698292245616:3802698292246146 1976:1980 hsa_system_get_info(2, 0x7f51e016b1e0) = 0 +3802698292246536:3802698292247046 1976:1980 hsa_system_get_info(2, 0x7f51e016b1e8) = 0 +3802698292247436:3802698292247946 1976:1980 hsa_system_get_info(2, 0x7f51e016b1f0) = 0 +3802698292248336:3802698292248846 1976:1980 hsa_system_get_info(2, 0x7f51e016b1f8) = 0 +3802698292249236:3802698292249746 1976:1980 hsa_system_get_info(2, 0x7f51e016b200) = 0 +3802698292250136:3802698292250646 1976:1980 hsa_system_get_info(2, 0x7f51e016b208) = 0 +3802698292251036:3802698292251546 1976:1980 hsa_system_get_info(2, 0x7f51e016b210) = 0 +3802698292251936:3802698292252446 1976:1980 hsa_system_get_info(2, 0x7f51e016b218) = 0 +3802698292252836:3802698292253346 1976:1980 hsa_system_get_info(2, 0x7f51e016b220) = 0 +3802698292253736:3802698292254246 1976:1980 hsa_system_get_info(2, 0x7f51e016b228) = 0 +3802698292254636:3802698292255146 1976:1980 hsa_system_get_info(2, 0x7f51e016b230) = 0 +3802698292255536:3802698292256046 1976:1980 hsa_system_get_info(2, 0x7f51e016b238) = 0 +3802698292256436:3802698292256946 1976:1980 hsa_system_get_info(2, 0x7f51e016b240) = 0 +3802698292257326:3802698292257846 1976:1980 hsa_system_get_info(2, 0x7f51e016b248) = 0 +3802698292258226:3802698292258746 1976:1980 hsa_system_get_info(2, 0x7f51e016b250) = 0 +3802698292259126:3802698292259646 1976:1980 hsa_system_get_info(2, 0x7f51e016b258) = 0 +3802698292260026:3802698292260546 1976:1980 hsa_system_get_info(2, 0x7f51e016b260) = 0 +3802698292260926:3802698292261446 1976:1980 hsa_system_get_info(2, 0x7f51e016b268) = 0 +3802698292261826:3802698292262346 1976:1980 hsa_system_get_info(2, 0x7f51e016b270) = 0 +3802698292262726:3802698292263247 1976:1980 hsa_system_get_info(2, 0x7f51e016b278) = 0 +3802698292263627:3802698292264147 1976:1980 hsa_system_get_info(2, 0x7f51e016b280) = 0 +3802698292264527:3802698292265047 1976:1980 hsa_system_get_info(2, 0x7f51e016b288) = 0 +3802698292265427:3802698292265947 1976:1980 hsa_system_get_info(2, 0x7f51e016b290) = 0 +3802698292266327:3802698292266847 1976:1980 hsa_system_get_info(2, 0x7f51e016b298) = 0 +3802698292267227:3802698292267747 1976:1980 hsa_system_get_info(2, 0x7f51e016b2a0) = 0 +3802698292268127:3802698292268637 1976:1980 hsa_system_get_info(2, 0x7f51e016b2a8) = 0 +3802698292269027:3802698292269537 1976:1980 hsa_system_get_info(2, 0x7f51e016b2b0) = 0 +3802698292269927:3802698292270437 1976:1980 hsa_system_get_info(2, 0x7f51e016b2b8) = 0 +3802698292271757:3802698292272277 1976:1980 hsa_system_get_info(2, 0x7f51e016b2c0) = 0 +3802698292272667:3802698292273177 1976:1980 hsa_system_get_info(2, 0x7f51e016b2c8) = 0 +3802698292273567:3802698292274077 1976:1980 hsa_system_get_info(2, 0x7f51e016b2d0) = 0 +3802698292274467:3802698292274977 1976:1980 hsa_system_get_info(2, 0x7f51e016b2d8) = 0 +3802698292275357:3802698292275877 1976:1980 hsa_system_get_info(2, 0x7f51e016b2e0) = 0 +3802698292276257:3802698292276777 1976:1980 hsa_system_get_info(2, 0x7f51e016b2e8) = 0 +3802698292277157:3802698292277677 1976:1980 hsa_system_get_info(2, 0x7f51e016b2f0) = 0 +3802698292278057:3802698292278577 1976:1980 hsa_system_get_info(2, 0x7f51e016b2f8) = 0 +3802698292278957:3802698292279477 1976:1980 hsa_system_get_info(2, 0x7f51e016b300) = 0 +3802698292279857:3802698292280377 1976:1980 hsa_system_get_info(2, 0x7f51e016b308) = 0 +3802698292280757:3802698292281277 1976:1980 hsa_system_get_info(2, 0x7f51e016b310) = 0 +3802698292281657:3802698292282177 1976:1980 hsa_system_get_info(2, 0x7f51e016b318) = 0 +3802698292282557:3802698292283077 1976:1980 hsa_system_get_info(2, 0x7f51e016b320) = 0 +3802698292283457:3802698292283977 1976:1980 hsa_system_get_info(2, 0x7f51e016b328) = 0 +3802698292284357:3802698292284877 1976:1980 hsa_system_get_info(2, 0x7f51e016b330) = 0 +3802698292285257:3802698292285777 1976:1980 hsa_system_get_info(2, 0x7f51e016b338) = 0 +3802698292286157:3802698292286677 1976:1980 hsa_system_get_info(2, 0x7f51e016b340) = 0 +3802698292287057:3802698292287577 1976:1980 hsa_system_get_info(2, 0x7f51e016b348) = 0 +3802698292287957:3802698292288477 1976:1980 hsa_system_get_info(2, 0x7f51e016b350) = 0 +3802698292288857:3802698292289377 1976:1980 hsa_system_get_info(2, 0x7f51e016b358) = 0 +3802698292289757:3802698292290277 1976:1980 hsa_system_get_info(2, 0x7f51e016b360) = 0 +3802698292290657:3802698292291177 1976:1980 hsa_system_get_info(2, 0x7f51e016b368) = 0 +3802698292291557:3802698292292077 1976:1980 hsa_system_get_info(2, 0x7f51e016b370) = 0 +3802698292292457:3802698292292977 1976:1980 hsa_system_get_info(2, 0x7f51e016b378) = 0 +3802698292293367:3802698292293877 1976:1980 hsa_system_get_info(2, 0x7f51e016b380) = 0 +3802698292294257:3802698292294777 1976:1980 hsa_system_get_info(2, 0x7f51e016b388) = 0 +3802698292295167:3802698292295677 1976:1980 hsa_system_get_info(2, 0x7f51e016b390) = 0 +3802698292296067:3802698292296577 1976:1980 hsa_system_get_info(2, 0x7f51e016b398) = 0 +3802698292297707:3802698292298227 1976:1980 hsa_system_get_info(2, 0x7f51e016b3a0) = 0 +3802698292298617:3802698292299127 1976:1980 hsa_system_get_info(2, 0x7f51e016b3a8) = 0 +3802698292299517:3802698292300027 1976:1980 hsa_system_get_info(2, 0x7f51e016b3b0) = 0 +3802698292300417:3802698292300927 1976:1980 hsa_system_get_info(2, 0x7f51e016b3b8) = 0 +3802698292301317:3802698292301827 1976:1980 hsa_system_get_info(2, 0x7f51e016b3c0) = 0 +3802698292302217:3802698292302727 1976:1980 hsa_system_get_info(2, 0x7f51e016b3c8) = 0 +3802698292303117:3802698292303627 1976:1980 hsa_system_get_info(2, 0x7f51e016b3d0) = 0 +3802698292304017:3802698292304527 1976:1980 hsa_system_get_info(2, 0x7f51e016b3d8) = 0 +3802698292304917:3802698292305427 1976:1980 hsa_system_get_info(2, 0x7f51e016b3e0) = 0 +3802698292305817:3802698292306327 1976:1980 hsa_system_get_info(2, 0x7f51e016b3e8) = 0 +3802698292306717:3802698292307227 1976:1980 hsa_system_get_info(2, 0x7f51e016b3f0) = 0 +3802698292307617:3802698292308127 1976:1980 hsa_system_get_info(2, 0x7f51e016b3f8) = 0 +3802698292308517:3802698292309027 1976:1980 hsa_system_get_info(2, 0x7f51e016b400) = 0 +3802698292309417:3802698292309927 1976:1980 hsa_system_get_info(2, 0x7f51e016b408) = 0 +3802698292310317:3802698292310827 1976:1980 hsa_system_get_info(2, 0x7f51e016b410) = 0 +3802698292311217:3802698292311727 1976:1980 hsa_system_get_info(2, 0x7f51e016b418) = 0 +3802698292312117:3802698292312627 1976:1980 hsa_system_get_info(2, 0x7f51e016b420) = 0 +3802698292313017:3802698292313527 1976:1980 hsa_system_get_info(2, 0x7f51e016b428) = 0 +3802698292313917:3802698292314427 1976:1980 hsa_system_get_info(2, 0x7f51e016b430) = 0 +3802698292314817:3802698292315327 1976:1980 hsa_system_get_info(2, 0x7f51e016b438) = 0 +3802698292315717:3802698292316227 1976:1980 hsa_system_get_info(2, 0x7f51e016b440) = 0 +3802698292316617:3802698292317137 1976:1980 hsa_system_get_info(2, 0x7f51e016b448) = 0 +3802698292317517:3802698292318037 1976:1980 hsa_system_get_info(2, 0x7f51e016b450) = 0 +3802698292318417:3802698292318937 1976:1980 hsa_system_get_info(2, 0x7f51e016b458) = 0 +3802698292319317:3802698292319827 1976:1980 hsa_system_get_info(2, 0x7f51e016b460) = 0 +3802698292320217:3802698292320727 1976:1980 hsa_system_get_info(2, 0x7f51e016b468) = 0 +3802698292321117:3802698292321627 1976:1980 hsa_system_get_info(2, 0x7f51e016b470) = 0 +3802698292322017:3802698292322527 1976:1980 hsa_system_get_info(2, 0x7f51e016b478) = 0 +3802698292322917:3802698292323427 1976:1980 hsa_system_get_info(2, 0x7f51e016b480) = 0 +3802698292324557:3802698292325077 1976:1980 hsa_system_get_info(2, 0x7f51e016b488) = 0 +3802698292325467:3802698292325977 1976:1980 hsa_system_get_info(2, 0x7f51e016b490) = 0 +3802698292326367:3802698292326877 1976:1980 hsa_system_get_info(2, 0x7f51e016b498) = 0 +3802698292327267:3802698292327777 1976:1980 hsa_system_get_info(2, 0x7f51e016b4a0) = 0 +3802698292328167:3802698292328677 1976:1980 hsa_system_get_info(2, 0x7f51e016b4a8) = 0 +3802698292329067:3802698292329577 1976:1980 hsa_system_get_info(2, 0x7f51e016b4b0) = 0 +3802698292329967:3802698292330477 1976:1980 hsa_system_get_info(2, 0x7f51e016b4b8) = 0 +3802698292330867:3802698292331377 1976:1980 hsa_system_get_info(2, 0x7f51e016b4c0) = 0 +3802698292331767:3802698292332277 1976:1980 hsa_system_get_info(2, 0x7f51e016b4c8) = 0 +3802698292332667:3802698292333177 1976:1980 hsa_system_get_info(2, 0x7f51e016b4d0) = 0 +3802698292333567:3802698292334077 1976:1980 hsa_system_get_info(2, 0x7f51e016b4d8) = 0 +3802698292334467:3802698292334977 1976:1980 hsa_system_get_info(2, 0x7f51e016b4e0) = 0 +3802698292335367:3802698292335877 1976:1980 hsa_system_get_info(2, 0x7f51e016b4e8) = 0 +3802698292336267:3802698292336777 1976:1980 hsa_system_get_info(2, 0x7f51e016b4f0) = 0 +3802698292337167:3802698292337677 1976:1980 hsa_system_get_info(2, 0x7f51e016b4f8) = 0 +3802698292338057:3802698292338577 1976:1980 hsa_system_get_info(2, 0x7f51e016b500) = 0 +3802698292338957:3802698292339477 1976:1980 hsa_system_get_info(2, 0x7f51e016b508) = 0 +3802698292339857:3802698292340377 1976:1980 hsa_system_get_info(2, 0x7f51e016b510) = 0 +3802698292340757:3802698292341277 1976:1980 hsa_system_get_info(2, 0x7f51e016b518) = 0 +3802698292341657:3802698292342177 1976:1980 hsa_system_get_info(2, 0x7f51e016b520) = 0 +3802698292342557:3802698292343077 1976:1980 hsa_system_get_info(2, 0x7f51e016b528) = 0 +3802698292343457:3802698292343977 1976:1980 hsa_system_get_info(2, 0x7f51e016b530) = 0 +3802698292344357:3802698292344877 1976:1980 hsa_system_get_info(2, 0x7f51e016b538) = 0 +3802698292345257:3802698292345777 1976:1980 hsa_system_get_info(2, 0x7f51e016b540) = 0 +3802698292346157:3802698292346677 1976:1980 hsa_system_get_info(2, 0x7f51e016b548) = 0 +3802698292347057:3802698292347577 1976:1980 hsa_system_get_info(2, 0x7f51e016b550) = 0 +3802698292347957:3802698292348477 1976:1980 hsa_system_get_info(2, 0x7f51e016b558) = 0 +3802698292348857:3802698292349377 1976:1980 hsa_system_get_info(2, 0x7f51e016b560) = 0 +3802698292350567:3802698292351087 1976:1980 hsa_system_get_info(2, 0x7f51e016b568) = 0 +3802698292351477:3802698292351987 1976:1980 hsa_system_get_info(2, 0x7f51e016b570) = 0 +3802698292352377:3802698292352887 1976:1980 hsa_system_get_info(2, 0x7f51e016b578) = 0 +3802698292353277:3802698292353787 1976:1980 hsa_system_get_info(2, 0x7f51e016b580) = 0 +3802698292354177:3802698292354687 1976:1980 hsa_system_get_info(2, 0x7f51e016b588) = 0 +3802698292355077:3802698292355587 1976:1980 hsa_system_get_info(2, 0x7f51e016b590) = 0 +3802698292355977:3802698292356487 1976:1980 hsa_system_get_info(2, 0x7f51e016b598) = 0 +3802698292356877:3802698292357387 1976:1980 hsa_system_get_info(2, 0x7f51e016b5a0) = 0 +3802698292357777:3802698292358287 1976:1980 hsa_system_get_info(2, 0x7f51e016b5a8) = 0 +3802698292358677:3802698292359187 1976:1980 hsa_system_get_info(2, 0x7f51e016b5b0) = 0 +3802698292359577:3802698292360087 1976:1980 hsa_system_get_info(2, 0x7f51e016b5b8) = 0 +3802698292360477:3802698292360987 1976:1980 hsa_system_get_info(2, 0x7f51e016b5c0) = 0 +3802698292361377:3802698292361887 1976:1980 hsa_system_get_info(2, 0x7f51e016b5c8) = 0 +3802698292362277:3802698292362787 1976:1980 hsa_system_get_info(2, 0x7f51e016b5d0) = 0 +3802698292363177:3802698292363687 1976:1980 hsa_system_get_info(2, 0x7f51e016b5d8) = 0 +3802698292364077:3802698292364587 1976:1980 hsa_system_get_info(2, 0x7f51e016b5e0) = 0 +3802698292364977:3802698292365487 1976:1980 hsa_system_get_info(2, 0x7f51e016b5e8) = 0 +3802698292365877:3802698292366387 1976:1980 hsa_system_get_info(2, 0x7f51e016b5f0) = 0 +3802698292366777:3802698292367287 1976:1980 hsa_system_get_info(2, 0x7f51e016b5f8) = 0 +3802698292367677:3802698292368187 1976:1980 hsa_system_get_info(2, 0x7f51e016b600) = 0 +3802698292368577:3802698292369087 1976:1980 hsa_system_get_info(2, 0x7f51e016b608) = 0 +3802698292369477:3802698292369987 1976:1980 hsa_system_get_info(2, 0x7f51e016b610) = 0 +3802698292370377:3802698292370887 1976:1980 hsa_system_get_info(2, 0x7f51e016b618) = 0 +3802698292371277:3802698292371787 1976:1980 hsa_system_get_info(2, 0x7f51e016b620) = 0 +3802698292372177:3802698292372687 1976:1980 hsa_system_get_info(2, 0x7f51e016b628) = 0 +3802698292373077:3802698292373587 1976:1980 hsa_system_get_info(2, 0x7f51e016b630) = 0 +3802698292373977:3802698292374487 1976:1980 hsa_system_get_info(2, 0x7f51e016b638) = 0 +3802698292374877:3802698292375387 1976:1980 hsa_system_get_info(2, 0x7f51e016b640) = 0 +3802698292375777:3802698292376287 1976:1980 hsa_system_get_info(2, 0x7f51e016b648) = 0 +3802698292377837:3802698292378357 1976:1980 hsa_system_get_info(2, 0x7f51e016b650) = 0 +3802698292378737:3802698292379257 1976:1980 hsa_system_get_info(2, 0x7f51e016b658) = 0 +3802698292379637:3802698292380157 1976:1980 hsa_system_get_info(2, 0x7f51e016b660) = 0 +3802698292380537:3802698292381057 1976:1980 hsa_system_get_info(2, 0x7f51e016b668) = 0 +3802698292381437:3802698292381957 1976:1980 hsa_system_get_info(2, 0x7f51e016b670) = 0 +3802698292382337:3802698292382857 1976:1980 hsa_system_get_info(2, 0x7f51e016b678) = 0 +3802698292383237:3802698292383757 1976:1980 hsa_system_get_info(2, 0x7f51e016b680) = 0 +3802698292384137:3802698292384657 1976:1980 hsa_system_get_info(2, 0x7f51e016b688) = 0 +3802698292385037:3802698292385557 1976:1980 hsa_system_get_info(2, 0x7f51e016b690) = 0 +3802698292385937:3802698292386457 1976:1980 hsa_system_get_info(2, 0x7f51e016b698) = 0 +3802698292386837:3802698292387357 1976:1980 hsa_system_get_info(2, 0x7f51e016b6a0) = 0 +3802698292387737:3802698292388257 1976:1980 hsa_system_get_info(2, 0x7f51e016b6a8) = 0 +3802698292388637:3802698292389157 1976:1980 hsa_system_get_info(2, 0x7f51e016b6b0) = 0 +3802698292389537:3802698292390057 1976:1980 hsa_system_get_info(2, 0x7f51e016b6b8) = 0 +3802698292390437:3802698292390957 1976:1980 hsa_system_get_info(2, 0x7f51e016b6c0) = 0 +3802698292391337:3802698292391857 1976:1980 hsa_system_get_info(2, 0x7f51e016b6c8) = 0 +3802698292392237:3802698292392757 1976:1980 hsa_system_get_info(2, 0x7f51e016b6d0) = 0 +3802698292393137:3802698292393647 1976:1980 hsa_system_get_info(2, 0x7f51e016b6d8) = 0 +3802698292394037:3802698292394547 1976:1980 hsa_system_get_info(2, 0x7f51e016b6e0) = 0 +3802698292394937:3802698292395447 1976:1980 hsa_system_get_info(2, 0x7f51e016b6e8) = 0 +3802698292395837:3802698292396347 1976:1980 hsa_system_get_info(2, 0x7f51e016b6f0) = 0 +3802698292396737:3802698292397248 1976:1980 hsa_system_get_info(2, 0x7f51e016b6f8) = 0 +3802698292397638:3802698292398148 1976:1980 hsa_system_get_info(2, 0x7f51e016b700) = 0 +3802698292398538:3802698292399048 1976:1980 hsa_system_get_info(2, 0x7f51e016b708) = 0 +3802698292399438:3802698292399948 1976:1980 hsa_system_get_info(2, 0x7f51e016b710) = 0 +3802698292400338:3802698292400848 1976:1980 hsa_system_get_info(2, 0x7f51e016b718) = 0 +3802698292401238:3802698292401748 1976:1980 hsa_system_get_info(2, 0x7f51e016b720) = 0 +3802698292402138:3802698292402648 1976:1980 hsa_system_get_info(2, 0x7f51e016b728) = 0 +3802698292403738:3802698292404258 1976:1980 hsa_system_get_info(2, 0x7f51e016b730) = 0 +3802698292404648:3802698292405158 1976:1980 hsa_system_get_info(2, 0x7f51e016b738) = 0 +3802698292405548:3802698292406058 1976:1980 hsa_system_get_info(2, 0x7f51e016b740) = 0 +3802698292406448:3802698292406958 1976:1980 hsa_system_get_info(2, 0x7f51e016b748) = 0 +3802698292407348:3802698292407858 1976:1980 hsa_system_get_info(2, 0x7f51e016b750) = 0 +3802698292408248:3802698292408758 1976:1980 hsa_system_get_info(2, 0x7f51e016b758) = 0 +3802698292409148:3802698292409658 1976:1980 hsa_system_get_info(2, 0x7f51e016b760) = 0 +3802698292410048:3802698292410558 1976:1980 hsa_system_get_info(2, 0x7f51e016b768) = 0 +3802698292410948:3802698292411458 1976:1980 hsa_system_get_info(2, 0x7f51e016b770) = 0 +3802698292411848:3802698292412358 1976:1980 hsa_system_get_info(2, 0x7f51e016b778) = 0 +3802698292412748:3802698292413258 1976:1980 hsa_system_get_info(2, 0x7f51e016b780) = 0 +3802698292413648:3802698292414158 1976:1980 hsa_system_get_info(2, 0x7f51e016b788) = 0 +3802698292414548:3802698292415058 1976:1980 hsa_system_get_info(2, 0x7f51e016b790) = 0 +3802698292415448:3802698292415958 1976:1980 hsa_system_get_info(2, 0x7f51e016b798) = 0 +3802698292416348:3802698292416858 1976:1980 hsa_system_get_info(2, 0x7f51e016b7a0) = 0 +3802698292417248:3802698292417758 1976:1980 hsa_system_get_info(2, 0x7f51e016b7a8) = 0 +3802698292418148:3802698292418658 1976:1980 hsa_system_get_info(2, 0x7f51e016b7b0) = 0 +3802698292419048:3802698292419558 1976:1980 hsa_system_get_info(2, 0x7f51e016b7b8) = 0 +3802698292419948:3802698292420458 1976:1980 hsa_system_get_info(2, 0x7f51e016b7c0) = 0 +3802698292420848:3802698292421358 1976:1980 hsa_system_get_info(2, 0x7f51e016b7c8) = 0 +3802698292421748:3802698292422258 1976:1980 hsa_system_get_info(2, 0x7f51e016b7d0) = 0 +3802698292422648:3802698292423168 1976:1980 hsa_system_get_info(2, 0x7f51e016b7d8) = 0 +3802698292423548:3802698292424068 1976:1980 hsa_system_get_info(2, 0x7f51e016b7e0) = 0 +3802698292424448:3802698292424968 1976:1980 hsa_system_get_info(2, 0x7f51e016b7e8) = 0 +3802698292425348:3802698292425868 1976:1980 hsa_system_get_info(2, 0x7f51e016b7f0) = 0 +3802698292426248:3802698292426768 1976:1980 hsa_system_get_info(2, 0x7f51e016b7f8) = 0 +3802698292427148:3802698292427668 1976:1980 hsa_system_get_info(2, 0x7f51e016b800) = 0 +3802698292428048:3802698292428568 1976:1980 hsa_system_get_info(2, 0x7f51e016b808) = 0 +3802698292428948:3802698292429468 1976:1980 hsa_system_get_info(2, 0x7f51e016b810) = 0 +3802698292430558:3802698292431078 1976:1980 hsa_system_get_info(2, 0x7f51e016b818) = 0 +3802698292431468:3802698292431978 1976:1980 hsa_system_get_info(2, 0x7f51e016b820) = 0 +3802698292432368:3802698292432878 1976:1980 hsa_system_get_info(2, 0x7f51e016b828) = 0 +3802698292433268:3802698292433778 1976:1980 hsa_system_get_info(2, 0x7f51e016b830) = 0 +3802698292434168:3802698292434678 1976:1980 hsa_system_get_info(2, 0x7f51e016b838) = 0 +3802698292435068:3802698292435578 1976:1980 hsa_system_get_info(2, 0x7f51e016b840) = 0 +3802698292435968:3802698292436478 1976:1980 hsa_system_get_info(2, 0x7f51e016b848) = 0 +3802698292436868:3802698292437378 1976:1980 hsa_system_get_info(2, 0x7f51e016b850) = 0 +3802698292437768:3802698292438278 1976:1980 hsa_system_get_info(2, 0x7f51e016b858) = 0 +3802698292438668:3802698292439178 1976:1980 hsa_system_get_info(2, 0x7f51e016b860) = 0 +3802698292439568:3802698292440078 1976:1980 hsa_system_get_info(2, 0x7f51e016b868) = 0 +3802698292440468:3802698292440978 1976:1980 hsa_system_get_info(2, 0x7f51e016b870) = 0 +3802698292441368:3802698292441878 1976:1980 hsa_system_get_info(2, 0x7f51e016b878) = 0 +3802698292442268:3802698292442778 1976:1980 hsa_system_get_info(2, 0x7f51e016b880) = 0 +3802698292443168:3802698292443678 1976:1980 hsa_system_get_info(2, 0x7f51e016b888) = 0 +3802698292444068:3802698292444578 1976:1980 hsa_system_get_info(2, 0x7f51e016b890) = 0 +3802698292444968:3802698292445478 1976:1980 hsa_system_get_info(2, 0x7f51e016b898) = 0 +3802698292445868:3802698292446378 1976:1980 hsa_system_get_info(2, 0x7f51e016b8a0) = 0 +3802698292446768:3802698292447278 1976:1980 hsa_system_get_info(2, 0x7f51e016b8a8) = 0 +3802698292447668:3802698292448178 1976:1980 hsa_system_get_info(2, 0x7f51e016b8b0) = 0 +3802698292448568:3802698292449078 1976:1980 hsa_system_get_info(2, 0x7f51e016b8b8) = 0 +3802698292449468:3802698292449978 1976:1980 hsa_system_get_info(2, 0x7f51e016b8c0) = 0 +3802698292450368:3802698292450878 1976:1980 hsa_system_get_info(2, 0x7f51e016b8c8) = 0 +3802698292451268:3802698292451778 1976:1980 hsa_system_get_info(2, 0x7f51e016b8d0) = 0 +3802698292452168:3802698292452678 1976:1980 hsa_system_get_info(2, 0x7f51e016b8d8) = 0 +3802698292453068:3802698292453578 1976:1980 hsa_system_get_info(2, 0x7f51e016b8e0) = 0 +3802698292453968:3802698292454478 1976:1980 hsa_system_get_info(2, 0x7f51e016b8e8) = 0 +3802698292454868:3802698292455378 1976:1980 hsa_system_get_info(2, 0x7f51e016b8f0) = 0 +3802698292456558:3802698292457068 1976:1980 hsa_system_get_info(2, 0x7f51e016b8f8) = 0 +3802698292457458:3802698292457978 1976:1980 hsa_system_get_info(2, 0x7f51e016b900) = 0 +3802698292458358:3802698292458878 1976:1980 hsa_system_get_info(2, 0x7f51e016b908) = 0 +3802698292459258:3802698292459778 1976:1980 hsa_system_get_info(2, 0x7f51e016b910) = 0 +3802698292460158:3802698292460678 1976:1980 hsa_system_get_info(2, 0x7f51e016b918) = 0 +3802698292461058:3802698292461578 1976:1980 hsa_system_get_info(2, 0x7f51e016b920) = 0 +3802698292461958:3802698292462478 1976:1980 hsa_system_get_info(2, 0x7f51e016b928) = 0 +3802698292462868:3802698292463378 1976:1980 hsa_system_get_info(2, 0x7f51e016b930) = 0 +3802698292463768:3802698292464278 1976:1980 hsa_system_get_info(2, 0x7f51e016b938) = 0 +3802698292464668:3802698292465178 1976:1980 hsa_system_get_info(2, 0x7f51e016b940) = 0 +3802698292465568:3802698292466078 1976:1980 hsa_system_get_info(2, 0x7f51e016b948) = 0 +3802698292466468:3802698292466978 1976:1980 hsa_system_get_info(2, 0x7f51e016b950) = 0 +3802698292467368:3802698292467878 1976:1980 hsa_system_get_info(2, 0x7f51e016b958) = 0 +3802698292468268:3802698292468778 1976:1980 hsa_system_get_info(2, 0x7f51e016b960) = 0 +3802698292469168:3802698292469678 1976:1980 hsa_system_get_info(2, 0x7f51e016b968) = 0 +3802698292470068:3802698292470578 1976:1980 hsa_system_get_info(2, 0x7f51e016b970) = 0 +3802698292470968:3802698292471478 1976:1980 hsa_system_get_info(2, 0x7f51e016b978) = 0 +3802698292471868:3802698292472378 1976:1980 hsa_system_get_info(2, 0x7f51e016b980) = 0 +3802698292472768:3802698292473288 1976:1980 hsa_system_get_info(2, 0x7f51e016b988) = 0 +3802698292473668:3802698292474188 1976:1980 hsa_system_get_info(2, 0x7f51e016b990) = 0 +3802698292474568:3802698292475088 1976:1980 hsa_system_get_info(2, 0x7f51e016b998) = 0 +3802698292475468:3802698292475988 1976:1980 hsa_system_get_info(2, 0x7f51e016b9a0) = 0 +3802698292476368:3802698292476888 1976:1980 hsa_system_get_info(2, 0x7f51e016b9a8) = 0 +3802698292477268:3802698292477788 1976:1980 hsa_system_get_info(2, 0x7f51e016b9b0) = 0 +3802698292478168:3802698292478688 1976:1980 hsa_system_get_info(2, 0x7f51e016b9b8) = 0 +3802698292479068:3802698292479588 1976:1980 hsa_system_get_info(2, 0x7f51e016b9c0) = 0 +3802698292479978:3802698292480488 1976:1980 hsa_system_get_info(2, 0x7f51e016b9c8) = 0 +3802698292480878:3802698292481388 1976:1980 hsa_system_get_info(2, 0x7f51e016b9d0) = 0 +3802698292481778:3802698292482288 1976:1980 hsa_system_get_info(2, 0x7f51e016b9d8) = 0 +3802698292484318:3802698292484838 1976:1980 hsa_system_get_info(2, 0x7f51e016b9e0) = 0 +3802698292485218:3802698292485738 1976:1980 hsa_system_get_info(2, 0x7f51e016b9e8) = 0 +3802698292486118:3802698292486638 1976:1980 hsa_system_get_info(2, 0x7f51e016b9f0) = 0 +3802698292487018:3802698292487538 1976:1980 hsa_system_get_info(2, 0x7f51e016b9f8) = 0 +3802698292487918:3802698292488438 1976:1980 hsa_system_get_info(2, 0x7f51e016ba00) = 0 +3802698292488818:3802698292489338 1976:1980 hsa_system_get_info(2, 0x7f51e016ba08) = 0 +3802698292489718:3802698292490238 1976:1980 hsa_system_get_info(2, 0x7f51e016ba10) = 0 +3802698292490628:3802698292491138 1976:1980 hsa_system_get_info(2, 0x7f51e016ba18) = 0 +3802698292491528:3802698292492038 1976:1980 hsa_system_get_info(2, 0x7f51e016ba20) = 0 +3802698292492428:3802698292492938 1976:1980 hsa_system_get_info(2, 0x7f51e016ba28) = 0 +3802698292493328:3802698292493838 1976:1980 hsa_system_get_info(2, 0x7f51e016ba30) = 0 +3802698292494228:3802698292494738 1976:1980 hsa_system_get_info(2, 0x7f51e016ba38) = 0 +3802698292495128:3802698292495638 1976:1980 hsa_system_get_info(2, 0x7f51e016ba40) = 0 +3802698292496028:3802698292496538 1976:1980 hsa_system_get_info(2, 0x7f51e016ba48) = 0 +3802698292496928:3802698292497448 1976:1980 hsa_system_get_info(2, 0x7f51e016ba50) = 0 +3802698292497828:3802698292498348 1976:1980 hsa_system_get_info(2, 0x7f51e016ba58) = 0 +3802698292498728:3802698292499248 1976:1980 hsa_system_get_info(2, 0x7f51e016ba60) = 0 +3802698292499628:3802698292500148 1976:1980 hsa_system_get_info(2, 0x7f51e016ba68) = 0 +3802698292500528:3802698292501048 1976:1980 hsa_system_get_info(2, 0x7f51e016ba70) = 0 +3802698292501428:3802698292501948 1976:1980 hsa_system_get_info(2, 0x7f51e016ba78) = 0 +3802698292502328:3802698292502848 1976:1980 hsa_system_get_info(2, 0x7f51e016ba80) = 0 +3802698292503238:3802698292503748 1976:1980 hsa_system_get_info(2, 0x7f51e016ba88) = 0 +3802698292504138:3802698292504648 1976:1980 hsa_system_get_info(2, 0x7f51e016ba90) = 0 +3802698292505038:3802698292505548 1976:1980 hsa_system_get_info(2, 0x7f51e016ba98) = 0 +3802698292505938:3802698292506448 1976:1980 hsa_system_get_info(2, 0x7f51e016baa0) = 0 +3802698292506838:3802698292507348 1976:1980 hsa_system_get_info(2, 0x7f51e016baa8) = 0 +3802698292507738:3802698292508248 1976:1980 hsa_system_get_info(2, 0x7f51e016bab0) = 0 +3802698292508638:3802698292509148 1976:1980 hsa_system_get_info(2, 0x7f51e016bab8) = 0 +3802698292510558:3802698292511078 1976:1980 hsa_system_get_info(2, 0x7f51e016bac0) = 0 +3802698292511468:3802698292511978 1976:1980 hsa_system_get_info(2, 0x7f51e016bac8) = 0 +3802698292512368:3802698292512878 1976:1980 hsa_system_get_info(2, 0x7f51e016bad0) = 0 +3802698292513268:3802698292513778 1976:1980 hsa_system_get_info(2, 0x7f51e016bad8) = 0 +3802698292514168:3802698292514678 1976:1980 hsa_system_get_info(2, 0x7f51e016bae0) = 0 +3802698292515068:3802698292515578 1976:1980 hsa_system_get_info(2, 0x7f51e016bae8) = 0 +3802698292515968:3802698292516478 1976:1980 hsa_system_get_info(2, 0x7f51e016baf0) = 0 +3802698292516868:3802698292517378 1976:1980 hsa_system_get_info(2, 0x7f51e016baf8) = 0 +3802698292517768:3802698292518278 1976:1980 hsa_system_get_info(2, 0x7f51e016bb00) = 0 +3802698292518668:3802698292519178 1976:1980 hsa_system_get_info(2, 0x7f51e016bb08) = 0 +3802698292519568:3802698292520078 1976:1980 hsa_system_get_info(2, 0x7f51e016bb10) = 0 +3802698292520468:3802698292520978 1976:1980 hsa_system_get_info(2, 0x7f51e016bb18) = 0 +3802698292521368:3802698292521878 1976:1980 hsa_system_get_info(2, 0x7f51e016bb20) = 0 +3802698292522268:3802698292522778 1976:1980 hsa_system_get_info(2, 0x7f51e016bb28) = 0 +3802698292523168:3802698292523678 1976:1980 hsa_system_get_info(2, 0x7f51e016bb30) = 0 +3802698292524058:3802698292524578 1976:1980 hsa_system_get_info(2, 0x7f51e016bb38) = 0 +3802698292524958:3802698292525478 1976:1980 hsa_system_get_info(2, 0x7f51e016bb40) = 0 +3802698292525858:3802698292526378 1976:1980 hsa_system_get_info(2, 0x7f51e016bb48) = 0 +3802698292526758:3802698292527278 1976:1980 hsa_system_get_info(2, 0x7f51e016bb50) = 0 +3802698292527658:3802698292528178 1976:1980 hsa_system_get_info(2, 0x7f51e016bb58) = 0 +3802698292528558:3802698292529078 1976:1980 hsa_system_get_info(2, 0x7f51e016bb60) = 0 +3802698292529458:3802698292529978 1976:1980 hsa_system_get_info(2, 0x7f51e016bb68) = 0 +3802698292530358:3802698292530878 1976:1980 hsa_system_get_info(2, 0x7f51e016bb70) = 0 +3802698292531258:3802698292531779 1976:1980 hsa_system_get_info(2, 0x7f51e016bb78) = 0 +3802698292532159:3802698292532679 1976:1980 hsa_system_get_info(2, 0x7f51e016bb80) = 0 +3802698292533059:3802698292533579 1976:1980 hsa_system_get_info(2, 0x7f51e016bb88) = 0 +3802698292533959:3802698292534479 1976:1980 hsa_system_get_info(2, 0x7f51e016bb90) = 0 +3802698292534859:3802698292535379 1976:1980 hsa_system_get_info(2, 0x7f51e016bb98) = 0 +3802698292536559:3802698292537079 1976:1980 hsa_system_get_info(2, 0x7f51e016bba0) = 0 +3802698292537469:3802698292537979 1976:1980 hsa_system_get_info(2, 0x7f51e016bba8) = 0 +3802698292538369:3802698292538879 1976:1980 hsa_system_get_info(2, 0x7f51e016bbb0) = 0 +3802698292539269:3802698292539779 1976:1980 hsa_system_get_info(2, 0x7f51e016bbb8) = 0 +3802698292540169:3802698292540679 1976:1980 hsa_system_get_info(2, 0x7f51e016bbc0) = 0 +3802698292541069:3802698292541579 1976:1980 hsa_system_get_info(2, 0x7f51e016bbc8) = 0 +3802698292541969:3802698292542479 1976:1980 hsa_system_get_info(2, 0x7f51e016bbd0) = 0 +3802698292542869:3802698292543379 1976:1980 hsa_system_get_info(2, 0x7f51e016bbd8) = 0 +3802698292543769:3802698292544279 1976:1980 hsa_system_get_info(2, 0x7f51e016bbe0) = 0 +3802698292544669:3802698292545179 1976:1980 hsa_system_get_info(2, 0x7f51e016bbe8) = 0 +3802698292545569:3802698292546079 1976:1980 hsa_system_get_info(2, 0x7f51e016bbf0) = 0 +3802698292546469:3802698292546979 1976:1980 hsa_system_get_info(2, 0x7f51e016bbf8) = 0 +3802698292547369:3802698292547879 1976:1980 hsa_system_get_info(2, 0x7f51e016bc00) = 0 +3802698292548269:3802698292548779 1976:1980 hsa_system_get_info(2, 0x7f51e016bc08) = 0 +3802698292549169:3802698292549679 1976:1980 hsa_system_get_info(2, 0x7f51e016bc10) = 0 +3802698292550069:3802698292550579 1976:1980 hsa_system_get_info(2, 0x7f51e016bc18) = 0 +3802698292550969:3802698292551479 1976:1980 hsa_system_get_info(2, 0x7f51e016bc20) = 0 +3802698292551869:3802698292552379 1976:1980 hsa_system_get_info(2, 0x7f51e016bc28) = 0 +3802698292552769:3802698292553279 1976:1980 hsa_system_get_info(2, 0x7f51e016bc30) = 0 +3802698292553669:3802698292554189 1976:1980 hsa_system_get_info(2, 0x7f51e016bc38) = 0 +3802698292554569:3802698292555089 1976:1980 hsa_system_get_info(2, 0x7f51e016bc40) = 0 +3802698292555479:3802698292555989 1976:1980 hsa_system_get_info(2, 0x7f51e016bc48) = 0 +3802698292556379:3802698292556889 1976:1980 hsa_system_get_info(2, 0x7f51e016bc50) = 0 +3802698292557279:3802698292557789 1976:1980 hsa_system_get_info(2, 0x7f51e016bc58) = 0 +3802698292558179:3802698292558689 1976:1980 hsa_system_get_info(2, 0x7f51e016bc60) = 0 +3802698292559079:3802698292559589 1976:1980 hsa_system_get_info(2, 0x7f51e016bc68) = 0 +3802698292559979:3802698292560489 1976:1980 hsa_system_get_info(2, 0x7f51e016bc70) = 0 +3802698292560879:3802698292561389 1976:1980 hsa_system_get_info(2, 0x7f51e016bc78) = 0 +3802698292561779:3802698292562289 1976:1980 hsa_system_get_info(2, 0x7f51e016bc80) = 0 +3802698292563469:3802698292563989 1976:1980 hsa_system_get_info(2, 0x7f51e016bc88) = 0 +3802698292564379:3802698292564889 1976:1980 hsa_system_get_info(2, 0x7f51e016bc90) = 0 +3802698292565279:3802698292565789 1976:1980 hsa_system_get_info(2, 0x7f51e016bc98) = 0 +3802698292566179:3802698292566689 1976:1980 hsa_system_get_info(2, 0x7f51e016bca0) = 0 +3802698292567069:3802698292567589 1976:1980 hsa_system_get_info(2, 0x7f51e016bca8) = 0 +3802698292567969:3802698292568489 1976:1980 hsa_system_get_info(2, 0x7f51e016bcb0) = 0 +3802698292568869:3802698292569389 1976:1980 hsa_system_get_info(2, 0x7f51e016bcb8) = 0 +3802698292569769:3802698292570289 1976:1980 hsa_system_get_info(2, 0x7f51e016bcc0) = 0 +3802698292570669:3802698292571189 1976:1980 hsa_system_get_info(2, 0x7f51e016bcc8) = 0 +3802698292571569:3802698292572089 1976:1980 hsa_system_get_info(2, 0x7f51e016bcd0) = 0 +3802698292572469:3802698292572989 1976:1980 hsa_system_get_info(2, 0x7f51e016bcd8) = 0 +3802698292573369:3802698292573889 1976:1980 hsa_system_get_info(2, 0x7f51e016bce0) = 0 +3802698292574269:3802698292574789 1976:1980 hsa_system_get_info(2, 0x7f51e016bce8) = 0 +3802698292575169:3802698292575689 1976:1980 hsa_system_get_info(2, 0x7f51e016bcf0) = 0 +3802698292576069:3802698292576589 1976:1980 hsa_system_get_info(2, 0x7f51e016bcf8) = 0 +3802698292576969:3802698292577489 1976:1980 hsa_system_get_info(2, 0x7f51e016bd00) = 0 +3802698292577869:3802698292578389 1976:1980 hsa_system_get_info(2, 0x7f51e016bd08) = 0 +3802698292578769:3802698292579279 1976:1980 hsa_system_get_info(2, 0x7f51e016bd10) = 0 +3802698292579669:3802698292580179 1976:1980 hsa_system_get_info(2, 0x7f51e016bd18) = 0 +3802698292580569:3802698292581079 1976:1980 hsa_system_get_info(2, 0x7f51e016bd20) = 0 +3802698292581469:3802698292581979 1976:1980 hsa_system_get_info(2, 0x7f51e016bd28) = 0 +3802698292582369:3802698292582879 1976:1980 hsa_system_get_info(2, 0x7f51e016bd30) = 0 +3802698292583269:3802698292583779 1976:1980 hsa_system_get_info(2, 0x7f51e016bd38) = 0 +3802698292584169:3802698292584679 1976:1980 hsa_system_get_info(2, 0x7f51e016bd40) = 0 +3802698292585069:3802698292585579 1976:1980 hsa_system_get_info(2, 0x7f51e016bd48) = 0 +3802698292585969:3802698292586479 1976:1980 hsa_system_get_info(2, 0x7f51e016bd50) = 0 +3802698292586869:3802698292587379 1976:1980 hsa_system_get_info(2, 0x7f51e016bd58) = 0 +3802698292587769:3802698292588279 1976:1980 hsa_system_get_info(2, 0x7f51e016bd60) = 0 +3802698292589529:3802698292590049 1976:1980 hsa_system_get_info(2, 0x7f51e016bd68) = 0 +3802698292590439:3802698292590949 1976:1980 hsa_system_get_info(2, 0x7f51e016bd70) = 0 +3802698292591339:3802698292591849 1976:1980 hsa_system_get_info(2, 0x7f51e016bd78) = 0 +3802698292592239:3802698292592749 1976:1980 hsa_system_get_info(2, 0x7f51e016bd80) = 0 +3802698292593139:3802698292593649 1976:1980 hsa_system_get_info(2, 0x7f51e016bd88) = 0 +3802698292594039:3802698292594549 1976:1980 hsa_system_get_info(2, 0x7f51e016bd90) = 0 +3802698292594939:3802698292595449 1976:1980 hsa_system_get_info(2, 0x7f51e016bd98) = 0 +3802698292595829:3802698292596349 1976:1980 hsa_system_get_info(2, 0x7f51e016bda0) = 0 +3802698292596739:3802698292597249 1976:1980 hsa_system_get_info(2, 0x7f51e016bda8) = 0 +3802698292597639:3802698292598149 1976:1980 hsa_system_get_info(2, 0x7f51e016bdb0) = 0 +3802698292598539:3802698292599049 1976:1980 hsa_system_get_info(2, 0x7f51e016bdb8) = 0 +3802698292599439:3802698292599949 1976:1980 hsa_system_get_info(2, 0x7f51e016bdc0) = 0 +3802698292600329:3802698292600849 1976:1980 hsa_system_get_info(2, 0x7f51e016bdc8) = 0 +3802698292601229:3802698292601749 1976:1980 hsa_system_get_info(2, 0x7f51e016bdd0) = 0 +3802698292602139:3802698292602649 1976:1980 hsa_system_get_info(2, 0x7f51e016bdd8) = 0 +3802698292603029:3802698292603549 1976:1980 hsa_system_get_info(2, 0x7f51e016bde0) = 0 +3802698292603929:3802698292604449 1976:1980 hsa_system_get_info(2, 0x7f51e016bde8) = 0 +3802698292604829:3802698292605349 1976:1980 hsa_system_get_info(2, 0x7f51e016bdf0) = 0 +3802698292605729:3802698292606249 1976:1980 hsa_system_get_info(2, 0x7f51e016bdf8) = 0 +3802698292606629:3802698292607149 1976:1980 hsa_system_get_info(2, 0x7f51e016be00) = 0 +3802698292607529:3802698292608049 1976:1980 hsa_system_get_info(2, 0x7f51e016be08) = 0 +3802698292608429:3802698292608949 1976:1980 hsa_system_get_info(2, 0x7f51e016be10) = 0 +3802698292609329:3802698292609849 1976:1980 hsa_system_get_info(2, 0x7f51e016be18) = 0 +3802698292610229:3802698292610749 1976:1980 hsa_system_get_info(2, 0x7f51e016be20) = 0 +3802698292611139:3802698292611649 1976:1980 hsa_system_get_info(2, 0x7f51e016be28) = 0 +3802698292612029:3802698292612549 1976:1980 hsa_system_get_info(2, 0x7f51e016be30) = 0 +3802698292612939:3802698292613449 1976:1980 hsa_system_get_info(2, 0x7f51e016be38) = 0 +3802698292613839:3802698292614349 1976:1980 hsa_system_get_info(2, 0x7f51e016be40) = 0 +3802698292614729:3802698292615249 1976:1980 hsa_system_get_info(2, 0x7f51e016be48) = 0 +3802698292616439:3802698292616959 1976:1980 hsa_system_get_info(2, 0x7f51e016be50) = 0 +3802698292617349:3802698292617859 1976:1980 hsa_system_get_info(2, 0x7f51e016be58) = 0 +3802698292618249:3802698292618759 1976:1980 hsa_system_get_info(2, 0x7f51e016be60) = 0 +3802698292619139:3802698292619659 1976:1980 hsa_system_get_info(2, 0x7f51e016be68) = 0 +3802698292620039:3802698292620559 1976:1980 hsa_system_get_info(2, 0x7f51e016be70) = 0 +3802698292620939:3802698292621459 1976:1980 hsa_system_get_info(2, 0x7f51e016be78) = 0 +3802698292621839:3802698292622359 1976:1980 hsa_system_get_info(2, 0x7f51e016be80) = 0 +3802698292622739:3802698292623259 1976:1980 hsa_system_get_info(2, 0x7f51e016be88) = 0 +3802698292623639:3802698292624159 1976:1980 hsa_system_get_info(2, 0x7f51e016be90) = 0 +3802698292624539:3802698292625059 1976:1980 hsa_system_get_info(2, 0x7f51e016be98) = 0 +3802698292625439:3802698292625959 1976:1980 hsa_system_get_info(2, 0x7f51e016bea0) = 0 +3802698292626339:3802698292626859 1976:1980 hsa_system_get_info(2, 0x7f51e016bea8) = 0 +3802698292627239:3802698292627759 1976:1980 hsa_system_get_info(2, 0x7f51e016beb0) = 0 +3802698292628139:3802698292628659 1976:1980 hsa_system_get_info(2, 0x7f51e016beb8) = 0 +3802698292629039:3802698292629559 1976:1980 hsa_system_get_info(2, 0x7f51e016bec0) = 0 +3802698292629939:3802698292630459 1976:1980 hsa_system_get_info(2, 0x7f51e016bec8) = 0 +3802698292630839:3802698292631359 1976:1980 hsa_system_get_info(2, 0x7f51e016bed0) = 0 +3802698292631739:3802698292632259 1976:1980 hsa_system_get_info(2, 0x7f51e016bed8) = 0 +3802698292632639:3802698292633159 1976:1980 hsa_system_get_info(2, 0x7f51e016bee0) = 0 +3802698292633539:3802698292634059 1976:1980 hsa_system_get_info(2, 0x7f51e016bee8) = 0 +3802698292634439:3802698292634959 1976:1980 hsa_system_get_info(2, 0x7f51e016bef0) = 0 +3802698292635339:3802698292635859 1976:1980 hsa_system_get_info(2, 0x7f51e016bef8) = 0 +3802698292636239:3802698292636759 1976:1980 hsa_system_get_info(2, 0x7f51e016bf00) = 0 +3802698292637139:3802698292637659 1976:1980 hsa_system_get_info(2, 0x7f51e016bf08) = 0 +3802698292638039:3802698292638549 1976:1980 hsa_system_get_info(2, 0x7f51e016bf10) = 0 +3802698292638939:3802698292639449 1976:1980 hsa_system_get_info(2, 0x7f51e016bf18) = 0 +3802698292639839:3802698292640349 1976:1980 hsa_system_get_info(2, 0x7f51e016bf20) = 0 +3802698292640739:3802698292641249 1976:1980 hsa_system_get_info(2, 0x7f51e016bf28) = 0 +3802698292642559:3802698292643079 1976:1980 hsa_system_get_info(2, 0x7f51e016bf30) = 0 +3802698292643469:3802698292643979 1976:1980 hsa_system_get_info(2, 0x7f51e016bf38) = 0 +3802698292644369:3802698292644879 1976:1980 hsa_system_get_info(2, 0x7f51e016bf40) = 0 +3802698292645269:3802698292645779 1976:1980 hsa_system_get_info(2, 0x7f51e016bf48) = 0 +3802698292646169:3802698292646679 1976:1980 hsa_system_get_info(2, 0x7f51e016bf50) = 0 +3802698292647069:3802698292647579 1976:1980 hsa_system_get_info(2, 0x7f51e016bf58) = 0 +3802698292647969:3802698292648479 1976:1980 hsa_system_get_info(2, 0x7f51e016bf60) = 0 +3802698292648869:3802698292649379 1976:1980 hsa_system_get_info(2, 0x7f51e016bf68) = 0 +3802698292649769:3802698292650279 1976:1980 hsa_system_get_info(2, 0x7f51e016bf70) = 0 +3802698292650669:3802698292651179 1976:1980 hsa_system_get_info(2, 0x7f51e016bf78) = 0 +3802698292651569:3802698292652079 1976:1980 hsa_system_get_info(2, 0x7f51e016bf80) = 0 +3802698292652469:3802698292652979 1976:1980 hsa_system_get_info(2, 0x7f51e016bf88) = 0 +3802698292653369:3802698292653879 1976:1980 hsa_system_get_info(2, 0x7f51e016bf90) = 0 +3802698292654269:3802698292654779 1976:1980 hsa_system_get_info(2, 0x7f51e016bf98) = 0 +3802698292655169:3802698292655679 1976:1980 hsa_system_get_info(2, 0x7f51e016bfa0) = 0 +3802698292656069:3802698292656579 1976:1980 hsa_system_get_info(2, 0x7f51e016bfa8) = 0 +3802698292656969:3802698292657479 1976:1980 hsa_system_get_info(2, 0x7f51e016bfb0) = 0 +3802698292657869:3802698292658379 1976:1980 hsa_system_get_info(2, 0x7f51e016bfb8) = 0 +3802698292658769:3802698292659279 1976:1980 hsa_system_get_info(2, 0x7f51e016bfc0) = 0 +3802698292659669:3802698292660179 1976:1980 hsa_system_get_info(2, 0x7f51e016bfc8) = 0 +3802698292660569:3802698292661079 1976:1980 hsa_system_get_info(2, 0x7f51e016bfd0) = 0 +3802698292661469:3802698292661979 1976:1980 hsa_system_get_info(2, 0x7f51e016bfd8) = 0 +3802698292662369:3802698292662879 1976:1980 hsa_system_get_info(2, 0x7f51e016bfe0) = 0 +3802698292663269:3802698292663779 1976:1980 hsa_system_get_info(2, 0x7f51e016bfe8) = 0 +3802698292664169:3802698292664679 1976:1980 hsa_system_get_info(2, 0x7f51e016bff0) = 0 +3802698292665059:3802698292665579 1976:1980 hsa_system_get_info(2, 0x7f51e016bff8) = 0 +3802698292665959:3802698292666480 1976:1980 hsa_system_get_info(2, 0x7f51e016c000) = 0 +3802698292666860:3802698292667380 1976:1980 hsa_system_get_info(2, 0x7f51e016c008) = 0 +3802698292667760:3802698292668280 1976:1980 hsa_system_get_info(2, 0x7f51e016c010) = 0 +3802698292669470:3802698292669990 1976:1980 hsa_system_get_info(2, 0x7f51e016c018) = 0 +3802698292670380:3802698292670890 1976:1980 hsa_system_get_info(2, 0x7f51e016c020) = 0 +3802698292671280:3802698292671790 1976:1980 hsa_system_get_info(2, 0x7f51e016c028) = 0 +3802698292672180:3802698292672690 1976:1980 hsa_system_get_info(2, 0x7f51e016c030) = 0 +3802698292673080:3802698292673590 1976:1980 hsa_system_get_info(2, 0x7f51e016c038) = 0 +3802698292673980:3802698292674490 1976:1980 hsa_system_get_info(2, 0x7f51e016c040) = 0 +3802698292674880:3802698292675390 1976:1980 hsa_system_get_info(2, 0x7f51e016c048) = 0 +3802698292675780:3802698292676290 1976:1980 hsa_system_get_info(2, 0x7f51e016c050) = 0 +3802698292676680:3802698292677190 1976:1980 hsa_system_get_info(2, 0x7f51e016c058) = 0 +3802698292677580:3802698292678090 1976:1980 hsa_system_get_info(2, 0x7f51e016c060) = 0 +3802698292678480:3802698292678990 1976:1980 hsa_system_get_info(2, 0x7f51e016c068) = 0 +3802698292679380:3802698292679890 1976:1980 hsa_system_get_info(2, 0x7f51e016c070) = 0 +3802698292680280:3802698292680790 1976:1980 hsa_system_get_info(2, 0x7f51e016c078) = 0 +3802698292681180:3802698292681690 1976:1980 hsa_system_get_info(2, 0x7f51e016c080) = 0 +3802698292682080:3802698292682590 1976:1980 hsa_system_get_info(2, 0x7f51e016c088) = 0 +3802698292682980:3802698292683490 1976:1980 hsa_system_get_info(2, 0x7f51e016c090) = 0 +3802698292683880:3802698292684390 1976:1980 hsa_system_get_info(2, 0x7f51e016c098) = 0 +3802698292684780:3802698292685290 1976:1980 hsa_system_get_info(2, 0x7f51e016c0a0) = 0 +3802698292685670:3802698292686190 1976:1980 hsa_system_get_info(2, 0x7f51e016c0a8) = 0 +3802698292686570:3802698292687090 1976:1980 hsa_system_get_info(2, 0x7f51e016c0b0) = 0 +3802698292687470:3802698292687990 1976:1980 hsa_system_get_info(2, 0x7f51e016c0b8) = 0 +3802698292688370:3802698292688890 1976:1980 hsa_system_get_info(2, 0x7f51e016c0c0) = 0 +3802698292689270:3802698292689790 1976:1980 hsa_system_get_info(2, 0x7f51e016c0c8) = 0 +3802698292690170:3802698292690690 1976:1980 hsa_system_get_info(2, 0x7f51e016c0d0) = 0 +3802698292691070:3802698292691590 1976:1980 hsa_system_get_info(2, 0x7f51e016c0d8) = 0 +3802698292691970:3802698292692490 1976:1980 hsa_system_get_info(2, 0x7f51e016c0e0) = 0 +3802698292692870:3802698292693390 1976:1980 hsa_system_get_info(2, 0x7f51e016c0e8) = 0 +3802698292693770:3802698292694290 1976:1980 hsa_system_get_info(2, 0x7f51e016c0f0) = 0 +3802698292695480:3802698292696000 1976:1980 hsa_system_get_info(2, 0x7f51e016c0f8) = 0 +3802698292696390:3802698292696900 1976:1980 hsa_system_get_info(2, 0x7f51e016c100) = 0 +3802698292697290:3802698292697800 1976:1980 hsa_system_get_info(2, 0x7f51e016c108) = 0 +3802698292698190:3802698292698700 1976:1980 hsa_system_get_info(2, 0x7f51e016c110) = 0 +3802698292699090:3802698292699600 1976:1980 hsa_system_get_info(2, 0x7f51e016c118) = 0 +3802698292699990:3802698292700500 1976:1980 hsa_system_get_info(2, 0x7f51e016c120) = 0 +3802698292700890:3802698292701400 1976:1980 hsa_system_get_info(2, 0x7f51e016c128) = 0 +3802698292701790:3802698292702300 1976:1980 hsa_system_get_info(2, 0x7f51e016c130) = 0 +3802698292702690:3802698292703200 1976:1980 hsa_system_get_info(2, 0x7f51e016c138) = 0 +3802698292703590:3802698292704100 1976:1980 hsa_system_get_info(2, 0x7f51e016c140) = 0 +3802698292704490:3802698292705000 1976:1980 hsa_system_get_info(2, 0x7f51e016c148) = 0 +3802698292705390:3802698292705900 1976:1980 hsa_system_get_info(2, 0x7f51e016c150) = 0 +3802698292706290:3802698292706800 1976:1980 hsa_system_get_info(2, 0x7f51e016c158) = 0 +3802698292707190:3802698292707700 1976:1980 hsa_system_get_info(2, 0x7f51e016c160) = 0 +3802698292708090:3802698292708600 1976:1980 hsa_system_get_info(2, 0x7f51e016c168) = 0 +3802698292708990:3802698292709500 1976:1980 hsa_system_get_info(2, 0x7f51e016c170) = 0 +3802698292709890:3802698292710400 1976:1980 hsa_system_get_info(2, 0x7f51e016c178) = 0 +3802698292710790:3802698292711300 1976:1980 hsa_system_get_info(2, 0x7f51e016c180) = 0 +3802698292711690:3802698292712200 1976:1980 hsa_system_get_info(2, 0x7f51e016c188) = 0 +3802698292712590:3802698292713100 1976:1980 hsa_system_get_info(2, 0x7f51e016c190) = 0 +3802698292713490:3802698292714000 1976:1980 hsa_system_get_info(2, 0x7f51e016c198) = 0 +3802698292714390:3802698292714900 1976:1980 hsa_system_get_info(2, 0x7f51e016c1a0) = 0 +3802698292715290:3802698292715800 1976:1980 hsa_system_get_info(2, 0x7f51e016c1a8) = 0 +3802698292716190:3802698292716700 1976:1980 hsa_system_get_info(2, 0x7f51e016c1b0) = 0 +3802698292717090:3802698292717600 1976:1980 hsa_system_get_info(2, 0x7f51e016c1b8) = 0 +3802698292717990:3802698292718500 1976:1980 hsa_system_get_info(2, 0x7f51e016c1c0) = 0 +3802698292718890:3802698292719400 1976:1980 hsa_system_get_info(2, 0x7f51e016c1c8) = 0 +3802698292719790:3802698292720300 1976:1980 hsa_system_get_info(2, 0x7f51e016c1d0) = 0 +3802698292720690:3802698292721200 1976:1980 hsa_system_get_info(2, 0x7f51e016c1d8) = 0 +3802698292722380:3802698292722890 1976:1980 hsa_system_get_info(2, 0x7f51e016c1e0) = 0 +3802698292723280:3802698292723790 1976:1980 hsa_system_get_info(2, 0x7f51e016c1e8) = 0 +3802698292724180:3802698292724690 1976:1980 hsa_system_get_info(2, 0x7f51e016c1f0) = 0 +3802698292725080:3802698292725590 1976:1980 hsa_system_get_info(2, 0x7f51e016c1f8) = 0 +3802698292725980:3802698292726490 1976:1980 hsa_system_get_info(2, 0x7f51e016c200) = 0 +3802698292726880:3802698292727390 1976:1980 hsa_system_get_info(2, 0x7f51e016c208) = 0 +3802698292727780:3802698292728290 1976:1980 hsa_system_get_info(2, 0x7f51e016c210) = 0 +3802698292728680:3802698292729190 1976:1980 hsa_system_get_info(2, 0x7f51e016c218) = 0 +3802698292729580:3802698292730090 1976:1980 hsa_system_get_info(2, 0x7f51e016c220) = 0 +3802698292730480:3802698292730990 1976:1980 hsa_system_get_info(2, 0x7f51e016c228) = 0 +3802698292731380:3802698292731890 1976:1980 hsa_system_get_info(2, 0x7f51e016c230) = 0 +3802698292732280:3802698292732790 1976:1980 hsa_system_get_info(2, 0x7f51e016c238) = 0 +3802698292733180:3802698292733690 1976:1980 hsa_system_get_info(2, 0x7f51e016c240) = 0 +3802698292734080:3802698292734590 1976:1980 hsa_system_get_info(2, 0x7f51e016c248) = 0 +3802698292734980:3802698292735490 1976:1980 hsa_system_get_info(2, 0x7f51e016c250) = 0 +3802698292735880:3802698292736390 1976:1980 hsa_system_get_info(2, 0x7f51e016c258) = 0 +3802698292736780:3802698292737290 1976:1980 hsa_system_get_info(2, 0x7f51e016c260) = 0 +3802698292737680:3802698292738190 1976:1980 hsa_system_get_info(2, 0x7f51e016c268) = 0 +3802698292738580:3802698292739090 1976:1980 hsa_system_get_info(2, 0x7f51e016c270) = 0 +3802698292739480:3802698292739990 1976:1980 hsa_system_get_info(2, 0x7f51e016c278) = 0 +3802698292740380:3802698292740890 1976:1980 hsa_system_get_info(2, 0x7f51e016c280) = 0 +3802698292741280:3802698292741790 1976:1980 hsa_system_get_info(2, 0x7f51e016c288) = 0 +3802698292742180:3802698292742690 1976:1980 hsa_system_get_info(2, 0x7f51e016c290) = 0 +3802698292743080:3802698292743590 1976:1980 hsa_system_get_info(2, 0x7f51e016c298) = 0 +3802698292743980:3802698292744490 1976:1980 hsa_system_get_info(2, 0x7f51e016c2a0) = 0 +3802698292744880:3802698292745390 1976:1980 hsa_system_get_info(2, 0x7f51e016c2a8) = 0 +3802698292745780:3802698292746290 1976:1980 hsa_system_get_info(2, 0x7f51e016c2b0) = 0 +3802698292746670:3802698292747190 1976:1980 hsa_system_get_info(2, 0x7f51e016c2b8) = 0 +3802698292748360:3802698292748880 1976:1980 hsa_system_get_info(2, 0x7f51e016c2c0) = 0 +3802698292749280:3802698292749790 1976:1980 hsa_system_get_info(2, 0x7f51e016c2c8) = 0 +3802698292750170:3802698292750690 1976:1980 hsa_system_get_info(2, 0x7f51e016c2d0) = 0 +3802698292751070:3802698292751590 1976:1980 hsa_system_get_info(2, 0x7f51e016c2d8) = 0 +3802698292751970:3802698292752490 1976:1980 hsa_system_get_info(2, 0x7f51e016c2e0) = 0 +3802698292752870:3802698292753390 1976:1980 hsa_system_get_info(2, 0x7f51e016c2e8) = 0 +3802698292753770:3802698292754290 1976:1980 hsa_system_get_info(2, 0x7f51e016c2f0) = 0 +3802698292754670:3802698292755190 1976:1980 hsa_system_get_info(2, 0x7f51e016c2f8) = 0 +3802698292755570:3802698292756090 1976:1980 hsa_system_get_info(2, 0x7f51e016c300) = 0 +3802698292756480:3802698292756990 1976:1980 hsa_system_get_info(2, 0x7f51e016c308) = 0 +3802698292757380:3802698292757890 1976:1980 hsa_system_get_info(2, 0x7f51e016c310) = 0 +3802698292758280:3802698292758800 1976:1980 hsa_system_get_info(2, 0x7f51e016c318) = 0 +3802698292759180:3802698292759700 1976:1980 hsa_system_get_info(2, 0x7f51e016c320) = 0 +3802698292760080:3802698292760600 1976:1980 hsa_system_get_info(2, 0x7f51e016c328) = 0 +3802698292760990:3802698292761500 1976:1980 hsa_system_get_info(2, 0x7f51e016c330) = 0 +3802698292761890:3802698292762400 1976:1980 hsa_system_get_info(2, 0x7f51e016c338) = 0 +3802698292762790:3802698292763300 1976:1980 hsa_system_get_info(2, 0x7f51e016c340) = 0 +3802698292763690:3802698292764200 1976:1980 hsa_system_get_info(2, 0x7f51e016c348) = 0 +3802698292764590:3802698292765100 1976:1980 hsa_system_get_info(2, 0x7f51e016c350) = 0 +3802698292765490:3802698292766000 1976:1980 hsa_system_get_info(2, 0x7f51e016c358) = 0 +3802698292766390:3802698292766900 1976:1980 hsa_system_get_info(2, 0x7f51e016c360) = 0 +3802698292767290:3802698292767800 1976:1980 hsa_system_get_info(2, 0x7f51e016c368) = 0 +3802698292768190:3802698292768700 1976:1980 hsa_system_get_info(2, 0x7f51e016c370) = 0 +3802698292769090:3802698292769600 1976:1980 hsa_system_get_info(2, 0x7f51e016c378) = 0 +3802698292769990:3802698292770500 1976:1980 hsa_system_get_info(2, 0x7f51e016c380) = 0 +3802698292770890:3802698292771400 1976:1980 hsa_system_get_info(2, 0x7f51e016c388) = 0 +3802698292771790:3802698292772310 1976:1980 hsa_system_get_info(2, 0x7f51e016c390) = 0 +3802698292772700:3802698292773210 1976:1980 hsa_system_get_info(2, 0x7f51e016c398) = 0 +3802698292774380:3802698292774900 1976:1980 hsa_system_get_info(2, 0x7f51e016c3a0) = 0 +3802698292775290:3802698292775800 1976:1980 hsa_system_get_info(2, 0x7f51e016c3a8) = 0 +3802698292776190:3802698292776700 1976:1980 hsa_system_get_info(2, 0x7f51e016c3b0) = 0 +3802698292777090:3802698292777610 1976:1980 hsa_system_get_info(2, 0x7f51e016c3b8) = 0 +3802698292777990:3802698292778510 1976:1980 hsa_system_get_info(2, 0x7f51e016c3c0) = 0 +3802698292778890:3802698292779410 1976:1980 hsa_system_get_info(2, 0x7f51e016c3c8) = 0 +3802698292779790:3802698292780310 1976:1980 hsa_system_get_info(2, 0x7f51e016c3d0) = 0 +3802698292780690:3802698292781210 1976:1980 hsa_system_get_info(2, 0x7f51e016c3d8) = 0 +3802698292781590:3802698292782110 1976:1980 hsa_system_get_info(2, 0x7f51e016c3e0) = 0 +3802698292782490:3802698292783010 1976:1980 hsa_system_get_info(2, 0x7f51e016c3e8) = 0 +3802698292783390:3802698292783910 1976:1980 hsa_system_get_info(2, 0x7f51e016c3f0) = 0 +3802698292784290:3802698292784810 1976:1980 hsa_system_get_info(2, 0x7f51e016c3f8) = 0 +3802698292785190:3802698292785710 1976:1980 hsa_system_get_info(2, 0x7f51e016c400) = 0 +3802698292786090:3802698292786610 1976:1980 hsa_system_get_info(2, 0x7f51e016c408) = 0 +3802698292786990:3802698292787510 1976:1980 hsa_system_get_info(2, 0x7f51e016c410) = 0 +3802698292787890:3802698292788410 1976:1980 hsa_system_get_info(2, 0x7f51e016c418) = 0 +3802698292788790:3802698292789310 1976:1980 hsa_system_get_info(2, 0x7f51e016c420) = 0 +3802698292789690:3802698292790210 1976:1980 hsa_system_get_info(2, 0x7f51e016c428) = 0 +3802698292790590:3802698292791110 1976:1980 hsa_system_get_info(2, 0x7f51e016c430) = 0 +3802698292791490:3802698292792010 1976:1980 hsa_system_get_info(2, 0x7f51e016c438) = 0 +3802698292792390:3802698292792910 1976:1980 hsa_system_get_info(2, 0x7f51e016c440) = 0 +3802698292793290:3802698292793800 1976:1980 hsa_system_get_info(2, 0x7f51e016c448) = 0 +3802698292794190:3802698292794700 1976:1980 hsa_system_get_info(2, 0x7f51e016c450) = 0 +3802698292795090:3802698292795600 1976:1980 hsa_system_get_info(2, 0x7f51e016c458) = 0 +3802698292795990:3802698292796500 1976:1980 hsa_system_get_info(2, 0x7f51e016c460) = 0 +3802698292796890:3802698292797400 1976:1980 hsa_system_get_info(2, 0x7f51e016c468) = 0 +3802698292797790:3802698292798300 1976:1980 hsa_system_get_info(2, 0x7f51e016c470) = 0 +3802698292798690:3802698292799200 1976:1980 hsa_system_get_info(2, 0x7f51e016c478) = 0 +3802698292799590:3802698292800100 1976:1980 hsa_system_get_info(2, 0x7f51e016c480) = 0 +3802698292803801:3802698292804321 1976:1980 hsa_system_get_info(2, 0x7f51e016c488) = 0 +3802698292804711:3802698292805221 1976:1980 hsa_system_get_info(2, 0x7f51e016c490) = 0 +3802698292805611:3802698292806121 1976:1980 hsa_system_get_info(2, 0x7f51e016c498) = 0 +3802698292806511:3802698292807021 1976:1980 hsa_system_get_info(2, 0x7f51e016c4a0) = 0 +3802698292807411:3802698292807921 1976:1980 hsa_system_get_info(2, 0x7f51e016c4a8) = 0 +3802698292808311:3802698292808821 1976:1980 hsa_system_get_info(2, 0x7f51e016c4b0) = 0 +3802698292809211:3802698292809721 1976:1980 hsa_system_get_info(2, 0x7f51e016c4b8) = 0 +3802698292810101:3802698292810621 1976:1980 hsa_system_get_info(2, 0x7f51e016c4c0) = 0 +3802698292811001:3802698292811521 1976:1980 hsa_system_get_info(2, 0x7f51e016c4c8) = 0 +3802698292811901:3802698292812421 1976:1980 hsa_system_get_info(2, 0x7f51e016c4d0) = 0 +3802698292812801:3802698292813321 1976:1980 hsa_system_get_info(2, 0x7f51e016c4d8) = 0 +3802698292813701:3802698292814221 1976:1980 hsa_system_get_info(2, 0x7f51e016c4e0) = 0 +3802698292814601:3802698292815121 1976:1980 hsa_system_get_info(2, 0x7f51e016c4e8) = 0 +3802698292815501:3802698292816021 1976:1980 hsa_system_get_info(2, 0x7f51e016c4f0) = 0 +3802698292816401:3802698292816921 1976:1980 hsa_system_get_info(2, 0x7f51e016c4f8) = 0 +3802698292817301:3802698292817821 1976:1980 hsa_system_get_info(2, 0x7f51e016c500) = 0 +3802698292818201:3802698292818721 1976:1980 hsa_system_get_info(2, 0x7f51e016c508) = 0 +3802698292819101:3802698292819621 1976:1980 hsa_system_get_info(2, 0x7f51e016c510) = 0 +3802698292820001:3802698292820521 1976:1980 hsa_system_get_info(2, 0x7f51e016c518) = 0 +3802698292820901:3802698292821421 1976:1980 hsa_system_get_info(2, 0x7f51e016c520) = 0 +3802698292821801:3802698292822321 1976:1980 hsa_system_get_info(2, 0x7f51e016c528) = 0 +3802698292822701:3802698292823221 1976:1980 hsa_system_get_info(2, 0x7f51e016c530) = 0 +3802698292823601:3802698292824121 1976:1980 hsa_system_get_info(2, 0x7f51e016c538) = 0 +3802698292824501:3802698292825021 1976:1980 hsa_system_get_info(2, 0x7f51e016c540) = 0 +3802698292825401:3802698292825921 1976:1980 hsa_system_get_info(2, 0x7f51e016c548) = 0 +3802698292826301:3802698292826821 1976:1980 hsa_system_get_info(2, 0x7f51e016c550) = 0 +3802698292827201:3802698292827711 1976:1980 hsa_system_get_info(2, 0x7f51e016c558) = 0 +3802698292828101:3802698292828611 1976:1980 hsa_system_get_info(2, 0x7f51e016c560) = 0 +3802698292830161:3802698292830681 1976:1980 hsa_system_get_info(2, 0x7f51e016c568) = 0 +3802698292831071:3802698292831581 1976:1980 hsa_system_get_info(2, 0x7f51e016c570) = 0 +3802698292831971:3802698292832481 1976:1980 hsa_system_get_info(2, 0x7f51e016c578) = 0 +3802698292832871:3802698292833381 1976:1980 hsa_system_get_info(2, 0x7f51e016c580) = 0 +3802698292833771:3802698292834281 1976:1980 hsa_system_get_info(2, 0x7f51e016c588) = 0 +3802698292834671:3802698292835181 1976:1980 hsa_system_get_info(2, 0x7f51e016c590) = 0 +3802698292835571:3802698292836081 1976:1980 hsa_system_get_info(2, 0x7f51e016c598) = 0 +3802698292836471:3802698292836981 1976:1980 hsa_system_get_info(2, 0x7f51e016c5a0) = 0 +3802698292837371:3802698292837881 1976:1980 hsa_system_get_info(2, 0x7f51e016c5a8) = 0 +3802698292838271:3802698292838781 1976:1980 hsa_system_get_info(2, 0x7f51e016c5b0) = 0 +3802698292839171:3802698292839681 1976:1980 hsa_system_get_info(2, 0x7f51e016c5b8) = 0 +3802698292840071:3802698292840581 1976:1980 hsa_system_get_info(2, 0x7f51e016c5c0) = 0 +3802698292840971:3802698292841481 1976:1980 hsa_system_get_info(2, 0x7f51e016c5c8) = 0 +3802698292841871:3802698292842381 1976:1980 hsa_system_get_info(2, 0x7f51e016c5d0) = 0 +3802698292842771:3802698292843281 1976:1980 hsa_system_get_info(2, 0x7f51e016c5d8) = 0 +3802698292843671:3802698292844181 1976:1980 hsa_system_get_info(2, 0x7f51e016c5e0) = 0 +3802698292844571:3802698292845081 1976:1980 hsa_system_get_info(2, 0x7f51e016c5e8) = 0 +3802698292845471:3802698292845981 1976:1980 hsa_system_get_info(2, 0x7f51e016c5f0) = 0 +3802698292846371:3802698292846881 1976:1980 hsa_system_get_info(2, 0x7f51e016c5f8) = 0 +3802698292847271:3802698292847781 1976:1980 hsa_system_get_info(2, 0x7f51e016c600) = 0 +3802698292848171:3802698292848681 1976:1980 hsa_system_get_info(2, 0x7f51e016c608) = 0 +3802698292849071:3802698292849581 1976:1980 hsa_system_get_info(2, 0x7f51e016c610) = 0 +3802698292849971:3802698292850481 1976:1980 hsa_system_get_info(2, 0x7f51e016c618) = 0 +3802698292850871:3802698292851381 1976:1980 hsa_system_get_info(2, 0x7f51e016c620) = 0 +3802698292851771:3802698292852281 1976:1980 hsa_system_get_info(2, 0x7f51e016c628) = 0 +3802698292852671:3802698292853181 1976:1980 hsa_system_get_info(2, 0x7f51e016c630) = 0 +3802698292853571:3802698292854081 1976:1980 hsa_system_get_info(2, 0x7f51e016c638) = 0 +3802698292854471:3802698292854981 1976:1980 hsa_system_get_info(2, 0x7f51e016c640) = 0 +3802698292855381:3802698292855891 1976:1980 hsa_system_get_info(2, 0x7f51e016c648) = 0 +3802698292857681:3802698292858201 1976:1980 hsa_system_get_info(2, 0x7f51e016c650) = 0 +3802698292858591:3802698292859101 1976:1980 hsa_system_get_info(2, 0x7f51e016c658) = 0 +3802698292859491:3802698292860001 1976:1980 hsa_system_get_info(2, 0x7f51e016c660) = 0 +3802698292860391:3802698292860901 1976:1980 hsa_system_get_info(2, 0x7f51e016c668) = 0 +3802698292861291:3802698292861801 1976:1980 hsa_system_get_info(2, 0x7f51e016c670) = 0 +3802698292862191:3802698292862701 1976:1980 hsa_system_get_info(2, 0x7f51e016c678) = 0 +3802698292863091:3802698292863601 1976:1980 hsa_system_get_info(2, 0x7f51e016c680) = 0 +3802698292863991:3802698292864501 1976:1980 hsa_system_get_info(2, 0x7f51e016c688) = 0 +3802698292864891:3802698292865401 1976:1980 hsa_system_get_info(2, 0x7f51e016c690) = 0 +3802698292865791:3802698292866301 1976:1980 hsa_system_get_info(2, 0x7f51e016c698) = 0 +3802698292866691:3802698292867201 1976:1980 hsa_system_get_info(2, 0x7f51e016c6a0) = 0 +3802698292867591:3802698292868101 1976:1980 hsa_system_get_info(2, 0x7f51e016c6a8) = 0 +3802698292868491:3802698292869011 1976:1980 hsa_system_get_info(2, 0x7f51e016c6b0) = 0 +3802698292869391:3802698292869911 1976:1980 hsa_system_get_info(2, 0x7f51e016c6b8) = 0 +3802698292870291:3802698292870811 1976:1980 hsa_system_get_info(2, 0x7f51e016c6c0) = 0 +3802698292871191:3802698292871711 1976:1980 hsa_system_get_info(2, 0x7f51e016c6c8) = 0 +3802698292872091:3802698292872611 1976:1980 hsa_system_get_info(2, 0x7f51e016c6d0) = 0 +3802698292872991:3802698292873511 1976:1980 hsa_system_get_info(2, 0x7f51e016c6d8) = 0 +3802698292873891:3802698292874411 1976:1980 hsa_system_get_info(2, 0x7f51e016c6e0) = 0 +3802698292874801:3802698292875311 1976:1980 hsa_system_get_info(2, 0x7f51e016c6e8) = 0 +3802698292875701:3802698292876211 1976:1980 hsa_system_get_info(2, 0x7f51e016c6f0) = 0 +3802698292876601:3802698292877111 1976:1980 hsa_system_get_info(2, 0x7f51e016c6f8) = 0 +3802698292877501:3802698292878011 1976:1980 hsa_system_get_info(2, 0x7f51e016c700) = 0 +3802698292878401:3802698292878911 1976:1980 hsa_system_get_info(2, 0x7f51e016c708) = 0 +3802698292879301:3802698292879811 1976:1980 hsa_system_get_info(2, 0x7f51e016c710) = 0 +3802698292880201:3802698292880711 1976:1980 hsa_system_get_info(2, 0x7f51e016c718) = 0 +3802698292881101:3802698292881621 1976:1980 hsa_system_get_info(2, 0x7f51e016c720) = 0 +3802698292882001:3802698292882521 1976:1980 hsa_system_get_info(2, 0x7f51e016c728) = 0 +3802698292883731:3802698292884251 1976:1980 hsa_system_get_info(2, 0x7f51e016c730) = 0 +3802698292884641:3802698292885151 1976:1980 hsa_system_get_info(2, 0x7f51e016c738) = 0 +3802698292885541:3802698292886051 1976:1980 hsa_system_get_info(2, 0x7f51e016c740) = 0 +3802698292886441:3802698292886961 1976:1980 hsa_system_get_info(2, 0x7f51e016c748) = 0 +3802698292887341:3802698292887861 1976:1980 hsa_system_get_info(2, 0x7f51e016c750) = 0 +3802698292888241:3802698292888761 1976:1980 hsa_system_get_info(2, 0x7f51e016c758) = 0 +3802698292889151:3802698292889661 1976:1980 hsa_system_get_info(2, 0x7f51e016c760) = 0 +3802698292890051:3802698292890561 1976:1980 hsa_system_get_info(2, 0x7f51e016c768) = 0 +3802698292890951:3802698292891461 1976:1980 hsa_system_get_info(2, 0x7f51e016c770) = 0 +3802698292891851:3802698292892361 1976:1980 hsa_system_get_info(2, 0x7f51e016c778) = 0 +3802698292892751:3802698292893261 1976:1980 hsa_system_get_info(2, 0x7f51e016c780) = 0 +3802698292893651:3802698292894161 1976:1980 hsa_system_get_info(2, 0x7f51e016c788) = 0 +3802698292894551:3802698292895061 1976:1980 hsa_system_get_info(2, 0x7f51e016c790) = 0 +3802698292895451:3802698292895961 1976:1980 hsa_system_get_info(2, 0x7f51e016c798) = 0 +3802698292896351:3802698292896861 1976:1980 hsa_system_get_info(2, 0x7f51e016c7a0) = 0 +3802698292897251:3802698292897761 1976:1980 hsa_system_get_info(2, 0x7f51e016c7a8) = 0 +3802698292898151:3802698292898661 1976:1980 hsa_system_get_info(2, 0x7f51e016c7b0) = 0 +3802698292899051:3802698292899561 1976:1980 hsa_system_get_info(2, 0x7f51e016c7b8) = 0 +3802698292899951:3802698292900461 1976:1980 hsa_system_get_info(2, 0x7f51e016c7c0) = 0 +3802698292900851:3802698292901361 1976:1980 hsa_system_get_info(2, 0x7f51e016c7c8) = 0 +3802698292901751:3802698292902261 1976:1980 hsa_system_get_info(2, 0x7f51e016c7d0) = 0 +3802698292902651:3802698292903161 1976:1980 hsa_system_get_info(2, 0x7f51e016c7d8) = 0 +3802698292903551:3802698292904061 1976:1980 hsa_system_get_info(2, 0x7f51e016c7e0) = 0 +3802698292904451:3802698292904961 1976:1980 hsa_system_get_info(2, 0x7f51e016c7e8) = 0 +3802698292905351:3802698292905861 1976:1980 hsa_system_get_info(2, 0x7f51e016c7f0) = 0 +3802698292906251:3802698292906761 1976:1980 hsa_system_get_info(2, 0x7f51e016c7f8) = 0 +3802698292907151:3802698292907661 1976:1980 hsa_system_get_info(2, 0x7f51e016c800) = 0 +3802698292908051:3802698292908571 1976:1980 hsa_system_get_info(2, 0x7f51e016c808) = 0 +3802698292908951:3802698292909471 1976:1980 hsa_system_get_info(2, 0x7f51e016c810) = 0 +3802698292910741:3802698292911261 1976:1980 hsa_system_get_info(2, 0x7f51e016c818) = 0 +3802698292911651:3802698292912161 1976:1980 hsa_system_get_info(2, 0x7f51e016c820) = 0 +3802698292912551:3802698292913061 1976:1980 hsa_system_get_info(2, 0x7f51e016c828) = 0 +3802698292913451:3802698292913961 1976:1980 hsa_system_get_info(2, 0x7f51e016c830) = 0 +3802698292914351:3802698292914861 1976:1980 hsa_system_get_info(2, 0x7f51e016c838) = 0 +3802698292915251:3802698292915761 1976:1980 hsa_system_get_info(2, 0x7f51e016c840) = 0 +3802698292916151:3802698292916671 1976:1980 hsa_system_get_info(2, 0x7f51e016c848) = 0 +3802698292917061:3802698292917571 1976:1980 hsa_system_get_info(2, 0x7f51e016c850) = 0 +3802698292917961:3802698292918471 1976:1980 hsa_system_get_info(2, 0x7f51e016c858) = 0 +3802698292918861:3802698292919381 1976:1980 hsa_system_get_info(2, 0x7f51e016c860) = 0 +3802698292919761:3802698292920281 1976:1980 hsa_system_get_info(2, 0x7f51e016c868) = 0 +3802698292920671:3802698292921181 1976:1980 hsa_system_get_info(2, 0x7f51e016c870) = 0 +3802698292921571:3802698292922081 1976:1980 hsa_system_get_info(2, 0x7f51e016c878) = 0 +3802698292922471:3802698292922991 1976:1980 hsa_system_get_info(2, 0x7f51e016c880) = 0 +3802698292923371:3802698292923891 1976:1980 hsa_system_get_info(2, 0x7f51e016c888) = 0 +3802698292924271:3802698292924791 1976:1980 hsa_system_get_info(2, 0x7f51e016c890) = 0 +3802698292925171:3802698292925691 1976:1980 hsa_system_get_info(2, 0x7f51e016c898) = 0 +3802698292926071:3802698292926591 1976:1980 hsa_system_get_info(2, 0x7f51e016c8a0) = 0 +3802698292926971:3802698292927491 1976:1980 hsa_system_get_info(2, 0x7f51e016c8a8) = 0 +3802698292927881:3802698292928391 1976:1980 hsa_system_get_info(2, 0x7f51e016c8b0) = 0 +3802698292928781:3802698292929291 1976:1980 hsa_system_get_info(2, 0x7f51e016c8b8) = 0 +3802698292929681:3802698292930191 1976:1980 hsa_system_get_info(2, 0x7f51e016c8c0) = 0 +3802698292930581:3802698292931091 1976:1980 hsa_system_get_info(2, 0x7f51e016c8c8) = 0 +3802698292931481:3802698292931991 1976:1980 hsa_system_get_info(2, 0x7f51e016c8d0) = 0 +3802698292932381:3802698292932891 1976:1980 hsa_system_get_info(2, 0x7f51e016c8d8) = 0 +3802698292933281:3802698292933791 1976:1980 hsa_system_get_info(2, 0x7f51e016c8e0) = 0 +3802698292934181:3802698292934691 1976:1980 hsa_system_get_info(2, 0x7f51e016c8e8) = 0 +3802698292935082:3802698292935592 1976:1980 hsa_system_get_info(2, 0x7f51e016c8f0) = 0 +3802698292936832:3802698292937352 1976:1980 hsa_system_get_info(2, 0x7f51e016c8f8) = 0 +3802698292937742:3802698292938252 1976:1980 hsa_system_get_info(2, 0x7f51e016c900) = 0 +3802698292938642:3802698292939152 1976:1980 hsa_system_get_info(2, 0x7f51e016c908) = 0 +3802698292939542:3802698292940052 1976:1980 hsa_system_get_info(2, 0x7f51e016c910) = 0 +3802698292940442:3802698292940952 1976:1980 hsa_system_get_info(2, 0x7f51e016c918) = 0 +3802698292941342:3802698292941852 1976:1980 hsa_system_get_info(2, 0x7f51e016c920) = 0 +3802698292942242:3802698292942752 1976:1980 hsa_system_get_info(2, 0x7f51e016c928) = 0 +3802698292943142:3802698292943652 1976:1980 hsa_system_get_info(2, 0x7f51e016c930) = 0 +3802698292944042:3802698292944552 1976:1980 hsa_system_get_info(2, 0x7f51e016c938) = 0 +3802698292944942:3802698292945452 1976:1980 hsa_system_get_info(2, 0x7f51e016c940) = 0 +3802698292945842:3802698292946352 1976:1980 hsa_system_get_info(2, 0x7f51e016c948) = 0 +3802698292946742:3802698292947252 1976:1980 hsa_system_get_info(2, 0x7f51e016c950) = 0 +3802698292947642:3802698292948152 1976:1980 hsa_system_get_info(2, 0x7f51e016c958) = 0 +3802698292948542:3802698292949052 1976:1980 hsa_system_get_info(2, 0x7f51e016c960) = 0 +3802698292949442:3802698292949952 1976:1980 hsa_system_get_info(2, 0x7f51e016c968) = 0 +3802698292950342:3802698292950852 1976:1980 hsa_system_get_info(2, 0x7f51e016c970) = 0 +3802698292951242:3802698292951752 1976:1980 hsa_system_get_info(2, 0x7f51e016c978) = 0 +3802698292952142:3802698292952652 1976:1980 hsa_system_get_info(2, 0x7f51e016c980) = 0 +3802698292953042:3802698292953552 1976:1980 hsa_system_get_info(2, 0x7f51e016c988) = 0 +3802698292953942:3802698292954452 1976:1980 hsa_system_get_info(2, 0x7f51e016c990) = 0 +3802698292954842:3802698292955362 1976:1980 hsa_system_get_info(2, 0x7f51e016c998) = 0 +3802698292955742:3802698292956262 1976:1980 hsa_system_get_info(2, 0x7f51e016c9a0) = 0 +3802698292956642:3802698292957162 1976:1980 hsa_system_get_info(2, 0x7f51e016c9a8) = 0 +3802698292957542:3802698292958062 1976:1980 hsa_system_get_info(2, 0x7f51e016c9b0) = 0 +3802698292958442:3802698292958962 1976:1980 hsa_system_get_info(2, 0x7f51e016c9b8) = 0 +3802698292959342:3802698292959862 1976:1980 hsa_system_get_info(2, 0x7f51e016c9c0) = 0 +3802698292960242:3802698292960762 1976:1980 hsa_system_get_info(2, 0x7f51e016c9c8) = 0 +3802698292961142:3802698292961662 1976:1980 hsa_system_get_info(2, 0x7f51e016c9d0) = 0 +3802698292962042:3802698292962562 1976:1980 hsa_system_get_info(2, 0x7f51e016c9d8) = 0 +3802698292963832:3802698292964352 1976:1980 hsa_system_get_info(2, 0x7f51e016c9e0) = 0 +3802698292964742:3802698292965252 1976:1980 hsa_system_get_info(2, 0x7f51e016c9e8) = 0 +3802698292965642:3802698292966152 1976:1980 hsa_system_get_info(2, 0x7f51e016c9f0) = 0 +3802698292966542:3802698292967052 1976:1980 hsa_system_get_info(2, 0x7f51e016c9f8) = 0 +3802698292967442:3802698292967952 1976:1980 hsa_system_get_info(2, 0x7f51e016ca00) = 0 +3802698292968342:3802698292968852 1976:1980 hsa_system_get_info(2, 0x7f51e016ca08) = 0 +3802698292969242:3802698292969762 1976:1980 hsa_system_get_info(2, 0x7f51e016ca10) = 0 +3802698292970142:3802698292970662 1976:1980 hsa_system_get_info(2, 0x7f51e016ca18) = 0 +3802698292971042:3802698292971562 1976:1980 hsa_system_get_info(2, 0x7f51e016ca20) = 0 +3802698292971942:3802698292972462 1976:1980 hsa_system_get_info(2, 0x7f51e016ca28) = 0 +3802698292972842:3802698292973362 1976:1980 hsa_system_get_info(2, 0x7f51e016ca30) = 0 +3802698292973742:3802698292974262 1976:1980 hsa_system_get_info(2, 0x7f51e016ca38) = 0 +3802698292974642:3802698292975162 1976:1980 hsa_system_get_info(2, 0x7f51e016ca40) = 0 +3802698292975542:3802698292976062 1976:1980 hsa_system_get_info(2, 0x7f51e016ca48) = 0 +3802698292976442:3802698292976962 1976:1980 hsa_system_get_info(2, 0x7f51e016ca50) = 0 +3802698292977352:3802698292977862 1976:1980 hsa_system_get_info(2, 0x7f51e016ca58) = 0 +3802698292978252:3802698292978762 1976:1980 hsa_system_get_info(2, 0x7f51e016ca60) = 0 +3802698292979152:3802698292979662 1976:1980 hsa_system_get_info(2, 0x7f51e016ca68) = 0 +3802698292980052:3802698292980562 1976:1980 hsa_system_get_info(2, 0x7f51e016ca70) = 0 +3802698292980952:3802698292981462 1976:1980 hsa_system_get_info(2, 0x7f51e016ca78) = 0 +3802698292981852:3802698292982362 1976:1980 hsa_system_get_info(2, 0x7f51e016ca80) = 0 +3802698292982752:3802698292983262 1976:1980 hsa_system_get_info(2, 0x7f51e016ca88) = 0 +3802698292983652:3802698292984162 1976:1980 hsa_system_get_info(2, 0x7f51e016ca90) = 0 +3802698292984552:3802698292985062 1976:1980 hsa_system_get_info(2, 0x7f51e016ca98) = 0 +3802698292985452:3802698292985962 1976:1980 hsa_system_get_info(2, 0x7f51e016caa0) = 0 +3802698292986352:3802698292986862 1976:1980 hsa_system_get_info(2, 0x7f51e016caa8) = 0 +3802698292987252:3802698292987762 1976:1980 hsa_system_get_info(2, 0x7f51e016cab0) = 0 +3802698292988152:3802698292988662 1976:1980 hsa_system_get_info(2, 0x7f51e016cab8) = 0 +3802698292989892:3802698292990412 1976:1980 hsa_system_get_info(2, 0x7f51e016cac0) = 0 +3802698292990802:3802698292991312 1976:1980 hsa_system_get_info(2, 0x7f51e016cac8) = 0 +3802698292991702:3802698292992212 1976:1980 hsa_system_get_info(2, 0x7f51e016cad0) = 0 +3802698292992602:3802698292993112 1976:1980 hsa_system_get_info(2, 0x7f51e016cad8) = 0 +3802698292993502:3802698292994012 1976:1980 hsa_system_get_info(2, 0x7f51e016cae0) = 0 +3802698292994402:3802698292994912 1976:1980 hsa_system_get_info(2, 0x7f51e016cae8) = 0 +3802698292995302:3802698292995812 1976:1980 hsa_system_get_info(2, 0x7f51e016caf0) = 0 +3802698292996202:3802698292996712 1976:1980 hsa_system_get_info(2, 0x7f51e016caf8) = 0 +3802698292997102:3802698292997612 1976:1980 hsa_system_get_info(2, 0x7f51e016cb00) = 0 +3802698292998002:3802698292998522 1976:1980 hsa_system_get_info(2, 0x7f51e016cb08) = 0 +3802698292998902:3802698292999422 1976:1980 hsa_system_get_info(2, 0x7f51e016cb10) = 0 +3802698292999802:3802698293000322 1976:1980 hsa_system_get_info(2, 0x7f51e016cb18) = 0 +3802698293000702:3802698293001222 1976:1980 hsa_system_get_info(2, 0x7f51e016cb20) = 0 +3802698293001602:3802698293002122 1976:1980 hsa_system_get_info(2, 0x7f51e016cb28) = 0 +3802698293002502:3802698293003022 1976:1980 hsa_system_get_info(2, 0x7f51e016cb30) = 0 +3802698293003402:3802698293003922 1976:1980 hsa_system_get_info(2, 0x7f51e016cb38) = 0 +3802698293004302:3802698293004822 1976:1980 hsa_system_get_info(2, 0x7f51e016cb40) = 0 +3802698293005202:3802698293005722 1976:1980 hsa_system_get_info(2, 0x7f51e016cb48) = 0 +3802698293006102:3802698293006622 1976:1980 hsa_system_get_info(2, 0x7f51e016cb50) = 0 +3802698293007002:3802698293007522 1976:1980 hsa_system_get_info(2, 0x7f51e016cb58) = 0 +3802698293007902:3802698293008422 1976:1980 hsa_system_get_info(2, 0x7f51e016cb60) = 0 +3802698293008802:3802698293009322 1976:1980 hsa_system_get_info(2, 0x7f51e016cb68) = 0 +3802698293009702:3802698293010222 1976:1980 hsa_system_get_info(2, 0x7f51e016cb70) = 0 +3802698293010602:3802698293011122 1976:1980 hsa_system_get_info(2, 0x7f51e016cb78) = 0 +3802698293011502:3802698293012022 1976:1980 hsa_system_get_info(2, 0x7f51e016cb80) = 0 +3802698293012402:3802698293012922 1976:1980 hsa_system_get_info(2, 0x7f51e016cb88) = 0 +3802698293013302:3802698293013822 1976:1980 hsa_system_get_info(2, 0x7f51e016cb90) = 0 +3802698293014202:3802698293014722 1976:1980 hsa_system_get_info(2, 0x7f51e016cb98) = 0 +3802698293015992:3802698293016512 1976:1980 hsa_system_get_info(2, 0x7f51e016cba0) = 0 +3802698293016902:3802698293017422 1976:1980 hsa_system_get_info(2, 0x7f51e016cba8) = 0 +3802698293017802:3802698293018322 1976:1980 hsa_system_get_info(2, 0x7f51e016cbb0) = 0 +3802698293018702:3802698293019222 1976:1980 hsa_system_get_info(2, 0x7f51e016cbb8) = 0 +3802698293019602:3802698293020122 1976:1980 hsa_system_get_info(2, 0x7f51e016cbc0) = 0 +3802698293020502:3802698293021022 1976:1980 hsa_system_get_info(2, 0x7f51e016cbc8) = 0 +3802698293021402:3802698293021922 1976:1980 hsa_system_get_info(2, 0x7f51e016cbd0) = 0 +3802698293022302:3802698293022822 1976:1980 hsa_system_get_info(2, 0x7f51e016cbd8) = 0 +3802698293023202:3802698293023722 1976:1980 hsa_system_get_info(2, 0x7f51e016cbe0) = 0 +3802698293024112:3802698293024622 1976:1980 hsa_system_get_info(2, 0x7f51e016cbe8) = 0 +3802698293025012:3802698293025522 1976:1980 hsa_system_get_info(2, 0x7f51e016cbf0) = 0 +3802698293025912:3802698293026422 1976:1980 hsa_system_get_info(2, 0x7f51e016cbf8) = 0 +3802698293026812:3802698293027322 1976:1980 hsa_system_get_info(2, 0x7f51e016cc00) = 0 +3802698293027712:3802698293028222 1976:1980 hsa_system_get_info(2, 0x7f51e016cc08) = 0 +3802698293028612:3802698293029122 1976:1980 hsa_system_get_info(2, 0x7f51e016cc10) = 0 +3802698293029512:3802698293030022 1976:1980 hsa_system_get_info(2, 0x7f51e016cc18) = 0 +3802698293030412:3802698293030922 1976:1980 hsa_system_get_info(2, 0x7f51e016cc20) = 0 +3802698293031312:3802698293031822 1976:1980 hsa_system_get_info(2, 0x7f51e016cc28) = 0 +3802698293032212:3802698293032722 1976:1980 hsa_system_get_info(2, 0x7f51e016cc30) = 0 +3802698293033112:3802698293033622 1976:1980 hsa_system_get_info(2, 0x7f51e016cc38) = 0 +3802698293034012:3802698293034522 1976:1980 hsa_system_get_info(2, 0x7f51e016cc40) = 0 +3802698293034912:3802698293035422 1976:1980 hsa_system_get_info(2, 0x7f51e016cc48) = 0 +3802698293035812:3802698293036322 1976:1980 hsa_system_get_info(2, 0x7f51e016cc50) = 0 +3802698293036712:3802698293037222 1976:1980 hsa_system_get_info(2, 0x7f51e016cc58) = 0 +3802698293037612:3802698293038122 1976:1980 hsa_system_get_info(2, 0x7f51e016cc60) = 0 +3802698293038512:3802698293039022 1976:1980 hsa_system_get_info(2, 0x7f51e016cc68) = 0 +3802698293039412:3802698293039922 1976:1980 hsa_system_get_info(2, 0x7f51e016cc70) = 0 +3802698293040312:3802698293040822 1976:1980 hsa_system_get_info(2, 0x7f51e016cc78) = 0 +3802698293041212:3802698293041722 1976:1980 hsa_system_get_info(2, 0x7f51e016cc80) = 0 +3802698293043102:3802698293043622 1976:1980 hsa_system_get_info(2, 0x7f51e016cc88) = 0 +3802698293044012:3802698293044522 1976:1980 hsa_system_get_info(2, 0x7f51e016cc90) = 0 +3802698293044912:3802698293045422 1976:1980 hsa_system_get_info(2, 0x7f51e016cc98) = 0 +3802698293045812:3802698293046322 1976:1980 hsa_system_get_info(2, 0x7f51e016cca0) = 0 +3802698293046712:3802698293047222 1976:1980 hsa_system_get_info(2, 0x7f51e016cca8) = 0 +3802698293047612:3802698293048132 1976:1980 hsa_system_get_info(2, 0x7f51e016ccb0) = 0 +3802698293048512:3802698293049032 1976:1980 hsa_system_get_info(2, 0x7f51e016ccb8) = 0 +3802698293049412:3802698293049932 1976:1980 hsa_system_get_info(2, 0x7f51e016ccc0) = 0 +3802698293050312:3802698293050832 1976:1980 hsa_system_get_info(2, 0x7f51e016ccc8) = 0 +3802698293051212:3802698293051732 1976:1980 hsa_system_get_info(2, 0x7f51e016ccd0) = 0 +3802698293052112:3802698293052632 1976:1980 hsa_system_get_info(2, 0x7f51e016ccd8) = 0 +3802698293053012:3802698293053532 1976:1980 hsa_system_get_info(2, 0x7f51e016cce0) = 0 +3802698293053912:3802698293054432 1976:1980 hsa_system_get_info(2, 0x7f51e016cce8) = 0 +3802698293054812:3802698293055332 1976:1980 hsa_system_get_info(2, 0x7f51e016ccf0) = 0 +3802698293055712:3802698293056232 1976:1980 hsa_system_get_info(2, 0x7f51e016ccf8) = 0 +3802698293056612:3802698293057132 1976:1980 hsa_system_get_info(2, 0x7f51e016cd00) = 0 +3802698293057512:3802698293058032 1976:1980 hsa_system_get_info(2, 0x7f51e016cd08) = 0 +3802698293058412:3802698293058932 1976:1980 hsa_system_get_info(2, 0x7f51e016cd10) = 0 +3802698293059312:3802698293059832 1976:1980 hsa_system_get_info(2, 0x7f51e016cd18) = 0 +3802698293060212:3802698293060732 1976:1980 hsa_system_get_info(2, 0x7f51e016cd20) = 0 +3802698293061122:3802698293061632 1976:1980 hsa_system_get_info(2, 0x7f51e016cd28) = 0 +3802698293062022:3802698293062532 1976:1980 hsa_system_get_info(2, 0x7f51e016cd30) = 0 +3802698293062922:3802698293063432 1976:1980 hsa_system_get_info(2, 0x7f51e016cd38) = 0 +3802698293063822:3802698293064332 1976:1980 hsa_system_get_info(2, 0x7f51e016cd40) = 0 +3802698293064722:3802698293065232 1976:1980 hsa_system_get_info(2, 0x7f51e016cd48) = 0 +3802698293065622:3802698293066132 1976:1980 hsa_system_get_info(2, 0x7f51e016cd50) = 0 +3802698293066522:3802698293067032 1976:1980 hsa_system_get_info(2, 0x7f51e016cd58) = 0 +3802698293067422:3802698293067932 1976:1980 hsa_system_get_info(2, 0x7f51e016cd60) = 0 +3802698293069392:3802698293069903 1976:1980 hsa_system_get_info(2, 0x7f51e016cd68) = 0 +3802698293070293:3802698293070813 1976:1980 hsa_system_get_info(2, 0x7f51e016cd70) = 0 +3802698293071193:3802698293071713 1976:1980 hsa_system_get_info(2, 0x7f51e016cd78) = 0 +3802698293072093:3802698293072613 1976:1980 hsa_system_get_info(2, 0x7f51e016cd80) = 0 +3802698293072993:3802698293073513 1976:1980 hsa_system_get_info(2, 0x7f51e016cd88) = 0 +3802698293073893:3802698293074413 1976:1980 hsa_system_get_info(2, 0x7f51e016cd90) = 0 +3802698293074793:3802698293075313 1976:1980 hsa_system_get_info(2, 0x7f51e016cd98) = 0 +3802698293075693:3802698293076213 1976:1980 hsa_system_get_info(2, 0x7f51e016cda0) = 0 +3802698293076603:3802698293077113 1976:1980 hsa_system_get_info(2, 0x7f51e016cda8) = 0 +3802698293077503:3802698293078013 1976:1980 hsa_system_get_info(2, 0x7f51e016cdb0) = 0 +3802698293078403:3802698293078913 1976:1980 hsa_system_get_info(2, 0x7f51e016cdb8) = 0 +3802698293079303:3802698293079813 1976:1980 hsa_system_get_info(2, 0x7f51e016cdc0) = 0 +3802698293080203:3802698293080713 1976:1980 hsa_system_get_info(2, 0x7f51e016cdc8) = 0 +3802698293081103:3802698293081613 1976:1980 hsa_system_get_info(2, 0x7f51e016cdd0) = 0 +3802698293082003:3802698293082513 1976:1980 hsa_system_get_info(2, 0x7f51e016cdd8) = 0 +3802698293082903:3802698293083413 1976:1980 hsa_system_get_info(2, 0x7f51e016cde0) = 0 +3802698293083803:3802698293084313 1976:1980 hsa_system_get_info(2, 0x7f51e016cde8) = 0 +3802698293084703:3802698293085213 1976:1980 hsa_system_get_info(2, 0x7f51e016cdf0) = 0 +3802698293085603:3802698293086113 1976:1980 hsa_system_get_info(2, 0x7f51e016cdf8) = 0 +3802698293086503:3802698293087013 1976:1980 hsa_system_get_info(2, 0x7f51e016ce00) = 0 +3802698293087403:3802698293087913 1976:1980 hsa_system_get_info(2, 0x7f51e016ce08) = 0 +3802698293088303:3802698293088813 1976:1980 hsa_system_get_info(2, 0x7f51e016ce10) = 0 +3802698293089203:3802698293089713 1976:1980 hsa_system_get_info(2, 0x7f51e016ce18) = 0 +3802698293090103:3802698293090613 1976:1980 hsa_system_get_info(2, 0x7f51e016ce20) = 0 +3802698293091003:3802698293091523 1976:1980 hsa_system_get_info(2, 0x7f51e016ce28) = 0 +3802698293091903:3802698293092423 1976:1980 hsa_system_get_info(2, 0x7f51e016ce30) = 0 +3802698293092803:3802698293093323 1976:1980 hsa_system_get_info(2, 0x7f51e016ce38) = 0 +3802698293093703:3802698293094223 1976:1980 hsa_system_get_info(2, 0x7f51e016ce40) = 0 +3802698293094603:3802698293095123 1976:1980 hsa_system_get_info(2, 0x7f51e016ce48) = 0 +3802698293096233:3802698293096753 1976:1980 hsa_system_get_info(2, 0x7f51e016ce50) = 0 +3802698293097133:3802698293097653 1976:1980 hsa_system_get_info(2, 0x7f51e016ce58) = 0 +3802698293098033:3802698293098553 1976:1980 hsa_system_get_info(2, 0x7f51e016ce60) = 0 +3802698293098933:3802698293099453 1976:1980 hsa_system_get_info(2, 0x7f51e016ce68) = 0 +3802698293099833:3802698293100353 1976:1980 hsa_system_get_info(2, 0x7f51e016ce70) = 0 +3802698293100733:3802698293101253 1976:1980 hsa_system_get_info(2, 0x7f51e016ce78) = 0 +3802698293101633:3802698293102153 1976:1980 hsa_system_get_info(2, 0x7f51e016ce80) = 0 +3802698293102543:3802698293103053 1976:1980 hsa_system_get_info(2, 0x7f51e016ce88) = 0 +3802698293103443:3802698293103953 1976:1980 hsa_system_get_info(2, 0x7f51e016ce90) = 0 +3802698293104343:3802698293104853 1976:1980 hsa_system_get_info(2, 0x7f51e016ce98) = 0 +3802698293105243:3802698293105753 1976:1980 hsa_system_get_info(2, 0x7f51e016cea0) = 0 +3802698293106143:3802698293106653 1976:1980 hsa_system_get_info(2, 0x7f51e016cea8) = 0 +3802698293107043:3802698293107553 1976:1980 hsa_system_get_info(2, 0x7f51e016ceb0) = 0 +3802698293107943:3802698293108453 1976:1980 hsa_system_get_info(2, 0x7f51e016ceb8) = 0 +3802698293108843:3802698293109353 1976:1980 hsa_system_get_info(2, 0x7f51e016cec0) = 0 +3802698293109743:3802698293110253 1976:1980 hsa_system_get_info(2, 0x7f51e016cec8) = 0 +3802698293110643:3802698293111153 1976:1980 hsa_system_get_info(2, 0x7f51e016ced0) = 0 +3802698293111543:3802698293112053 1976:1980 hsa_system_get_info(2, 0x7f51e016ced8) = 0 +3802698293112443:3802698293112953 1976:1980 hsa_system_get_info(2, 0x7f51e016cee0) = 0 +3802698293113343:3802698293113853 1976:1980 hsa_system_get_info(2, 0x7f51e016cee8) = 0 +3802698293114243:3802698293114753 1976:1980 hsa_system_get_info(2, 0x7f51e016cef0) = 0 +3802698293115143:3802698293115653 1976:1980 hsa_system_get_info(2, 0x7f51e016cef8) = 0 +3802698293116043:3802698293116553 1976:1980 hsa_system_get_info(2, 0x7f51e016cf00) = 0 +3802698293116943:3802698293117453 1976:1980 hsa_system_get_info(2, 0x7f51e016cf08) = 0 +3802698293117843:3802698293118353 1976:1980 hsa_system_get_info(2, 0x7f51e016cf10) = 0 +3802698293118743:3802698293119253 1976:1980 hsa_system_get_info(2, 0x7f51e016cf18) = 0 +3802698293119643:3802698293120153 1976:1980 hsa_system_get_info(2, 0x7f51e016cf20) = 0 +3802698293120543:3802698293121053 1976:1980 hsa_system_get_info(2, 0x7f51e016cf28) = 0 +3802698293122343:3802698293122863 1976:1980 hsa_system_get_info(2, 0x7f51e016cf30) = 0 +3802698293123253:3802698293123763 1976:1980 hsa_system_get_info(2, 0x7f51e016cf38) = 0 +3802698293124153:3802698293124663 1976:1980 hsa_system_get_info(2, 0x7f51e016cf40) = 0 +3802698293125053:3802698293125563 1976:1980 hsa_system_get_info(2, 0x7f51e016cf48) = 0 +3802698293125953:3802698293126463 1976:1980 hsa_system_get_info(2, 0x7f51e016cf50) = 0 +3802698293126853:3802698293127363 1976:1980 hsa_system_get_info(2, 0x7f51e016cf58) = 0 +3802698293127753:3802698293128263 1976:1980 hsa_system_get_info(2, 0x7f51e016cf60) = 0 +3802698293128653:3802698293129163 1976:1980 hsa_system_get_info(2, 0x7f51e016cf68) = 0 +3802698293131573:3802698293132093 1976:1980 hsa_system_get_info(2, 0x7f51e016b030) = 0 +3802698293132503:3802698293133023 1976:1980 hsa_system_get_info(2, 0x7f51e016b038) = 0 +3802698293133413:3802698293133923 1976:1980 hsa_system_get_info(2, 0x7f51e016b040) = 0 +3802698293134313:3802698293134823 1976:1980 hsa_system_get_info(2, 0x7f51e016b048) = 0 +3802698293135213:3802698293135723 1976:1980 hsa_system_get_info(2, 0x7f51e016b050) = 0 +3802698293136113:3802698293136623 1976:1980 hsa_system_get_info(2, 0x7f51e016b058) = 0 +3802698293137013:3802698293137523 1976:1980 hsa_system_get_info(2, 0x7f51e016b060) = 0 +3802698293137903:3802698293138423 1976:1980 hsa_system_get_info(2, 0x7f51e016b068) = 0 +3802698293138803:3802698293139323 1976:1980 hsa_system_get_info(2, 0x7f51e016b070) = 0 +3802698293139703:3802698293140223 1976:1980 hsa_system_get_info(2, 0x7f51e016b078) = 0 +3802698293140603:3802698293141123 1976:1980 hsa_system_get_info(2, 0x7f51e016b080) = 0 +3802698293141503:3802698293142023 1976:1980 hsa_system_get_info(2, 0x7f51e016b088) = 0 +3802698293142403:3802698293142923 1976:1980 hsa_system_get_info(2, 0x7f51e016b090) = 0 +3802698293143303:3802698293143823 1976:1980 hsa_system_get_info(2, 0x7f51e016b098) = 0 +3802698293144203:3802698293144723 1976:1980 hsa_system_get_info(2, 0x7f51e016b0a0) = 0 +3802698293145103:3802698293145623 1976:1980 hsa_system_get_info(2, 0x7f51e016b0a8) = 0 +3802698293146003:3802698293146523 1976:1980 hsa_system_get_info(2, 0x7f51e016b0b0) = 0 +3802698293146913:3802698293147423 1976:1980 hsa_system_get_info(2, 0x7f51e016b0b8) = 0 +3802698293147813:3802698293148323 1976:1980 hsa_system_get_info(2, 0x7f51e016b0c0) = 0 +3802698293148703:3802698293149223 1976:1980 hsa_system_get_info(2, 0x7f51e016b0c8) = 0 +3802698293149603:3802698293150123 1976:1980 hsa_system_get_info(2, 0x7f51e016b0d0) = 0 +3802698293151433:3802698293151953 1976:1980 hsa_system_get_info(2, 0x7f51e016b0d8) = 0 +3802698293152343:3802698293152863 1976:1980 hsa_system_get_info(2, 0x7f51e016b0e0) = 0 +3802698293153243:3802698293153763 1976:1980 hsa_system_get_info(2, 0x7f51e016b0e8) = 0 +3802698293154143:3802698293154663 1976:1980 hsa_system_get_info(2, 0x7f51e016b0f0) = 0 +3802698293155043:3802698293155563 1976:1980 hsa_system_get_info(2, 0x7f51e016b0f8) = 0 +3802698293155943:3802698293156463 1976:1980 hsa_system_get_info(2, 0x7f51e016b100) = 0 +3802698293156843:3802698293157363 1976:1980 hsa_system_get_info(2, 0x7f51e016b108) = 0 +3802698293157743:3802698293158263 1976:1980 hsa_system_get_info(2, 0x7f51e016b110) = 0 +3802698293158643:3802698293159163 1976:1980 hsa_system_get_info(2, 0x7f51e016b118) = 0 +3802698293159543:3802698293160063 1976:1980 hsa_system_get_info(2, 0x7f51e016b120) = 0 +3802698293160453:3802698293160963 1976:1980 hsa_system_get_info(2, 0x7f51e016b128) = 0 +3802698293161353:3802698293161863 1976:1980 hsa_system_get_info(2, 0x7f51e016b130) = 0 +3802698293162253:3802698293162763 1976:1980 hsa_system_get_info(2, 0x7f51e016b138) = 0 +3802698293163153:3802698293163663 1976:1980 hsa_system_get_info(2, 0x7f51e016b140) = 0 +3802698293164053:3802698293164563 1976:1980 hsa_system_get_info(2, 0x7f51e016b148) = 0 +3802698293164953:3802698293165463 1976:1980 hsa_system_get_info(2, 0x7f51e016b150) = 0 +3802698293165853:3802698293166363 1976:1980 hsa_system_get_info(2, 0x7f51e016b158) = 0 +3802698293166753:3802698293167263 1976:1980 hsa_system_get_info(2, 0x7f51e016b160) = 0 +3802698293167653:3802698293168163 1976:1980 hsa_system_get_info(2, 0x7f51e016b168) = 0 +3802698293168553:3802698293169063 1976:1980 hsa_system_get_info(2, 0x7f51e016b170) = 0 +3802698293169453:3802698293169973 1976:1980 hsa_system_get_info(2, 0x7f51e016b178) = 0 +3802698293170353:3802698293170873 1976:1980 hsa_system_get_info(2, 0x7f51e016b180) = 0 +3802698293171253:3802698293171773 1976:1980 hsa_system_get_info(2, 0x7f51e016b188) = 0 +3802698293172153:3802698293172673 1976:1980 hsa_system_get_info(2, 0x7f51e016b190) = 0 +3802698293173053:3802698293173573 1976:1980 hsa_system_get_info(2, 0x7f51e016b198) = 0 +3802698293173953:3802698293174473 1976:1980 hsa_system_get_info(2, 0x7f51e016b1a0) = 0 +3802698293174863:3802698293175373 1976:1980 hsa_system_get_info(2, 0x7f51e016b1a8) = 0 +3802698293175763:3802698293176273 1976:1980 hsa_system_get_info(2, 0x7f51e016b1b0) = 0 +3802698293177533:3802698293178053 1976:1980 hsa_system_get_info(2, 0x7f51e016b1b8) = 0 +3802698293178443:3802698293178963 1976:1980 hsa_system_get_info(2, 0x7f51e016b1c0) = 0 +3802698293179343:3802698293179863 1976:1980 hsa_system_get_info(2, 0x7f51e016b1c8) = 0 +3802698293180243:3802698293180763 1976:1980 hsa_system_get_info(2, 0x7f51e016b1d0) = 0 +3802698293181143:3802698293181663 1976:1980 hsa_system_get_info(2, 0x7f51e016b1d8) = 0 +3802698293182043:3802698293182563 1976:1980 hsa_system_get_info(2, 0x7f51e016b1e0) = 0 +3802698293182943:3802698293183463 1976:1980 hsa_system_get_info(2, 0x7f51e016b1e8) = 0 +3802698293183843:3802698293184363 1976:1980 hsa_system_get_info(2, 0x7f51e016b1f0) = 0 +3802698293184743:3802698293185263 1976:1980 hsa_system_get_info(2, 0x7f51e016b1f8) = 0 +3802698293185643:3802698293186163 1976:1980 hsa_system_get_info(2, 0x7f51e016b200) = 0 +3802698293186543:3802698293187063 1976:1980 hsa_system_get_info(2, 0x7f51e016b208) = 0 +3802698293187453:3802698293187963 1976:1980 hsa_system_get_info(2, 0x7f51e016b210) = 0 +3802698293188353:3802698293188863 1976:1980 hsa_system_get_info(2, 0x7f51e016b218) = 0 +3802698293189253:3802698293189833 1976:1980 hsa_system_get_info(2, 0x7f51e016b220) = 0 +3802698293190313:3802698293190963 1976:1980 hsa_system_get_info(2, 0x7f51e016b228) = 0 +3802698293191443:3802698293192093 1976:1980 hsa_system_get_info(2, 0x7f51e016b230) = 0 +3802698293192583:3802698293193223 1976:1980 hsa_system_get_info(2, 0x7f51e016b238) = 0 +3802698293193713:3802698293194353 1976:1980 hsa_system_get_info(2, 0x7f51e016b240) = 0 +3802698293194843:3802698293195493 1976:1980 hsa_system_get_info(2, 0x7f51e016b248) = 0 +3802698293195973:3802698293196623 1976:1980 hsa_system_get_info(2, 0x7f51e016b250) = 0 +3802698293197103:3802698293197713 1976:1980 hsa_system_get_info(2, 0x7f51e016b258) = 0 +3802698293198103:3802698293198623 1976:1980 hsa_system_get_info(2, 0x7f51e016b260) = 0 +3802698293199003:3802698293199523 1976:1980 hsa_system_get_info(2, 0x7f51e016b268) = 0 +3802698293199913:3802698293200433 1976:1980 hsa_system_get_info(2, 0x7f51e016b270) = 0 +3802698293200823:3802698293201333 1976:1980 hsa_system_get_info(2, 0x7f51e016b278) = 0 +3802698293201723:3802698293202243 1976:1980 hsa_system_get_info(2, 0x7f51e016b280) = 0 +3802698293202633:3802698293203143 1976:1980 hsa_system_get_info(2, 0x7f51e016b288) = 0 +3802698293203533:3802698293204054 1976:1980 hsa_system_get_info(2, 0x7f51e016b290) = 0 +3802698293204444:3802698293204964 1976:1980 hsa_system_get_info(2, 0x7f51e016b298) = 0 +3802698293206064:3802698293206584 1976:1980 hsa_system_get_info(2, 0x7f51e016b2a0) = 0 +3802698293206974:3802698293207484 1976:1980 hsa_system_get_info(2, 0x7f51e016b2a8) = 0 +3802698293207874:3802698293208394 1976:1980 hsa_system_get_info(2, 0x7f51e016b2b0) = 0 +3802698293208784:3802698293209304 1976:1980 hsa_system_get_info(2, 0x7f51e016b2b8) = 0 +3802698293209684:3802698293210204 1976:1980 hsa_system_get_info(2, 0x7f51e016b2c0) = 0 +3802698293210594:3802698293211114 1976:1980 hsa_system_get_info(2, 0x7f51e016b2c8) = 0 +3802698293211494:3802698293212014 1976:1980 hsa_system_get_info(2, 0x7f51e016b2d0) = 0 +3802698293212404:3802698293212924 1976:1980 hsa_system_get_info(2, 0x7f51e016b2d8) = 0 +3802698293213314:3802698293213824 1976:1980 hsa_system_get_info(2, 0x7f51e016b2e0) = 0 +3802698293214214:3802698293214734 1976:1980 hsa_system_get_info(2, 0x7f51e016b2e8) = 0 +3802698293215114:3802698293215634 1976:1980 hsa_system_get_info(2, 0x7f51e016b2f0) = 0 +3802698293216024:3802698293216544 1976:1980 hsa_system_get_info(2, 0x7f51e016b2f8) = 0 +3802698293216924:3802698293217444 1976:1980 hsa_system_get_info(2, 0x7f51e016b300) = 0 +3802698293217834:3802698293218354 1976:1980 hsa_system_get_info(2, 0x7f51e016b308) = 0 +3802698293218734:3802698293219254 1976:1980 hsa_system_get_info(2, 0x7f51e016b310) = 0 +3802698293219644:3802698293220164 1976:1980 hsa_system_get_info(2, 0x7f51e016b318) = 0 +3802698293220544:3802698293221064 1976:1980 hsa_system_get_info(2, 0x7f51e016b320) = 0 +3802698293221454:3802698293221974 1976:1980 hsa_system_get_info(2, 0x7f51e016b328) = 0 +3802698293222354:3802698293222874 1976:1980 hsa_system_get_info(2, 0x7f51e016b330) = 0 +3802698293223264:3802698293223784 1976:1980 hsa_system_get_info(2, 0x7f51e016b338) = 0 +3802698293224164:3802698293224684 1976:1980 hsa_system_get_info(2, 0x7f51e016b340) = 0 +3802698293225074:3802698293225584 1976:1980 hsa_system_get_info(2, 0x7f51e016b348) = 0 +3802698293225974:3802698293226494 1976:1980 hsa_system_get_info(2, 0x7f51e016b350) = 0 +3802698293226884:3802698293227394 1976:1980 hsa_system_get_info(2, 0x7f51e016b358) = 0 +3802698293227784:3802698293228304 1976:1980 hsa_system_get_info(2, 0x7f51e016b360) = 0 +3802698293228694:3802698293229204 1976:1980 hsa_system_get_info(2, 0x7f51e016b368) = 0 +3802698293229594:3802698293230114 1976:1980 hsa_system_get_info(2, 0x7f51e016b370) = 0 +3802698293230504:3802698293231014 1976:1980 hsa_system_get_info(2, 0x7f51e016b378) = 0 +3802698293232864:3802698293233384 1976:1980 hsa_system_get_info(2, 0x7f51e016b380) = 0 +3802698293233774:3802698293234294 1976:1980 hsa_system_get_info(2, 0x7f51e016b388) = 0 +3802698293234684:3802698293235194 1976:1980 hsa_system_get_info(2, 0x7f51e016b390) = 0 +3802698293235584:3802698293236104 1976:1980 hsa_system_get_info(2, 0x7f51e016b398) = 0 +3802698293236494:3802698293237004 1976:1980 hsa_system_get_info(2, 0x7f51e016b3a0) = 0 +3802698293237394:3802698293237914 1976:1980 hsa_system_get_info(2, 0x7f51e016b3a8) = 0 +3802698293238304:3802698293238814 1976:1980 hsa_system_get_info(2, 0x7f51e016b3b0) = 0 +3802698293239204:3802698293239724 1976:1980 hsa_system_get_info(2, 0x7f51e016b3b8) = 0 +3802698293240114:3802698293240624 1976:1980 hsa_system_get_info(2, 0x7f51e016b3c0) = 0 +3802698293241014:3802698293241534 1976:1980 hsa_system_get_info(2, 0x7f51e016b3c8) = 0 +3802698293241924:3802698293242434 1976:1980 hsa_system_get_info(2, 0x7f51e016b3d0) = 0 +3802698293242824:3802698293243344 1976:1980 hsa_system_get_info(2, 0x7f51e016b3d8) = 0 +3802698293243734:3802698293244254 1976:1980 hsa_system_get_info(2, 0x7f51e016b3e0) = 0 +3802698293244634:3802698293245154 1976:1980 hsa_system_get_info(2, 0x7f51e016b3e8) = 0 +3802698293245544:3802698293246064 1976:1980 hsa_system_get_info(2, 0x7f51e016b3f0) = 0 +3802698293246454:3802698293246964 1976:1980 hsa_system_get_info(2, 0x7f51e016b3f8) = 0 +3802698293247354:3802698293247874 1976:1980 hsa_system_get_info(2, 0x7f51e016b400) = 0 +3802698293248264:3802698293248774 1976:1980 hsa_system_get_info(2, 0x7f51e016b408) = 0 +3802698293249164:3802698293249684 1976:1980 hsa_system_get_info(2, 0x7f51e016b410) = 0 +3802698293250074:3802698293250584 1976:1980 hsa_system_get_info(2, 0x7f51e016b418) = 0 +3802698293250974:3802698293251494 1976:1980 hsa_system_get_info(2, 0x7f51e016b420) = 0 +3802698293251884:3802698293252394 1976:1980 hsa_system_get_info(2, 0x7f51e016b428) = 0 +3802698293252784:3802698293253304 1976:1980 hsa_system_get_info(2, 0x7f51e016b430) = 0 +3802698293253694:3802698293254204 1976:1980 hsa_system_get_info(2, 0x7f51e016b438) = 0 +3802698293254594:3802698293255114 1976:1980 hsa_system_get_info(2, 0x7f51e016b440) = 0 +3802698293255504:3802698293256024 1976:1980 hsa_system_get_info(2, 0x7f51e016b448) = 0 +3802698293256404:3802698293256924 1976:1980 hsa_system_get_info(2, 0x7f51e016b450) = 0 +3802698293257314:3802698293257834 1976:1980 hsa_system_get_info(2, 0x7f51e016b458) = 0 +3802698293259014:3802698293259534 1976:1980 hsa_system_get_info(2, 0x7f51e016b460) = 0 +3802698293259924:3802698293260444 1976:1980 hsa_system_get_info(2, 0x7f51e016b468) = 0 +3802698293260834:3802698293261344 1976:1980 hsa_system_get_info(2, 0x7f51e016b470) = 0 +3802698293261734:3802698293262254 1976:1980 hsa_system_get_info(2, 0x7f51e016b478) = 0 +3802698293262644:3802698293263164 1976:1980 hsa_system_get_info(2, 0x7f51e016b480) = 0 +3802698293263554:3802698293264064 1976:1980 hsa_system_get_info(2, 0x7f51e016b488) = 0 +3802698293264454:3802698293264974 1976:1980 hsa_system_get_info(2, 0x7f51e016b490) = 0 +3802698293265364:3802698293265884 1976:1980 hsa_system_get_info(2, 0x7f51e016b498) = 0 +3802698293266264:3802698293266784 1976:1980 hsa_system_get_info(2, 0x7f51e016b4a0) = 0 +3802698293267174:3802698293267694 1976:1980 hsa_system_get_info(2, 0x7f51e016b4a8) = 0 +3802698293268084:3802698293268604 1976:1980 hsa_system_get_info(2, 0x7f51e016b4b0) = 0 +3802698293268984:3802698293269504 1976:1980 hsa_system_get_info(2, 0x7f51e016b4b8) = 0 +3802698293269894:3802698293270414 1976:1980 hsa_system_get_info(2, 0x7f51e016b4c0) = 0 +3802698293270804:3802698293271314 1976:1980 hsa_system_get_info(2, 0x7f51e016b4c8) = 0 +3802698293271704:3802698293272224 1976:1980 hsa_system_get_info(2, 0x7f51e016b4d0) = 0 +3802698293272614:3802698293273134 1976:1980 hsa_system_get_info(2, 0x7f51e016b4d8) = 0 +3802698293273514:3802698293274034 1976:1980 hsa_system_get_info(2, 0x7f51e016b4e0) = 0 +3802698293274424:3802698293274944 1976:1980 hsa_system_get_info(2, 0x7f51e016b4e8) = 0 +3802698293275334:3802698293275844 1976:1980 hsa_system_get_info(2, 0x7f51e016b4f0) = 0 +3802698293276234:3802698293276754 1976:1980 hsa_system_get_info(2, 0x7f51e016b4f8) = 0 +3802698293277144:3802698293277664 1976:1980 hsa_system_get_info(2, 0x7f51e016b500) = 0 +3802698293278044:3802698293278564 1976:1980 hsa_system_get_info(2, 0x7f51e016b508) = 0 +3802698293278954:3802698293279474 1976:1980 hsa_system_get_info(2, 0x7f51e016b510) = 0 +3802698293279864:3802698293280374 1976:1980 hsa_system_get_info(2, 0x7f51e016b518) = 0 +3802698293280764:3802698293281284 1976:1980 hsa_system_get_info(2, 0x7f51e016b520) = 0 +3802698293281674:3802698293282194 1976:1980 hsa_system_get_info(2, 0x7f51e016b528) = 0 +3802698293282574:3802698293283094 1976:1980 hsa_system_get_info(2, 0x7f51e016b530) = 0 +3802698293283484:3802698293284004 1976:1980 hsa_system_get_info(2, 0x7f51e016b538) = 0 +3802698293284394:3802698293284904 1976:1980 hsa_system_get_info(2, 0x7f51e016b540) = 0 +3802698293286184:3802698293286704 1976:1980 hsa_system_get_info(2, 0x7f51e016b548) = 0 +3802698293287094:3802698293287614 1976:1980 hsa_system_get_info(2, 0x7f51e016b550) = 0 +3802698293288004:3802698293288524 1976:1980 hsa_system_get_info(2, 0x7f51e016b558) = 0 +3802698293288904:3802698293289424 1976:1980 hsa_system_get_info(2, 0x7f51e016b560) = 0 +3802698293289814:3802698293290334 1976:1980 hsa_system_get_info(2, 0x7f51e016b568) = 0 +3802698293290714:3802698293291234 1976:1980 hsa_system_get_info(2, 0x7f51e016b570) = 0 +3802698293291624:3802698293292144 1976:1980 hsa_system_get_info(2, 0x7f51e016b578) = 0 +3802698293292534:3802698293293044 1976:1980 hsa_system_get_info(2, 0x7f51e016b580) = 0 +3802698293293434:3802698293293954 1976:1980 hsa_system_get_info(2, 0x7f51e016b588) = 0 +3802698293294334:3802698293294854 1976:1980 hsa_system_get_info(2, 0x7f51e016b590) = 0 +3802698293295244:3802698293295764 1976:1980 hsa_system_get_info(2, 0x7f51e016b598) = 0 +3802698293296144:3802698293296664 1976:1980 hsa_system_get_info(2, 0x7f51e016b5a0) = 0 +3802698293297054:3802698293297574 1976:1980 hsa_system_get_info(2, 0x7f51e016b5a8) = 0 +3802698293297964:3802698293298474 1976:1980 hsa_system_get_info(2, 0x7f51e016b5b0) = 0 +3802698293298864:3802698293299384 1976:1980 hsa_system_get_info(2, 0x7f51e016b5b8) = 0 +3802698293299774:3802698293300284 1976:1980 hsa_system_get_info(2, 0x7f51e016b5c0) = 0 +3802698293300674:3802698293301194 1976:1980 hsa_system_get_info(2, 0x7f51e016b5c8) = 0 +3802698293301584:3802698293302094 1976:1980 hsa_system_get_info(2, 0x7f51e016b5d0) = 0 +3802698293302484:3802698293303004 1976:1980 hsa_system_get_info(2, 0x7f51e016b5d8) = 0 +3802698293303394:3802698293303904 1976:1980 hsa_system_get_info(2, 0x7f51e016b5e0) = 0 +3802698293304294:3802698293304814 1976:1980 hsa_system_get_info(2, 0x7f51e016b5e8) = 0 +3802698293305204:3802698293305714 1976:1980 hsa_system_get_info(2, 0x7f51e016b5f0) = 0 +3802698293306104:3802698293306624 1976:1980 hsa_system_get_info(2, 0x7f51e016b5f8) = 0 +3802698293307014:3802698293307524 1976:1980 hsa_system_get_info(2, 0x7f51e016b600) = 0 +3802698293307914:3802698293308434 1976:1980 hsa_system_get_info(2, 0x7f51e016b608) = 0 +3802698293308824:3802698293309334 1976:1980 hsa_system_get_info(2, 0x7f51e016b610) = 0 +3802698293309724:3802698293310244 1976:1980 hsa_system_get_info(2, 0x7f51e016b618) = 0 +3802698293310634:3802698293311144 1976:1980 hsa_system_get_info(2, 0x7f51e016b620) = 0 +3802698293312234:3802698293312754 1976:1980 hsa_system_get_info(2, 0x7f51e016b628) = 0 +3802698293313144:3802698293313664 1976:1980 hsa_system_get_info(2, 0x7f51e016b630) = 0 +3802698293314054:3802698293314574 1976:1980 hsa_system_get_info(2, 0x7f51e016b638) = 0 +3802698293314954:3802698293315474 1976:1980 hsa_system_get_info(2, 0x7f51e016b640) = 0 +3802698293315864:3802698293316384 1976:1980 hsa_system_get_info(2, 0x7f51e016b648) = 0 +3802698293316774:3802698293317294 1976:1980 hsa_system_get_info(2, 0x7f51e016b650) = 0 +3802698293317674:3802698293318194 1976:1980 hsa_system_get_info(2, 0x7f51e016b658) = 0 +3802698293318584:3802698293319104 1976:1980 hsa_system_get_info(2, 0x7f51e016b660) = 0 +3802698293319494:3802698293320014 1976:1980 hsa_system_get_info(2, 0x7f51e016b668) = 0 +3802698293320394:3802698293320914 1976:1980 hsa_system_get_info(2, 0x7f51e016b670) = 0 +3802698293321304:3802698293321824 1976:1980 hsa_system_get_info(2, 0x7f51e016b678) = 0 +3802698293322214:3802698293322724 1976:1980 hsa_system_get_info(2, 0x7f51e016b680) = 0 +3802698293323114:3802698293323634 1976:1980 hsa_system_get_info(2, 0x7f51e016b688) = 0 +3802698293324024:3802698293324544 1976:1980 hsa_system_get_info(2, 0x7f51e016b690) = 0 +3802698293324934:3802698293325444 1976:1980 hsa_system_get_info(2, 0x7f51e016b698) = 0 +3802698293325834:3802698293326354 1976:1980 hsa_system_get_info(2, 0x7f51e016b6a0) = 0 +3802698293326744:3802698293327264 1976:1980 hsa_system_get_info(2, 0x7f51e016b6a8) = 0 +3802698293327644:3802698293328164 1976:1980 hsa_system_get_info(2, 0x7f51e016b6b0) = 0 +3802698293328554:3802698293329074 1976:1980 hsa_system_get_info(2, 0x7f51e016b6b8) = 0 +3802698293329464:3802698293329984 1976:1980 hsa_system_get_info(2, 0x7f51e016b6c0) = 0 +3802698293330364:3802698293330884 1976:1980 hsa_system_get_info(2, 0x7f51e016b6c8) = 0 +3802698293331274:3802698293331794 1976:1980 hsa_system_get_info(2, 0x7f51e016b6d0) = 0 +3802698293332184:3802698293332694 1976:1980 hsa_system_get_info(2, 0x7f51e016b6d8) = 0 +3802698293333084:3802698293333604 1976:1980 hsa_system_get_info(2, 0x7f51e016b6e0) = 0 +3802698293333994:3802698293334514 1976:1980 hsa_system_get_info(2, 0x7f51e016b6e8) = 0 +3802698293334904:3802698293335414 1976:1980 hsa_system_get_info(2, 0x7f51e016b6f0) = 0 +3802698293335804:3802698293336324 1976:1980 hsa_system_get_info(2, 0x7f51e016b6f8) = 0 +3802698293336714:3802698293337234 1976:1980 hsa_system_get_info(2, 0x7f51e016b700) = 0 +3802698293337614:3802698293338134 1976:1980 hsa_system_get_info(2, 0x7f51e016b708) = 0 +3802698293339225:3802698293339745 1976:1980 hsa_system_get_info(2, 0x7f51e016b710) = 0 +3802698293340145:3802698293340655 1976:1980 hsa_system_get_info(2, 0x7f51e016b718) = 0 +3802698293341045:3802698293341565 1976:1980 hsa_system_get_info(2, 0x7f51e016b720) = 0 +3802698293341955:3802698293342465 1976:1980 hsa_system_get_info(2, 0x7f51e016b728) = 0 +3802698293342855:3802698293343375 1976:1980 hsa_system_get_info(2, 0x7f51e016b730) = 0 +3802698293343765:3802698293344275 1976:1980 hsa_system_get_info(2, 0x7f51e016b738) = 0 +3802698293344665:3802698293345185 1976:1980 hsa_system_get_info(2, 0x7f51e016b740) = 0 +3802698293345575:3802698293346085 1976:1980 hsa_system_get_info(2, 0x7f51e016b748) = 0 +3802698293346475:3802698293346995 1976:1980 hsa_system_get_info(2, 0x7f51e016b750) = 0 +3802698293347385:3802698293347905 1976:1980 hsa_system_get_info(2, 0x7f51e016b758) = 0 +3802698293348285:3802698293348805 1976:1980 hsa_system_get_info(2, 0x7f51e016b760) = 0 +3802698293349195:3802698293349705 1976:1980 hsa_system_get_info(2, 0x7f51e016b768) = 0 +3802698293350095:3802698293350615 1976:1980 hsa_system_get_info(2, 0x7f51e016b770) = 0 +3802698293351005:3802698293351525 1976:1980 hsa_system_get_info(2, 0x7f51e016b778) = 0 +3802698293351905:3802698293352425 1976:1980 hsa_system_get_info(2, 0x7f51e016b780) = 0 +3802698293352815:3802698293353335 1976:1980 hsa_system_get_info(2, 0x7f51e016b788) = 0 +3802698293353725:3802698293354235 1976:1980 hsa_system_get_info(2, 0x7f51e016b790) = 0 +3802698293354625:3802698293355145 1976:1980 hsa_system_get_info(2, 0x7f51e016b798) = 0 +3802698293355535:3802698293356055 1976:1980 hsa_system_get_info(2, 0x7f51e016b7a0) = 0 +3802698293356435:3802698293356955 1976:1980 hsa_system_get_info(2, 0x7f51e016b7a8) = 0 +3802698293357345:3802698293357865 1976:1980 hsa_system_get_info(2, 0x7f51e016b7b0) = 0 +3802698293358245:3802698293358765 1976:1980 hsa_system_get_info(2, 0x7f51e016b7b8) = 0 +3802698293359155:3802698293359665 1976:1980 hsa_system_get_info(2, 0x7f51e016b7c0) = 0 +3802698293360055:3802698293360575 1976:1980 hsa_system_get_info(2, 0x7f51e016b7c8) = 0 +3802698293360965:3802698293361485 1976:1980 hsa_system_get_info(2, 0x7f51e016b7d0) = 0 +3802698293361865:3802698293362385 1976:1980 hsa_system_get_info(2, 0x7f51e016b7d8) = 0 +3802698293362775:3802698293363295 1976:1980 hsa_system_get_info(2, 0x7f51e016b7e0) = 0 +3802698293363675:3802698293364195 1976:1980 hsa_system_get_info(2, 0x7f51e016b7e8) = 0 +3802698293365455:3802698293365975 1976:1980 hsa_system_get_info(2, 0x7f51e016b7f0) = 0 +3802698293366365:3802698293366885 1976:1980 hsa_system_get_info(2, 0x7f51e016b7f8) = 0 +3802698293367275:3802698293367795 1976:1980 hsa_system_get_info(2, 0x7f51e016b800) = 0 +3802698293368175:3802698293368695 1976:1980 hsa_system_get_info(2, 0x7f51e016b808) = 0 +3802698293369085:3802698293369605 1976:1980 hsa_system_get_info(2, 0x7f51e016b810) = 0 +3802698293369995:3802698293370505 1976:1980 hsa_system_get_info(2, 0x7f51e016b818) = 0 +3802698293370895:3802698293371415 1976:1980 hsa_system_get_info(2, 0x7f51e016b820) = 0 +3802698293371805:3802698293372325 1976:1980 hsa_system_get_info(2, 0x7f51e016b828) = 0 +3802698293372715:3802698293373225 1976:1980 hsa_system_get_info(2, 0x7f51e016b830) = 0 +3802698293373615:3802698293374135 1976:1980 hsa_system_get_info(2, 0x7f51e016b838) = 0 +3802698293374525:3802698293375045 1976:1980 hsa_system_get_info(2, 0x7f51e016b840) = 0 +3802698293375435:3802698293375945 1976:1980 hsa_system_get_info(2, 0x7f51e016b848) = 0 +3802698293376335:3802698293376855 1976:1980 hsa_system_get_info(2, 0x7f51e016b850) = 0 +3802698293377245:3802698293377765 1976:1980 hsa_system_get_info(2, 0x7f51e016b858) = 0 +3802698293378145:3802698293378665 1976:1980 hsa_system_get_info(2, 0x7f51e016b860) = 0 +3802698293379055:3802698293379575 1976:1980 hsa_system_get_info(2, 0x7f51e016b868) = 0 +3802698293379965:3802698293380485 1976:1980 hsa_system_get_info(2, 0x7f51e016b870) = 0 +3802698293380865:3802698293381385 1976:1980 hsa_system_get_info(2, 0x7f51e016b878) = 0 +3802698293381775:3802698293382295 1976:1980 hsa_system_get_info(2, 0x7f51e016b880) = 0 +3802698293382685:3802698293383195 1976:1980 hsa_system_get_info(2, 0x7f51e016b888) = 0 +3802698293383585:3802698293384105 1976:1980 hsa_system_get_info(2, 0x7f51e016b890) = 0 +3802698293384495:3802698293385015 1976:1980 hsa_system_get_info(2, 0x7f51e016b898) = 0 +3802698293385405:3802698293385915 1976:1980 hsa_system_get_info(2, 0x7f51e016b8a0) = 0 +3802698293386305:3802698293386825 1976:1980 hsa_system_get_info(2, 0x7f51e016b8a8) = 0 +3802698293387215:3802698293387735 1976:1980 hsa_system_get_info(2, 0x7f51e016b8b0) = 0 +3802698293388125:3802698293388635 1976:1980 hsa_system_get_info(2, 0x7f51e016b8b8) = 0 +3802698293389025:3802698293389545 1976:1980 hsa_system_get_info(2, 0x7f51e016b8c0) = 0 +3802698293389935:3802698293390455 1976:1980 hsa_system_get_info(2, 0x7f51e016b8c8) = 0 +3802698293390845:3802698293391355 1976:1980 hsa_system_get_info(2, 0x7f51e016b8d0) = 0 +3802698293392615:3802698293393135 1976:1980 hsa_system_get_info(2, 0x7f51e016b8d8) = 0 +3802698293393525:3802698293394045 1976:1980 hsa_system_get_info(2, 0x7f51e016b8e0) = 0 +3802698293394435:3802698293394955 1976:1980 hsa_system_get_info(2, 0x7f51e016b8e8) = 0 +3802698293395335:3802698293395855 1976:1980 hsa_system_get_info(2, 0x7f51e016b8f0) = 0 +3802698293396245:3802698293396765 1976:1980 hsa_system_get_info(2, 0x7f51e016b8f8) = 0 +3802698293397145:3802698293397665 1976:1980 hsa_system_get_info(2, 0x7f51e016b900) = 0 +3802698293398055:3802698293398575 1976:1980 hsa_system_get_info(2, 0x7f51e016b908) = 0 +3802698293398955:3802698293399475 1976:1980 hsa_system_get_info(2, 0x7f51e016b910) = 0 +3802698293399865:3802698293400385 1976:1980 hsa_system_get_info(2, 0x7f51e016b918) = 0 +3802698293400775:3802698293401285 1976:1980 hsa_system_get_info(2, 0x7f51e016b920) = 0 +3802698293401675:3802698293402195 1976:1980 hsa_system_get_info(2, 0x7f51e016b928) = 0 +3802698293402585:3802698293403095 1976:1980 hsa_system_get_info(2, 0x7f51e016b930) = 0 +3802698293403485:3802698293404005 1976:1980 hsa_system_get_info(2, 0x7f51e016b938) = 0 +3802698293404395:3802698293404905 1976:1980 hsa_system_get_info(2, 0x7f51e016b940) = 0 +3802698293405295:3802698293405815 1976:1980 hsa_system_get_info(2, 0x7f51e016b948) = 0 +3802698293406205:3802698293406715 1976:1980 hsa_system_get_info(2, 0x7f51e016b950) = 0 +3802698293407105:3802698293407625 1976:1980 hsa_system_get_info(2, 0x7f51e016b958) = 0 +3802698293408015:3802698293408525 1976:1980 hsa_system_get_info(2, 0x7f51e016b960) = 0 +3802698293408915:3802698293409435 1976:1980 hsa_system_get_info(2, 0x7f51e016b968) = 0 +3802698293409825:3802698293410335 1976:1980 hsa_system_get_info(2, 0x7f51e016b970) = 0 +3802698293410725:3802698293411245 1976:1980 hsa_system_get_info(2, 0x7f51e016b978) = 0 +3802698293411635:3802698293412145 1976:1980 hsa_system_get_info(2, 0x7f51e016b980) = 0 +3802698293412535:3802698293413055 1976:1980 hsa_system_get_info(2, 0x7f51e016b988) = 0 +3802698293413445:3802698293413955 1976:1980 hsa_system_get_info(2, 0x7f51e016b990) = 0 +3802698293414345:3802698293414865 1976:1980 hsa_system_get_info(2, 0x7f51e016b998) = 0 +3802698293415255:3802698293415765 1976:1980 hsa_system_get_info(2, 0x7f51e016b9a0) = 0 +3802698293416155:3802698293416675 1976:1980 hsa_system_get_info(2, 0x7f51e016b9a8) = 0 +3802698293417065:3802698293417585 1976:1980 hsa_system_get_info(2, 0x7f51e016b9b0) = 0 +3802698293418695:3802698293419215 1976:1980 hsa_system_get_info(2, 0x7f51e016b9b8) = 0 +3802698293419605:3802698293420125 1976:1980 hsa_system_get_info(2, 0x7f51e016b9c0) = 0 +3802698293420515:3802698293421025 1976:1980 hsa_system_get_info(2, 0x7f51e016b9c8) = 0 +3802698293421415:3802698293421935 1976:1980 hsa_system_get_info(2, 0x7f51e016b9d0) = 0 +3802698293422325:3802698293422845 1976:1980 hsa_system_get_info(2, 0x7f51e016b9d8) = 0 +3802698293423235:3802698293423745 1976:1980 hsa_system_get_info(2, 0x7f51e016b9e0) = 0 +3802698293424135:3802698293424655 1976:1980 hsa_system_get_info(2, 0x7f51e016b9e8) = 0 +3802698293425045:3802698293425565 1976:1980 hsa_system_get_info(2, 0x7f51e016b9f0) = 0 +3802698293425945:3802698293426465 1976:1980 hsa_system_get_info(2, 0x7f51e016b9f8) = 0 +3802698293426855:3802698293427375 1976:1980 hsa_system_get_info(2, 0x7f51e016ba00) = 0 +3802698293427765:3802698293428285 1976:1980 hsa_system_get_info(2, 0x7f51e016ba08) = 0 +3802698293428675:3802698293429195 1976:1980 hsa_system_get_info(2, 0x7f51e016ba10) = 0 +3802698293429585:3802698293430095 1976:1980 hsa_system_get_info(2, 0x7f51e016ba18) = 0 +3802698293430485:3802698293431005 1976:1980 hsa_system_get_info(2, 0x7f51e016ba20) = 0 +3802698293431395:3802698293431915 1976:1980 hsa_system_get_info(2, 0x7f51e016ba28) = 0 +3802698293432305:3802698293432815 1976:1980 hsa_system_get_info(2, 0x7f51e016ba30) = 0 +3802698293433205:3802698293433725 1976:1980 hsa_system_get_info(2, 0x7f51e016ba38) = 0 +3802698293434115:3802698293434635 1976:1980 hsa_system_get_info(2, 0x7f51e016ba40) = 0 +3802698293435025:3802698293435535 1976:1980 hsa_system_get_info(2, 0x7f51e016ba48) = 0 +3802698293435925:3802698293436445 1976:1980 hsa_system_get_info(2, 0x7f51e016ba50) = 0 +3802698293436835:3802698293437355 1976:1980 hsa_system_get_info(2, 0x7f51e016ba58) = 0 +3802698293437735:3802698293438255 1976:1980 hsa_system_get_info(2, 0x7f51e016ba60) = 0 +3802698293438645:3802698293439165 1976:1980 hsa_system_get_info(2, 0x7f51e016ba68) = 0 +3802698293439555:3802698293440065 1976:1980 hsa_system_get_info(2, 0x7f51e016ba70) = 0 +3802698293440455:3802698293440975 1976:1980 hsa_system_get_info(2, 0x7f51e016ba78) = 0 +3802698293441365:3802698293441885 1976:1980 hsa_system_get_info(2, 0x7f51e016ba80) = 0 +3802698293442275:3802698293442785 1976:1980 hsa_system_get_info(2, 0x7f51e016ba88) = 0 +3802698293443175:3802698293443695 1976:1980 hsa_system_get_info(2, 0x7f51e016ba90) = 0 +3802698293444085:3802698293444605 1976:1980 hsa_system_get_info(2, 0x7f51e016ba98) = 0 +3802698293445765:3802698293446285 1976:1980 hsa_system_get_info(2, 0x7f51e016baa0) = 0 +3802698293446675:3802698293447195 1976:1980 hsa_system_get_info(2, 0x7f51e016baa8) = 0 +3802698293447585:3802698293448095 1976:1980 hsa_system_get_info(2, 0x7f51e016bab0) = 0 +3802698293448485:3802698293449005 1976:1980 hsa_system_get_info(2, 0x7f51e016bab8) = 0 +3802698293449395:3802698293449905 1976:1980 hsa_system_get_info(2, 0x7f51e016bac0) = 0 +3802698293450295:3802698293450815 1976:1980 hsa_system_get_info(2, 0x7f51e016bac8) = 0 +3802698293451205:3802698293451715 1976:1980 hsa_system_get_info(2, 0x7f51e016bad0) = 0 +3802698293452105:3802698293452625 1976:1980 hsa_system_get_info(2, 0x7f51e016bad8) = 0 +3802698293453015:3802698293453525 1976:1980 hsa_system_get_info(2, 0x7f51e016bae0) = 0 +3802698293453915:3802698293454435 1976:1980 hsa_system_get_info(2, 0x7f51e016bae8) = 0 +3802698293454825:3802698293455335 1976:1980 hsa_system_get_info(2, 0x7f51e016baf0) = 0 +3802698293455725:3802698293456245 1976:1980 hsa_system_get_info(2, 0x7f51e016baf8) = 0 +3802698293456635:3802698293457155 1976:1980 hsa_system_get_info(2, 0x7f51e016bb00) = 0 +3802698293457535:3802698293458055 1976:1980 hsa_system_get_info(2, 0x7f51e016bb08) = 0 +3802698293458445:3802698293458955 1976:1980 hsa_system_get_info(2, 0x7f51e016bb10) = 0 +3802698293459345:3802698293459865 1976:1980 hsa_system_get_info(2, 0x7f51e016bb18) = 0 +3802698293460255:3802698293460775 1976:1980 hsa_system_get_info(2, 0x7f51e016bb20) = 0 +3802698293461155:3802698293461675 1976:1980 hsa_system_get_info(2, 0x7f51e016bb28) = 0 +3802698293462065:3802698293462585 1976:1980 hsa_system_get_info(2, 0x7f51e016bb30) = 0 +3802698293462965:3802698293463485 1976:1980 hsa_system_get_info(2, 0x7f51e016bb38) = 0 +3802698293463875:3802698293464395 1976:1980 hsa_system_get_info(2, 0x7f51e016bb40) = 0 +3802698293464785:3802698293465295 1976:1980 hsa_system_get_info(2, 0x7f51e016bb48) = 0 +3802698293465685:3802698293466205 1976:1980 hsa_system_get_info(2, 0x7f51e016bb50) = 0 +3802698293466595:3802698293467105 1976:1980 hsa_system_get_info(2, 0x7f51e016bb58) = 0 +3802698293467495:3802698293468015 1976:1980 hsa_system_get_info(2, 0x7f51e016bb60) = 0 +3802698293468405:3802698293468915 1976:1980 hsa_system_get_info(2, 0x7f51e016bb68) = 0 +3802698293469305:3802698293469825 1976:1980 hsa_system_get_info(2, 0x7f51e016bb70) = 0 +3802698293470215:3802698293470725 1976:1980 hsa_system_get_info(2, 0x7f51e016bb78) = 0 +3802698293471825:3802698293472345 1976:1980 hsa_system_get_info(2, 0x7f51e016bb80) = 0 +3802698293472736:3802698293473256 1976:1980 hsa_system_get_info(2, 0x7f51e016bb88) = 0 +3802698293473646:3802698293474166 1976:1980 hsa_system_get_info(2, 0x7f51e016bb90) = 0 +3802698293474546:3802698293475066 1976:1980 hsa_system_get_info(2, 0x7f51e016bb98) = 0 +3802698293475456:3802698293475976 1976:1980 hsa_system_get_info(2, 0x7f51e016bba0) = 0 +3802698293476366:3802698293476876 1976:1980 hsa_system_get_info(2, 0x7f51e016bba8) = 0 +3802698293477266:3802698293477786 1976:1980 hsa_system_get_info(2, 0x7f51e016bbb0) = 0 +3802698293478176:3802698293478696 1976:1980 hsa_system_get_info(2, 0x7f51e016bbb8) = 0 +3802698293479086:3802698293479596 1976:1980 hsa_system_get_info(2, 0x7f51e016bbc0) = 0 +3802698293479986:3802698293480506 1976:1980 hsa_system_get_info(2, 0x7f51e016bbc8) = 0 +3802698293480896:3802698293481416 1976:1980 hsa_system_get_info(2, 0x7f51e016bbd0) = 0 +3802698293481796:3802698293482316 1976:1980 hsa_system_get_info(2, 0x7f51e016bbd8) = 0 +3802698293482706:3802698293483226 1976:1980 hsa_system_get_info(2, 0x7f51e016bbe0) = 0 +3802698293483616:3802698293484136 1976:1980 hsa_system_get_info(2, 0x7f51e016bbe8) = 0 +3802698293484516:3802698293485036 1976:1980 hsa_system_get_info(2, 0x7f51e016bbf0) = 0 +3802698293485426:3802698293485946 1976:1980 hsa_system_get_info(2, 0x7f51e016bbf8) = 0 +3802698293486336:3802698293486856 1976:1980 hsa_system_get_info(2, 0x7f51e016bc00) = 0 +3802698293487246:3802698293487756 1976:1980 hsa_system_get_info(2, 0x7f51e016bc08) = 0 +3802698293488146:3802698293488666 1976:1980 hsa_system_get_info(2, 0x7f51e016bc10) = 0 +3802698293489056:3802698293489576 1976:1980 hsa_system_get_info(2, 0x7f51e016bc18) = 0 +3802698293489966:3802698293490486 1976:1980 hsa_system_get_info(2, 0x7f51e016bc20) = 0 +3802698293490876:3802698293491396 1976:1980 hsa_system_get_info(2, 0x7f51e016bc28) = 0 +3802698293491786:3802698293492296 1976:1980 hsa_system_get_info(2, 0x7f51e016bc30) = 0 +3802698293492686:3802698293493206 1976:1980 hsa_system_get_info(2, 0x7f51e016bc38) = 0 +3802698293493596:3802698293494116 1976:1980 hsa_system_get_info(2, 0x7f51e016bc40) = 0 +3802698293494506:3802698293495026 1976:1980 hsa_system_get_info(2, 0x7f51e016bc48) = 0 +3802698293495416:3802698293495926 1976:1980 hsa_system_get_info(2, 0x7f51e016bc50) = 0 +3802698293496316:3802698293496836 1976:1980 hsa_system_get_info(2, 0x7f51e016bc58) = 0 +3802698293498306:3802698293498826 1976:1980 hsa_system_get_info(2, 0x7f51e016bc60) = 0 +3802698293499216:3802698293499736 1976:1980 hsa_system_get_info(2, 0x7f51e016bc68) = 0 +3802698293500126:3802698293500636 1976:1980 hsa_system_get_info(2, 0x7f51e016bc70) = 0 +3802698293501026:3802698293501546 1976:1980 hsa_system_get_info(2, 0x7f51e016bc78) = 0 +3802698293501936:3802698293502446 1976:1980 hsa_system_get_info(2, 0x7f51e016bc80) = 0 +3802698293502836:3802698293503356 1976:1980 hsa_system_get_info(2, 0x7f51e016bc88) = 0 +3802698293503746:3802698293504256 1976:1980 hsa_system_get_info(2, 0x7f51e016bc90) = 0 +3802698293504646:3802698293505166 1976:1980 hsa_system_get_info(2, 0x7f51e016bc98) = 0 +3802698293505556:3802698293506066 1976:1980 hsa_system_get_info(2, 0x7f51e016bca0) = 0 +3802698293506456:3802698293506976 1976:1980 hsa_system_get_info(2, 0x7f51e016bca8) = 0 +3802698293507366:3802698293507876 1976:1980 hsa_system_get_info(2, 0x7f51e016bcb0) = 0 +3802698293508266:3802698293508786 1976:1980 hsa_system_get_info(2, 0x7f51e016bcb8) = 0 +3802698293509176:3802698293509696 1976:1980 hsa_system_get_info(2, 0x7f51e016bcc0) = 0 +3802698293510076:3802698293510596 1976:1980 hsa_system_get_info(2, 0x7f51e016bcc8) = 0 +3802698293510986:3802698293511506 1976:1980 hsa_system_get_info(2, 0x7f51e016bcd0) = 0 +3802698293511896:3802698293512406 1976:1980 hsa_system_get_info(2, 0x7f51e016bcd8) = 0 +3802698293512796:3802698293513316 1976:1980 hsa_system_get_info(2, 0x7f51e016bce0) = 0 +3802698293513706:3802698293514216 1976:1980 hsa_system_get_info(2, 0x7f51e016bce8) = 0 +3802698293514606:3802698293515126 1976:1980 hsa_system_get_info(2, 0x7f51e016bcf0) = 0 +3802698293515516:3802698293516026 1976:1980 hsa_system_get_info(2, 0x7f51e016bcf8) = 0 +3802698293516416:3802698293516936 1976:1980 hsa_system_get_info(2, 0x7f51e016bd00) = 0 +3802698293517326:3802698293517836 1976:1980 hsa_system_get_info(2, 0x7f51e016bd08) = 0 +3802698293518226:3802698293518746 1976:1980 hsa_system_get_info(2, 0x7f51e016bd10) = 0 +3802698293519136:3802698293519646 1976:1980 hsa_system_get_info(2, 0x7f51e016bd18) = 0 +3802698293520036:3802698293520556 1976:1980 hsa_system_get_info(2, 0x7f51e016bd20) = 0 +3802698293520946:3802698293521456 1976:1980 hsa_system_get_info(2, 0x7f51e016bd28) = 0 +3802698293521846:3802698293522366 1976:1980 hsa_system_get_info(2, 0x7f51e016bd30) = 0 +3802698293522756:3802698293523266 1976:1980 hsa_system_get_info(2, 0x7f51e016bd38) = 0 +3802698293523656:3802698293524176 1976:1980 hsa_system_get_info(2, 0x7f51e016bd40) = 0 +3802698293525226:3802698293525746 1976:1980 hsa_system_get_info(2, 0x7f51e016bd48) = 0 +3802698293526136:3802698293526656 1976:1980 hsa_system_get_info(2, 0x7f51e016bd50) = 0 +3802698293527046:3802698293527556 1976:1980 hsa_system_get_info(2, 0x7f51e016bd58) = 0 +3802698293527946:3802698293528466 1976:1980 hsa_system_get_info(2, 0x7f51e016bd60) = 0 +3802698293528856:3802698293529376 1976:1980 hsa_system_get_info(2, 0x7f51e016bd68) = 0 +3802698293529756:3802698293530276 1976:1980 hsa_system_get_info(2, 0x7f51e016bd70) = 0 +3802698293530666:3802698293531186 1976:1980 hsa_system_get_info(2, 0x7f51e016bd78) = 0 +3802698293531576:3802698293532086 1976:1980 hsa_system_get_info(2, 0x7f51e016bd80) = 0 +3802698293532476:3802698293532996 1976:1980 hsa_system_get_info(2, 0x7f51e016bd88) = 0 +3802698293533386:3802698293533906 1976:1980 hsa_system_get_info(2, 0x7f51e016bd90) = 0 +3802698293534296:3802698293534806 1976:1980 hsa_system_get_info(2, 0x7f51e016bd98) = 0 +3802698293535196:3802698293535716 1976:1980 hsa_system_get_info(2, 0x7f51e016bda0) = 0 +3802698293536106:3802698293536626 1976:1980 hsa_system_get_info(2, 0x7f51e016bda8) = 0 +3802698293537006:3802698293537526 1976:1980 hsa_system_get_info(2, 0x7f51e016bdb0) = 0 +3802698293537916:3802698293538436 1976:1980 hsa_system_get_info(2, 0x7f51e016bdb8) = 0 +3802698293538826:3802698293539336 1976:1980 hsa_system_get_info(2, 0x7f51e016bdc0) = 0 +3802698293539726:3802698293540246 1976:1980 hsa_system_get_info(2, 0x7f51e016bdc8) = 0 +3802698293540636:3802698293541156 1976:1980 hsa_system_get_info(2, 0x7f51e016bdd0) = 0 +3802698293541546:3802698293542056 1976:1980 hsa_system_get_info(2, 0x7f51e016bdd8) = 0 +3802698293542446:3802698293542966 1976:1980 hsa_system_get_info(2, 0x7f51e016bde0) = 0 +3802698293543356:3802698293543876 1976:1980 hsa_system_get_info(2, 0x7f51e016bde8) = 0 +3802698293544266:3802698293544776 1976:1980 hsa_system_get_info(2, 0x7f51e016bdf0) = 0 +3802698293545166:3802698293545686 1976:1980 hsa_system_get_info(2, 0x7f51e016bdf8) = 0 +3802698293546076:3802698293546596 1976:1980 hsa_system_get_info(2, 0x7f51e016be00) = 0 +3802698293546976:3802698293547496 1976:1980 hsa_system_get_info(2, 0x7f51e016be08) = 0 +3802698293547886:3802698293548406 1976:1980 hsa_system_get_info(2, 0x7f51e016be10) = 0 +3802698293548796:3802698293549316 1976:1980 hsa_system_get_info(2, 0x7f51e016be18) = 0 +3802698293549696:3802698293550216 1976:1980 hsa_system_get_info(2, 0x7f51e016be20) = 0 +3802698293551326:3802698293551846 1976:1980 hsa_system_get_info(2, 0x7f51e016be28) = 0 +3802698293552236:3802698293552756 1976:1980 hsa_system_get_info(2, 0x7f51e016be30) = 0 +3802698293553136:3802698293553656 1976:1980 hsa_system_get_info(2, 0x7f51e016be38) = 0 +3802698293554046:3802698293554566 1976:1980 hsa_system_get_info(2, 0x7f51e016be40) = 0 +3802698293554946:3802698293555466 1976:1980 hsa_system_get_info(2, 0x7f51e016be48) = 0 +3802698293555856:3802698293556376 1976:1980 hsa_system_get_info(2, 0x7f51e016be50) = 0 +3802698293556766:3802698293557276 1976:1980 hsa_system_get_info(2, 0x7f51e016be58) = 0 +3802698293557666:3802698293558186 1976:1980 hsa_system_get_info(2, 0x7f51e016be60) = 0 +3802698293558576:3802698293559086 1976:1980 hsa_system_get_info(2, 0x7f51e016be68) = 0 +3802698293559476:3802698293559996 1976:1980 hsa_system_get_info(2, 0x7f51e016be70) = 0 +3802698293560386:3802698293560896 1976:1980 hsa_system_get_info(2, 0x7f51e016be78) = 0 +3802698293561296:3802698293561806 1976:1980 hsa_system_get_info(2, 0x7f51e016be80) = 0 +3802698293562196:3802698293562716 1976:1980 hsa_system_get_info(2, 0x7f51e016be88) = 0 +3802698293563106:3802698293563616 1976:1980 hsa_system_get_info(2, 0x7f51e016be90) = 0 +3802698293564006:3802698293564526 1976:1980 hsa_system_get_info(2, 0x7f51e016be98) = 0 +3802698293564916:3802698293565426 1976:1980 hsa_system_get_info(2, 0x7f51e016bea0) = 0 +3802698293565816:3802698293566336 1976:1980 hsa_system_get_info(2, 0x7f51e016bea8) = 0 +3802698293566726:3802698293567236 1976:1980 hsa_system_get_info(2, 0x7f51e016beb0) = 0 +3802698293567626:3802698293568146 1976:1980 hsa_system_get_info(2, 0x7f51e016beb8) = 0 +3802698293568536:3802698293569046 1976:1980 hsa_system_get_info(2, 0x7f51e016bec0) = 0 +3802698293569436:3802698293569956 1976:1980 hsa_system_get_info(2, 0x7f51e016bec8) = 0 +3802698293570346:3802698293570856 1976:1980 hsa_system_get_info(2, 0x7f51e016bed0) = 0 +3802698293571246:3802698293571766 1976:1980 hsa_system_get_info(2, 0x7f51e016bed8) = 0 +3802698293572156:3802698293572666 1976:1980 hsa_system_get_info(2, 0x7f51e016bee0) = 0 +3802698293573056:3802698293573576 1976:1980 hsa_system_get_info(2, 0x7f51e016bee8) = 0 +3802698293573966:3802698293574476 1976:1980 hsa_system_get_info(2, 0x7f51e016bef0) = 0 +3802698293574866:3802698293575386 1976:1980 hsa_system_get_info(2, 0x7f51e016bef8) = 0 +3802698293575776:3802698293576286 1976:1980 hsa_system_get_info(2, 0x7f51e016bf00) = 0 +3802698293576676:3802698293577196 1976:1980 hsa_system_get_info(2, 0x7f51e016bf08) = 0 +3802698293578546:3802698293579066 1976:1980 hsa_system_get_info(2, 0x7f51e016bf10) = 0 +3802698293579456:3802698293579976 1976:1980 hsa_system_get_info(2, 0x7f51e016bf18) = 0 +3802698293580356:3802698293580876 1976:1980 hsa_system_get_info(2, 0x7f51e016bf20) = 0 +3802698293581266:3802698293581786 1976:1980 hsa_system_get_info(2, 0x7f51e016bf28) = 0 +3802698293582176:3802698293582686 1976:1980 hsa_system_get_info(2, 0x7f51e016bf30) = 0 +3802698293583076:3802698293583596 1976:1980 hsa_system_get_info(2, 0x7f51e016bf38) = 0 +3802698293583986:3802698293584506 1976:1980 hsa_system_get_info(2, 0x7f51e016bf40) = 0 +3802698293584896:3802698293585406 1976:1980 hsa_system_get_info(2, 0x7f51e016bf48) = 0 +3802698293585796:3802698293586316 1976:1980 hsa_system_get_info(2, 0x7f51e016bf50) = 0 +3802698293586706:3802698293587226 1976:1980 hsa_system_get_info(2, 0x7f51e016bf58) = 0 +3802698293587616:3802698293588126 1976:1980 hsa_system_get_info(2, 0x7f51e016bf60) = 0 +3802698293588516:3802698293589036 1976:1980 hsa_system_get_info(2, 0x7f51e016bf68) = 0 +3802698293589426:3802698293589946 1976:1980 hsa_system_get_info(2, 0x7f51e016bf70) = 0 +3802698293590336:3802698293590846 1976:1980 hsa_system_get_info(2, 0x7f51e016bf78) = 0 +3802698293591236:3802698293591756 1976:1980 hsa_system_get_info(2, 0x7f51e016bf80) = 0 +3802698293592146:3802698293592656 1976:1980 hsa_system_get_info(2, 0x7f51e016bf88) = 0 +3802698293593046:3802698293593566 1976:1980 hsa_system_get_info(2, 0x7f51e016bf90) = 0 +3802698293593956:3802698293594466 1976:1980 hsa_system_get_info(2, 0x7f51e016bf98) = 0 +3802698293594856:3802698293595376 1976:1980 hsa_system_get_info(2, 0x7f51e016bfa0) = 0 +3802698293595766:3802698293596276 1976:1980 hsa_system_get_info(2, 0x7f51e016bfa8) = 0 +3802698293596666:3802698293597186 1976:1980 hsa_system_get_info(2, 0x7f51e016bfb0) = 0 +3802698293597576:3802698293598096 1976:1980 hsa_system_get_info(2, 0x7f51e016bfb8) = 0 +3802698293598476:3802698293598996 1976:1980 hsa_system_get_info(2, 0x7f51e016bfc0) = 0 +3802698293599386:3802698293599906 1976:1980 hsa_system_get_info(2, 0x7f51e016bfc8) = 0 +3802698293600286:3802698293600806 1976:1980 hsa_system_get_info(2, 0x7f51e016bfd0) = 0 +3802698293601196:3802698293601716 1976:1980 hsa_system_get_info(2, 0x7f51e016bfd8) = 0 +3802698293602106:3802698293602626 1976:1980 hsa_system_get_info(2, 0x7f51e016bfe0) = 0 +3802698293603006:3802698293603526 1976:1980 hsa_system_get_info(2, 0x7f51e016bfe8) = 0 +3802698293605256:3802698293605776 1976:1980 hsa_system_get_info(2, 0x7f51e016bff0) = 0 +3802698293606176:3802698293606686 1976:1980 hsa_system_get_info(2, 0x7f51e016bff8) = 0 +3802698293607076:3802698293607597 1976:1980 hsa_system_get_info(2, 0x7f51e016c000) = 0 +3802698293607987:3802698293608507 1976:1980 hsa_system_get_info(2, 0x7f51e016c008) = 0 +3802698293608897:3802698293609407 1976:1980 hsa_system_get_info(2, 0x7f51e016c010) = 0 +3802698293609797:3802698293610317 1976:1980 hsa_system_get_info(2, 0x7f51e016c018) = 0 +3802698293610707:3802698293611227 1976:1980 hsa_system_get_info(2, 0x7f51e016c020) = 0 +3802698293611607:3802698293612127 1976:1980 hsa_system_get_info(2, 0x7f51e016c028) = 0 +3802698293612517:3802698293613037 1976:1980 hsa_system_get_info(2, 0x7f51e016c030) = 0 +3802698293613427:3802698293613947 1976:1980 hsa_system_get_info(2, 0x7f51e016c038) = 0 +3802698293614327:3802698293614847 1976:1980 hsa_system_get_info(2, 0x7f51e016c040) = 0 +3802698293615237:3802698293615757 1976:1980 hsa_system_get_info(2, 0x7f51e016c048) = 0 +3802698293616147:3802698293616657 1976:1980 hsa_system_get_info(2, 0x7f51e016c050) = 0 +3802698293617047:3802698293617567 1976:1980 hsa_system_get_info(2, 0x7f51e016c058) = 0 +3802698293617957:3802698293618477 1976:1980 hsa_system_get_info(2, 0x7f51e016c060) = 0 +3802698293618867:3802698293619377 1976:1980 hsa_system_get_info(2, 0x7f51e016c068) = 0 +3802698293619767:3802698293620287 1976:1980 hsa_system_get_info(2, 0x7f51e016c070) = 0 +3802698293620677:3802698293621197 1976:1980 hsa_system_get_info(2, 0x7f51e016c078) = 0 +3802698293621577:3802698293622097 1976:1980 hsa_system_get_info(2, 0x7f51e016c080) = 0 +3802698293622487:3802698293623007 1976:1980 hsa_system_get_info(2, 0x7f51e016c088) = 0 +3802698293623397:3802698293623907 1976:1980 hsa_system_get_info(2, 0x7f51e016c090) = 0 +3802698293624297:3802698293624817 1976:1980 hsa_system_get_info(2, 0x7f51e016c098) = 0 +3802698293625207:3802698293625727 1976:1980 hsa_system_get_info(2, 0x7f51e016c0a0) = 0 +3802698293626107:3802698293626627 1976:1980 hsa_system_get_info(2, 0x7f51e016c0a8) = 0 +3802698293627017:3802698293627537 1976:1980 hsa_system_get_info(2, 0x7f51e016c0b0) = 0 +3802698293627927:3802698293628437 1976:1980 hsa_system_get_info(2, 0x7f51e016c0b8) = 0 +3802698293628827:3802698293629347 1976:1980 hsa_system_get_info(2, 0x7f51e016c0c0) = 0 +3802698293629737:3802698293630257 1976:1980 hsa_system_get_info(2, 0x7f51e016c0c8) = 0 +3802698293630637:3802698293631157 1976:1980 hsa_system_get_info(2, 0x7f51e016c0d0) = 0 +3802698293634217:3802698293634737 1976:1980 hsa_system_get_info(2, 0x7f51e016c0d8) = 0 +3802698293635127:3802698293635647 1976:1980 hsa_system_get_info(2, 0x7f51e016c0e0) = 0 +3802698293636037:3802698293636547 1976:1980 hsa_system_get_info(2, 0x7f51e016c0e8) = 0 +3802698293636937:3802698293637457 1976:1980 hsa_system_get_info(2, 0x7f51e016c0f0) = 0 +3802698293637847:3802698293638357 1976:1980 hsa_system_get_info(2, 0x7f51e016c0f8) = 0 +3802698293638747:3802698293639267 1976:1980 hsa_system_get_info(2, 0x7f51e016c100) = 0 +3802698293639657:3802698293640167 1976:1980 hsa_system_get_info(2, 0x7f51e016c108) = 0 +3802698293640557:3802698293641077 1976:1980 hsa_system_get_info(2, 0x7f51e016c110) = 0 +3802698293641467:3802698293641977 1976:1980 hsa_system_get_info(2, 0x7f51e016c118) = 0 +3802698293642367:3802698293642887 1976:1980 hsa_system_get_info(2, 0x7f51e016c120) = 0 +3802698293643277:3802698293643787 1976:1980 hsa_system_get_info(2, 0x7f51e016c128) = 0 +3802698293644177:3802698293644697 1976:1980 hsa_system_get_info(2, 0x7f51e016c130) = 0 +3802698293645087:3802698293645607 1976:1980 hsa_system_get_info(2, 0x7f51e016c138) = 0 +3802698293645997:3802698293646507 1976:1980 hsa_system_get_info(2, 0x7f51e016c140) = 0 +3802698293646897:3802698293647417 1976:1980 hsa_system_get_info(2, 0x7f51e016c148) = 0 +3802698293647807:3802698293648317 1976:1980 hsa_system_get_info(2, 0x7f51e016c150) = 0 +3802698293648707:3802698293649227 1976:1980 hsa_system_get_info(2, 0x7f51e016c158) = 0 +3802698293649617:3802698293650127 1976:1980 hsa_system_get_info(2, 0x7f51e016c160) = 0 +3802698293650517:3802698293651037 1976:1980 hsa_system_get_info(2, 0x7f51e016c168) = 0 +3802698293651427:3802698293651937 1976:1980 hsa_system_get_info(2, 0x7f51e016c170) = 0 +3802698293652327:3802698293652847 1976:1980 hsa_system_get_info(2, 0x7f51e016c178) = 0 +3802698293653237:3802698293653757 1976:1980 hsa_system_get_info(2, 0x7f51e016c180) = 0 +3802698293654147:3802698293654657 1976:1980 hsa_system_get_info(2, 0x7f51e016c188) = 0 +3802698293655047:3802698293655567 1976:1980 hsa_system_get_info(2, 0x7f51e016c190) = 0 +3802698293655957:3802698293656467 1976:1980 hsa_system_get_info(2, 0x7f51e016c198) = 0 +3802698293656857:3802698293657377 1976:1980 hsa_system_get_info(2, 0x7f51e016c1a0) = 0 +3802698293657767:3802698293658277 1976:1980 hsa_system_get_info(2, 0x7f51e016c1a8) = 0 +3802698293658667:3802698293659187 1976:1980 hsa_system_get_info(2, 0x7f51e016c1b0) = 0 +3802698293660447:3802698293660977 1976:1980 hsa_system_get_info(2, 0x7f51e016c1b8) = 0 +3802698293661367:3802698293661877 1976:1980 hsa_system_get_info(2, 0x7f51e016c1c0) = 0 +3802698293662267:3802698293662787 1976:1980 hsa_system_get_info(2, 0x7f51e016c1c8) = 0 +3802698293663177:3802698293663697 1976:1980 hsa_system_get_info(2, 0x7f51e016c1d0) = 0 +3802698293664087:3802698293664597 1976:1980 hsa_system_get_info(2, 0x7f51e016c1d8) = 0 +3802698293664987:3802698293665507 1976:1980 hsa_system_get_info(2, 0x7f51e016c1e0) = 0 +3802698293665897:3802698293666417 1976:1980 hsa_system_get_info(2, 0x7f51e016c1e8) = 0 +3802698293666807:3802698293667317 1976:1980 hsa_system_get_info(2, 0x7f51e016c1f0) = 0 +3802698293667707:3802698293668227 1976:1980 hsa_system_get_info(2, 0x7f51e016c1f8) = 0 +3802698293668617:3802698293669137 1976:1980 hsa_system_get_info(2, 0x7f51e016c200) = 0 +3802698293669527:3802698293670037 1976:1980 hsa_system_get_info(2, 0x7f51e016c208) = 0 +3802698293670427:3802698293670947 1976:1980 hsa_system_get_info(2, 0x7f51e016c210) = 0 +3802698293671337:3802698293671857 1976:1980 hsa_system_get_info(2, 0x7f51e016c218) = 0 +3802698293672247:3802698293672757 1976:1980 hsa_system_get_info(2, 0x7f51e016c220) = 0 +3802698293673147:3802698293673667 1976:1980 hsa_system_get_info(2, 0x7f51e016c228) = 0 +3802698293674057:3802698293674577 1976:1980 hsa_system_get_info(2, 0x7f51e016c230) = 0 +3802698293674967:3802698293675477 1976:1980 hsa_system_get_info(2, 0x7f51e016c238) = 0 +3802698293675867:3802698293676387 1976:1980 hsa_system_get_info(2, 0x7f51e016c240) = 0 +3802698293676777:3802698293677297 1976:1980 hsa_system_get_info(2, 0x7f51e016c248) = 0 +3802698293677677:3802698293678197 1976:1980 hsa_system_get_info(2, 0x7f51e016c250) = 0 +3802698293678587:3802698293679107 1976:1980 hsa_system_get_info(2, 0x7f51e016c258) = 0 +3802698293679497:3802698293680017 1976:1980 hsa_system_get_info(2, 0x7f51e016c260) = 0 +3802698293680397:3802698293680917 1976:1980 hsa_system_get_info(2, 0x7f51e016c268) = 0 +3802698293681307:3802698293681827 1976:1980 hsa_system_get_info(2, 0x7f51e016c270) = 0 +3802698293682217:3802698293682737 1976:1980 hsa_system_get_info(2, 0x7f51e016c278) = 0 +3802698293683117:3802698293683637 1976:1980 hsa_system_get_info(2, 0x7f51e016c280) = 0 +3802698293684027:3802698293684547 1976:1980 hsa_system_get_info(2, 0x7f51e016c288) = 0 +3802698293684937:3802698293685457 1976:1980 hsa_system_get_info(2, 0x7f51e016c290) = 0 +3802698293685837:3802698293686357 1976:1980 hsa_system_get_info(2, 0x7f51e016c298) = 0 +3802698293687387:3802698293687907 1976:1980 hsa_system_get_info(2, 0x7f51e016c2a0) = 0 +3802698293688297:3802698293688817 1976:1980 hsa_system_get_info(2, 0x7f51e016c2a8) = 0 +3802698293689207:3802698293689717 1976:1980 hsa_system_get_info(2, 0x7f51e016c2b0) = 0 +3802698293690107:3802698293690627 1976:1980 hsa_system_get_info(2, 0x7f51e016c2b8) = 0 +3802698293691017:3802698293691537 1976:1980 hsa_system_get_info(2, 0x7f51e016c2c0) = 0 +3802698293691927:3802698293692447 1976:1980 hsa_system_get_info(2, 0x7f51e016c2c8) = 0 +3802698293692837:3802698293693347 1976:1980 hsa_system_get_info(2, 0x7f51e016c2d0) = 0 +3802698293693737:3802698293694257 1976:1980 hsa_system_get_info(2, 0x7f51e016c2d8) = 0 +3802698293694647:3802698293695167 1976:1980 hsa_system_get_info(2, 0x7f51e016c2e0) = 0 +3802698293695547:3802698293696067 1976:1980 hsa_system_get_info(2, 0x7f51e016c2e8) = 0 +3802698293696457:3802698293696977 1976:1980 hsa_system_get_info(2, 0x7f51e016c2f0) = 0 +3802698293697357:3802698293697877 1976:1980 hsa_system_get_info(2, 0x7f51e016c2f8) = 0 +3802698293698267:3802698293698787 1976:1980 hsa_system_get_info(2, 0x7f51e016c300) = 0 +3802698293699177:3802698293699697 1976:1980 hsa_system_get_info(2, 0x7f51e016c308) = 0 +3802698293700087:3802698293700607 1976:1980 hsa_system_get_info(2, 0x7f51e016c310) = 0 +3802698293700987:3802698293701507 1976:1980 hsa_system_get_info(2, 0x7f51e016c318) = 0 +3802698293701897:3802698293702417 1976:1980 hsa_system_get_info(2, 0x7f51e016c320) = 0 +3802698293702807:3802698293703327 1976:1980 hsa_system_get_info(2, 0x7f51e016c328) = 0 +3802698293703717:3802698293704237 1976:1980 hsa_system_get_info(2, 0x7f51e016c330) = 0 +3802698293704627:3802698293705137 1976:1980 hsa_system_get_info(2, 0x7f51e016c338) = 0 +3802698293705537:3802698293706047 1976:1980 hsa_system_get_info(2, 0x7f51e016c340) = 0 +3802698293706437:3802698293706957 1976:1980 hsa_system_get_info(2, 0x7f51e016c348) = 0 +3802698293707347:3802698293707857 1976:1980 hsa_system_get_info(2, 0x7f51e016c350) = 0 +3802698293708247:3802698293708767 1976:1980 hsa_system_get_info(2, 0x7f51e016c358) = 0 +3802698293709157:3802698293709677 1976:1980 hsa_system_get_info(2, 0x7f51e016c360) = 0 +3802698293710057:3802698293710577 1976:1980 hsa_system_get_info(2, 0x7f51e016c368) = 0 +3802698293710967:3802698293711487 1976:1980 hsa_system_get_info(2, 0x7f51e016c370) = 0 +3802698293711877:3802698293712387 1976:1980 hsa_system_get_info(2, 0x7f51e016c378) = 0 +3802698293713657:3802698293714177 1976:1980 hsa_system_get_info(2, 0x7f51e016c380) = 0 +3802698293714567:3802698293715087 1976:1980 hsa_system_get_info(2, 0x7f51e016c388) = 0 +3802698293715477:3802698293715997 1976:1980 hsa_system_get_info(2, 0x7f51e016c390) = 0 +3802698293716387:3802698293716907 1976:1980 hsa_system_get_info(2, 0x7f51e016c398) = 0 +3802698293717297:3802698293717817 1976:1980 hsa_system_get_info(2, 0x7f51e016c3a0) = 0 +3802698293718207:3802698293718717 1976:1980 hsa_system_get_info(2, 0x7f51e016c3a8) = 0 +3802698293719117:3802698293719627 1976:1980 hsa_system_get_info(2, 0x7f51e016c3b0) = 0 +3802698293720027:3802698293720537 1976:1980 hsa_system_get_info(2, 0x7f51e016c3b8) = 0 +3802698293720927:3802698293721447 1976:1980 hsa_system_get_info(2, 0x7f51e016c3c0) = 0 +3802698293721837:3802698293722357 1976:1980 hsa_system_get_info(2, 0x7f51e016c3c8) = 0 +3802698293722747:3802698293723267 1976:1980 hsa_system_get_info(2, 0x7f51e016c3d0) = 0 +3802698293723647:3802698293724167 1976:1980 hsa_system_get_info(2, 0x7f51e016c3d8) = 0 +3802698293724557:3802698293725077 1976:1980 hsa_system_get_info(2, 0x7f51e016c3e0) = 0 +3802698293725467:3802698293725977 1976:1980 hsa_system_get_info(2, 0x7f51e016c3e8) = 0 +3802698293726367:3802698293726887 1976:1980 hsa_system_get_info(2, 0x7f51e016c3f0) = 0 +3802698293727277:3802698293727797 1976:1980 hsa_system_get_info(2, 0x7f51e016c3f8) = 0 +3802698293728187:3802698293728697 1976:1980 hsa_system_get_info(2, 0x7f51e016c400) = 0 +3802698293729087:3802698293729607 1976:1980 hsa_system_get_info(2, 0x7f51e016c408) = 0 +3802698293729997:3802698293730517 1976:1980 hsa_system_get_info(2, 0x7f51e016c410) = 0 +3802698293730907:3802698293731417 1976:1980 hsa_system_get_info(2, 0x7f51e016c418) = 0 +3802698293731807:3802698293732327 1976:1980 hsa_system_get_info(2, 0x7f51e016c420) = 0 +3802698293732717:3802698293733237 1976:1980 hsa_system_get_info(2, 0x7f51e016c428) = 0 +3802698293733627:3802698293734137 1976:1980 hsa_system_get_info(2, 0x7f51e016c430) = 0 +3802698293734527:3802698293735047 1976:1980 hsa_system_get_info(2, 0x7f51e016c438) = 0 +3802698293735437:3802698293735957 1976:1980 hsa_system_get_info(2, 0x7f51e016c440) = 0 +3802698293736347:3802698293736857 1976:1980 hsa_system_get_info(2, 0x7f51e016c448) = 0 +3802698293737247:3802698293737767 1976:1980 hsa_system_get_info(2, 0x7f51e016c450) = 0 +3802698293738157:3802698293738677 1976:1980 hsa_system_get_info(2, 0x7f51e016c458) = 0 +3802698293739897:3802698293740427 1976:1980 hsa_system_get_info(2, 0x7f51e016c460) = 0 +3802698293740817:3802698293741327 1976:1980 hsa_system_get_info(2, 0x7f51e016c468) = 0 +3802698293741718:3802698293742238 1976:1980 hsa_system_get_info(2, 0x7f51e016c470) = 0 +3802698293742628:3802698293743148 1976:1980 hsa_system_get_info(2, 0x7f51e016c478) = 0 +3802698293743528:3802698293744048 1976:1980 hsa_system_get_info(2, 0x7f51e016c480) = 0 +3802698293744438:3802698293744958 1976:1980 hsa_system_get_info(2, 0x7f51e016c488) = 0 +3802698293745348:3802698293745858 1976:1980 hsa_system_get_info(2, 0x7f51e016c490) = 0 +3802698293746248:3802698293746768 1976:1980 hsa_system_get_info(2, 0x7f51e016c498) = 0 +3802698293747158:3802698293747668 1976:1980 hsa_system_get_info(2, 0x7f51e016c4a0) = 0 +3802698293748058:3802698293748578 1976:1980 hsa_system_get_info(2, 0x7f51e016c4a8) = 0 +3802698293748968:3802698293749478 1976:1980 hsa_system_get_info(2, 0x7f51e016c4b0) = 0 +3802698293749868:3802698293750388 1976:1980 hsa_system_get_info(2, 0x7f51e016c4b8) = 0 +3802698293750778:3802698293751298 1976:1980 hsa_system_get_info(2, 0x7f51e016c4c0) = 0 +3802698293751678:3802698293752198 1976:1980 hsa_system_get_info(2, 0x7f51e016c4c8) = 0 +3802698293752588:3802698293753108 1976:1980 hsa_system_get_info(2, 0x7f51e016c4d0) = 0 +3802698293753498:3802698293754008 1976:1980 hsa_system_get_info(2, 0x7f51e016c4d8) = 0 +3802698293754398:3802698293754918 1976:1980 hsa_system_get_info(2, 0x7f51e016c4e0) = 0 +3802698293755308:3802698293755818 1976:1980 hsa_system_get_info(2, 0x7f51e016c4e8) = 0 +3802698293756208:3802698293756728 1976:1980 hsa_system_get_info(2, 0x7f51e016c4f0) = 0 +3802698293757118:3802698293757628 1976:1980 hsa_system_get_info(2, 0x7f51e016c4f8) = 0 +3802698293758018:3802698293758538 1976:1980 hsa_system_get_info(2, 0x7f51e016c500) = 0 +3802698293758928:3802698293759438 1976:1980 hsa_system_get_info(2, 0x7f51e016c508) = 0 +3802698293759828:3802698293760348 1976:1980 hsa_system_get_info(2, 0x7f51e016c510) = 0 +3802698293760738:3802698293761248 1976:1980 hsa_system_get_info(2, 0x7f51e016c518) = 0 +3802698293761638:3802698293762158 1976:1980 hsa_system_get_info(2, 0x7f51e016c520) = 0 +3802698293762548:3802698293763068 1976:1980 hsa_system_get_info(2, 0x7f51e016c528) = 0 +3802698293763448:3802698293763968 1976:1980 hsa_system_get_info(2, 0x7f51e016c530) = 0 +3802698293764358:3802698293764878 1976:1980 hsa_system_get_info(2, 0x7f51e016c538) = 0 +3802698293765268:3802698293765778 1976:1980 hsa_system_get_info(2, 0x7f51e016c540) = 0 +3802698293766948:3802698293767468 1976:1980 hsa_system_get_info(2, 0x7f51e016c548) = 0 +3802698293767858:3802698293768378 1976:1980 hsa_system_get_info(2, 0x7f51e016c550) = 0 +3802698293768768:3802698293769288 1976:1980 hsa_system_get_info(2, 0x7f51e016c558) = 0 +3802698293769678:3802698293770188 1976:1980 hsa_system_get_info(2, 0x7f51e016c560) = 0 +3802698293770578:3802698293771098 1976:1980 hsa_system_get_info(2, 0x7f51e016c568) = 0 +3802698293771488:3802698293772008 1976:1980 hsa_system_get_info(2, 0x7f51e016c570) = 0 +3802698293772398:3802698293772908 1976:1980 hsa_system_get_info(2, 0x7f51e016c578) = 0 +3802698293773298:3802698293773818 1976:1980 hsa_system_get_info(2, 0x7f51e016c580) = 0 +3802698293774208:3802698293774728 1976:1980 hsa_system_get_info(2, 0x7f51e016c588) = 0 +3802698293775118:3802698293775628 1976:1980 hsa_system_get_info(2, 0x7f51e016c590) = 0 +3802698293776018:3802698293776538 1976:1980 hsa_system_get_info(2, 0x7f51e016c598) = 0 +3802698293776928:3802698293777448 1976:1980 hsa_system_get_info(2, 0x7f51e016c5a0) = 0 +3802698293777838:3802698293778348 1976:1980 hsa_system_get_info(2, 0x7f51e016c5a8) = 0 +3802698293778738:3802698293779258 1976:1980 hsa_system_get_info(2, 0x7f51e016c5b0) = 0 +3802698293779648:3802698293780168 1976:1980 hsa_system_get_info(2, 0x7f51e016c5b8) = 0 +3802698293780558:3802698293781068 1976:1980 hsa_system_get_info(2, 0x7f51e016c5c0) = 0 +3802698293781458:3802698293781978 1976:1980 hsa_system_get_info(2, 0x7f51e016c5c8) = 0 +3802698293782368:3802698293782888 1976:1980 hsa_system_get_info(2, 0x7f51e016c5d0) = 0 +3802698293783278:3802698293783788 1976:1980 hsa_system_get_info(2, 0x7f51e016c5d8) = 0 +3802698293784178:3802698293784698 1976:1980 hsa_system_get_info(2, 0x7f51e016c5e0) = 0 +3802698293785088:3802698293785608 1976:1980 hsa_system_get_info(2, 0x7f51e016c5e8) = 0 +3802698293785998:3802698293786508 1976:1980 hsa_system_get_info(2, 0x7f51e016c5f0) = 0 +3802698293786898:3802698293787418 1976:1980 hsa_system_get_info(2, 0x7f51e016c5f8) = 0 +3802698293787808:3802698293788328 1976:1980 hsa_system_get_info(2, 0x7f51e016c600) = 0 +3802698293788718:3802698293789228 1976:1980 hsa_system_get_info(2, 0x7f51e016c608) = 0 +3802698293789618:3802698293790138 1976:1980 hsa_system_get_info(2, 0x7f51e016c610) = 0 +3802698293790528:3802698293791048 1976:1980 hsa_system_get_info(2, 0x7f51e016c618) = 0 +3802698293791438:3802698293791948 1976:1980 hsa_system_get_info(2, 0x7f51e016c620) = 0 +3802698293793058:3802698293793588 1976:1980 hsa_system_get_info(2, 0x7f51e016c628) = 0 +3802698293793968:3802698293794488 1976:1980 hsa_system_get_info(2, 0x7f51e016c630) = 0 +3802698293794878:3802698293795398 1976:1980 hsa_system_get_info(2, 0x7f51e016c638) = 0 +3802698293795788:3802698293796298 1976:1980 hsa_system_get_info(2, 0x7f51e016c640) = 0 +3802698293796688:3802698293797208 1976:1980 hsa_system_get_info(2, 0x7f51e016c648) = 0 +3802698293797598:3802698293798108 1976:1980 hsa_system_get_info(2, 0x7f51e016c650) = 0 +3802698293798498:3802698293799018 1976:1980 hsa_system_get_info(2, 0x7f51e016c658) = 0 +3802698293799408:3802698293799918 1976:1980 hsa_system_get_info(2, 0x7f51e016c660) = 0 +3802698293800308:3802698293800828 1976:1980 hsa_system_get_info(2, 0x7f51e016c668) = 0 +3802698293801218:3802698293801728 1976:1980 hsa_system_get_info(2, 0x7f51e016c670) = 0 +3802698293802118:3802698293802638 1976:1980 hsa_system_get_info(2, 0x7f51e016c678) = 0 +3802698293803028:3802698293803548 1976:1980 hsa_system_get_info(2, 0x7f51e016c680) = 0 +3802698293803928:3802698293804448 1976:1980 hsa_system_get_info(2, 0x7f51e016c688) = 0 +3802698293804838:3802698293805358 1976:1980 hsa_system_get_info(2, 0x7f51e016c690) = 0 +3802698293805748:3802698293806258 1976:1980 hsa_system_get_info(2, 0x7f51e016c698) = 0 +3802698293806648:3802698293807168 1976:1980 hsa_system_get_info(2, 0x7f51e016c6a0) = 0 +3802698293807558:3802698293808068 1976:1980 hsa_system_get_info(2, 0x7f51e016c6a8) = 0 +3802698293808458:3802698293808978 1976:1980 hsa_system_get_info(2, 0x7f51e016c6b0) = 0 +3802698293809368:3802698293809878 1976:1980 hsa_system_get_info(2, 0x7f51e016c6b8) = 0 +3802698293810268:3802698293810788 1976:1980 hsa_system_get_info(2, 0x7f51e016c6c0) = 0 +3802698293811178:3802698293811688 1976:1980 hsa_system_get_info(2, 0x7f51e016c6c8) = 0 +3802698293812078:3802698293812598 1976:1980 hsa_system_get_info(2, 0x7f51e016c6d0) = 0 +3802698293812988:3802698293813508 1976:1980 hsa_system_get_info(2, 0x7f51e016c6d8) = 0 +3802698293813888:3802698293814408 1976:1980 hsa_system_get_info(2, 0x7f51e016c6e0) = 0 +3802698293814798:3802698293815318 1976:1980 hsa_system_get_info(2, 0x7f51e016c6e8) = 0 +3802698293815698:3802698293816218 1976:1980 hsa_system_get_info(2, 0x7f51e016c6f0) = 0 +3802698293816608:3802698293817128 1976:1980 hsa_system_get_info(2, 0x7f51e016c6f8) = 0 +3802698293817518:3802698293818028 1976:1980 hsa_system_get_info(2, 0x7f51e016c700) = 0 +3802698293818418:3802698293818938 1976:1980 hsa_system_get_info(2, 0x7f51e016c708) = 0 +3802698293820478:3802698293820998 1976:1980 hsa_system_get_info(2, 0x7f51e016c710) = 0 +3802698293821398:3802698293821908 1976:1980 hsa_system_get_info(2, 0x7f51e016c718) = 0 +3802698293822298:3802698293822818 1976:1980 hsa_system_get_info(2, 0x7f51e016c720) = 0 +3802698293823208:3802698293823718 1976:1980 hsa_system_get_info(2, 0x7f51e016c728) = 0 +3802698293824108:3802698293824628 1976:1980 hsa_system_get_info(2, 0x7f51e016c730) = 0 +3802698293825018:3802698293825528 1976:1980 hsa_system_get_info(2, 0x7f51e016c738) = 0 +3802698293825918:3802698293826438 1976:1980 hsa_system_get_info(2, 0x7f51e016c740) = 0 +3802698293826828:3802698293827348 1976:1980 hsa_system_get_info(2, 0x7f51e016c748) = 0 +3802698293827738:3802698293828248 1976:1980 hsa_system_get_info(2, 0x7f51e016c750) = 0 +3802698293828638:3802698293829158 1976:1980 hsa_system_get_info(2, 0x7f51e016c758) = 0 +3802698293829548:3802698293830058 1976:1980 hsa_system_get_info(2, 0x7f51e016c760) = 0 +3802698293830448:3802698293830968 1976:1980 hsa_system_get_info(2, 0x7f51e016c768) = 0 +3802698293831358:3802698293831878 1976:1980 hsa_system_get_info(2, 0x7f51e016c770) = 0 +3802698293832268:3802698293832778 1976:1980 hsa_system_get_info(2, 0x7f51e016c778) = 0 +3802698293833168:3802698293833688 1976:1980 hsa_system_get_info(2, 0x7f51e016c780) = 0 +3802698293834078:3802698293834588 1976:1980 hsa_system_get_info(2, 0x7f51e016c788) = 0 +3802698293834978:3802698293835498 1976:1980 hsa_system_get_info(2, 0x7f51e016c790) = 0 +3802698293835888:3802698293836398 1976:1980 hsa_system_get_info(2, 0x7f51e016c798) = 0 +3802698293836788:3802698293837308 1976:1980 hsa_system_get_info(2, 0x7f51e016c7a0) = 0 +3802698293837698:3802698293838208 1976:1980 hsa_system_get_info(2, 0x7f51e016c7a8) = 0 +3802698293838598:3802698293839118 1976:1980 hsa_system_get_info(2, 0x7f51e016c7b0) = 0 +3802698293839508:3802698293840018 1976:1980 hsa_system_get_info(2, 0x7f51e016c7b8) = 0 +3802698293840408:3802698293840928 1976:1980 hsa_system_get_info(2, 0x7f51e016c7c0) = 0 +3802698293841318:3802698293841838 1976:1980 hsa_system_get_info(2, 0x7f51e016c7c8) = 0 +3802698293842218:3802698293842738 1976:1980 hsa_system_get_info(2, 0x7f51e016c7d0) = 0 +3802698293843128:3802698293843648 1976:1980 hsa_system_get_info(2, 0x7f51e016c7d8) = 0 +3802698293844038:3802698293844548 1976:1980 hsa_system_get_info(2, 0x7f51e016c7e0) = 0 +3802698293844938:3802698293845458 1976:1980 hsa_system_get_info(2, 0x7f51e016c7e8) = 0 +3802698293846548:3802698293847068 1976:1980 hsa_system_get_info(2, 0x7f51e016c7f0) = 0 +3802698293847458:3802698293847978 1976:1980 hsa_system_get_info(2, 0x7f51e016c7f8) = 0 +3802698293848368:3802698293848888 1976:1980 hsa_system_get_info(2, 0x7f51e016c800) = 0 +3802698293849278:3802698293849788 1976:1980 hsa_system_get_info(2, 0x7f51e016c808) = 0 +3802698293850178:3802698293850698 1976:1980 hsa_system_get_info(2, 0x7f51e016c810) = 0 +3802698293851088:3802698293851608 1976:1980 hsa_system_get_info(2, 0x7f51e016c818) = 0 +3802698293851998:3802698293852508 1976:1980 hsa_system_get_info(2, 0x7f51e016c820) = 0 +3802698293852898:3802698293853418 1976:1980 hsa_system_get_info(2, 0x7f51e016c828) = 0 +3802698293853808:3802698293854328 1976:1980 hsa_system_get_info(2, 0x7f51e016c830) = 0 +3802698293854718:3802698293855228 1976:1980 hsa_system_get_info(2, 0x7f51e016c838) = 0 +3802698293855618:3802698293856138 1976:1980 hsa_system_get_info(2, 0x7f51e016c840) = 0 +3802698293856528:3802698293857048 1976:1980 hsa_system_get_info(2, 0x7f51e016c848) = 0 +3802698293857438:3802698293857958 1976:1980 hsa_system_get_info(2, 0x7f51e016c850) = 0 +3802698293858348:3802698293858868 1976:1980 hsa_system_get_info(2, 0x7f51e016c858) = 0 +3802698293859258:3802698293859778 1976:1980 hsa_system_get_info(2, 0x7f51e016c860) = 0 +3802698293860168:3802698293860678 1976:1980 hsa_system_get_info(2, 0x7f51e016c868) = 0 +3802698293861078:3802698293861588 1976:1980 hsa_system_get_info(2, 0x7f51e016c870) = 0 +3802698293861988:3802698293862498 1976:1980 hsa_system_get_info(2, 0x7f51e016c878) = 0 +3802698293862898:3802698293863408 1976:1980 hsa_system_get_info(2, 0x7f51e016c880) = 0 +3802698293863798:3802698293864318 1976:1980 hsa_system_get_info(2, 0x7f51e016c888) = 0 +3802698293864708:3802698293865228 1976:1980 hsa_system_get_info(2, 0x7f51e016c890) = 0 +3802698293865608:3802698293866128 1976:1980 hsa_system_get_info(2, 0x7f51e016c898) = 0 +3802698293866518:3802698293867038 1976:1980 hsa_system_get_info(2, 0x7f51e016c8a0) = 0 +3802698293867428:3802698293867948 1976:1980 hsa_system_get_info(2, 0x7f51e016c8a8) = 0 +3802698293868328:3802698293868848 1976:1980 hsa_system_get_info(2, 0x7f51e016c8b0) = 0 +3802698293869238:3802698293869758 1976:1980 hsa_system_get_info(2, 0x7f51e016c8b8) = 0 +3802698293870148:3802698293870668 1976:1980 hsa_system_get_info(2, 0x7f51e016c8c0) = 0 +3802698293871048:3802698293871568 1976:1980 hsa_system_get_info(2, 0x7f51e016c8c8) = 0 +3802698293871958:3802698293872478 1976:1980 hsa_system_get_info(2, 0x7f51e016c8d0) = 0 +3802698293873568:3802698293874088 1976:1980 hsa_system_get_info(2, 0x7f51e016c8d8) = 0 +3802698293874478:3802698293874998 1976:1980 hsa_system_get_info(2, 0x7f51e016c8e0) = 0 +3802698293875388:3802698293875908 1976:1980 hsa_system_get_info(2, 0x7f51e016c8e8) = 0 +3802698293876289:3802698293876809 1976:1980 hsa_system_get_info(2, 0x7f51e016c8f0) = 0 +3802698293877199:3802698293877719 1976:1980 hsa_system_get_info(2, 0x7f51e016c8f8) = 0 +3802698293878099:3802698293878619 1976:1980 hsa_system_get_info(2, 0x7f51e016c900) = 0 +3802698293879009:3802698293879529 1976:1980 hsa_system_get_info(2, 0x7f51e016c908) = 0 +3802698293879919:3802698293880429 1976:1980 hsa_system_get_info(2, 0x7f51e016c910) = 0 +3802698293880819:3802698293881339 1976:1980 hsa_system_get_info(2, 0x7f51e016c918) = 0 +3802698293881729:3802698293882239 1976:1980 hsa_system_get_info(2, 0x7f51e016c920) = 0 +3802698293882629:3802698293883149 1976:1980 hsa_system_get_info(2, 0x7f51e016c928) = 0 +3802698293883539:3802698293884049 1976:1980 hsa_system_get_info(2, 0x7f51e016c930) = 0 +3802698293884439:3802698293884959 1976:1980 hsa_system_get_info(2, 0x7f51e016c938) = 0 +3802698293885349:3802698293885869 1976:1980 hsa_system_get_info(2, 0x7f51e016c940) = 0 +3802698293886259:3802698293886769 1976:1980 hsa_system_get_info(2, 0x7f51e016c948) = 0 +3802698293887159:3802698293887679 1976:1980 hsa_system_get_info(2, 0x7f51e016c950) = 0 +3802698293888069:3802698293888579 1976:1980 hsa_system_get_info(2, 0x7f51e016c958) = 0 +3802698293888969:3802698293889489 1976:1980 hsa_system_get_info(2, 0x7f51e016c960) = 0 +3802698293889879:3802698293890389 1976:1980 hsa_system_get_info(2, 0x7f51e016c968) = 0 +3802698293890779:3802698293891299 1976:1980 hsa_system_get_info(2, 0x7f51e016c970) = 0 +3802698293891689:3802698293892199 1976:1980 hsa_system_get_info(2, 0x7f51e016c978) = 0 +3802698293892589:3802698293893109 1976:1980 hsa_system_get_info(2, 0x7f51e016c980) = 0 +3802698293893499:3802698293894009 1976:1980 hsa_system_get_info(2, 0x7f51e016c988) = 0 +3802698293894399:3802698293894919 1976:1980 hsa_system_get_info(2, 0x7f51e016c990) = 0 +3802698293895309:3802698293895829 1976:1980 hsa_system_get_info(2, 0x7f51e016c998) = 0 +3802698293896209:3802698293896729 1976:1980 hsa_system_get_info(2, 0x7f51e016c9a0) = 0 +3802698293897119:3802698293897639 1976:1980 hsa_system_get_info(2, 0x7f51e016c9a8) = 0 +3802698293898029:3802698293898539 1976:1980 hsa_system_get_info(2, 0x7f51e016c9b0) = 0 +3802698293899649:3802698293900169 1976:1980 hsa_system_get_info(2, 0x7f51e016c9b8) = 0 +3802698293900559:3802698293901079 1976:1980 hsa_system_get_info(2, 0x7f51e016c9c0) = 0 +3802698293901469:3802698293901989 1976:1980 hsa_system_get_info(2, 0x7f51e016c9c8) = 0 +3802698293902379:3802698293902899 1976:1980 hsa_system_get_info(2, 0x7f51e016c9d0) = 0 +3802698293903289:3802698293903809 1976:1980 hsa_system_get_info(2, 0x7f51e016c9d8) = 0 +3802698293904199:3802698293904709 1976:1980 hsa_system_get_info(2, 0x7f51e016c9e0) = 0 +3802698293905099:3802698293905619 1976:1980 hsa_system_get_info(2, 0x7f51e016c9e8) = 0 +3802698293906009:3802698293906529 1976:1980 hsa_system_get_info(2, 0x7f51e016c9f0) = 0 +3802698293906919:3802698293907429 1976:1980 hsa_system_get_info(2, 0x7f51e016c9f8) = 0 +3802698293907819:3802698293908339 1976:1980 hsa_system_get_info(2, 0x7f51e016ca00) = 0 +3802698293908729:3802698293909249 1976:1980 hsa_system_get_info(2, 0x7f51e016ca08) = 0 +3802698293909639:3802698293910159 1976:1980 hsa_system_get_info(2, 0x7f51e016ca10) = 0 +3802698293910549:3802698293911059 1976:1980 hsa_system_get_info(2, 0x7f51e016ca18) = 0 +3802698293911449:3802698293911969 1976:1980 hsa_system_get_info(2, 0x7f51e016ca20) = 0 +3802698293912359:3802698293912879 1976:1980 hsa_system_get_info(2, 0x7f51e016ca28) = 0 +3802698293913269:3802698293913779 1976:1980 hsa_system_get_info(2, 0x7f51e016ca30) = 0 +3802698293914169:3802698293914689 1976:1980 hsa_system_get_info(2, 0x7f51e016ca38) = 0 +3802698293915079:3802698293915599 1976:1980 hsa_system_get_info(2, 0x7f51e016ca40) = 0 +3802698293915979:3802698293916499 1976:1980 hsa_system_get_info(2, 0x7f51e016ca48) = 0 +3802698293916889:3802698293917409 1976:1980 hsa_system_get_info(2, 0x7f51e016ca50) = 0 +3802698293917799:3802698293918319 1976:1980 hsa_system_get_info(2, 0x7f51e016ca58) = 0 +3802698293918699:3802698293919219 1976:1980 hsa_system_get_info(2, 0x7f51e016ca60) = 0 +3802698293919609:3802698293920129 1976:1980 hsa_system_get_info(2, 0x7f51e016ca68) = 0 +3802698293920519:3802698293921039 1976:1980 hsa_system_get_info(2, 0x7f51e016ca70) = 0 +3802698293921419:3802698293921939 1976:1980 hsa_system_get_info(2, 0x7f51e016ca78) = 0 +3802698293922329:3802698293922849 1976:1980 hsa_system_get_info(2, 0x7f51e016ca80) = 0 +3802698293923239:3802698293923749 1976:1980 hsa_system_get_info(2, 0x7f51e016ca88) = 0 +3802698293924139:3802698293924659 1976:1980 hsa_system_get_info(2, 0x7f51e016ca90) = 0 +3802698293925049:3802698293925569 1976:1980 hsa_system_get_info(2, 0x7f51e016ca98) = 0 +3802698293927129:3802698293927649 1976:1980 hsa_system_get_info(2, 0x7f51e016caa0) = 0 +3802698293928039:3802698293928559 1976:1980 hsa_system_get_info(2, 0x7f51e016caa8) = 0 +3802698293928949:3802698293929469 1976:1980 hsa_system_get_info(2, 0x7f51e016cab0) = 0 +3802698293929859:3802698293930369 1976:1980 hsa_system_get_info(2, 0x7f51e016cab8) = 0 +3802698293930759:3802698293931279 1976:1980 hsa_system_get_info(2, 0x7f51e016cac0) = 0 +3802698293931669:3802698293932179 1976:1980 hsa_system_get_info(2, 0x7f51e016cac8) = 0 +3802698293932569:3802698293933089 1976:1980 hsa_system_get_info(2, 0x7f51e016cad0) = 0 +3802698293933479:3802698293933989 1976:1980 hsa_system_get_info(2, 0x7f51e016cad8) = 0 +3802698293934379:3802698293934899 1976:1980 hsa_system_get_info(2, 0x7f51e016cae0) = 0 +3802698293935289:3802698293935809 1976:1980 hsa_system_get_info(2, 0x7f51e016cae8) = 0 +3802698293936199:3802698293936709 1976:1980 hsa_system_get_info(2, 0x7f51e016caf0) = 0 +3802698293937099:3802698293937619 1976:1980 hsa_system_get_info(2, 0x7f51e016caf8) = 0 +3802698293938009:3802698293938519 1976:1980 hsa_system_get_info(2, 0x7f51e016cb00) = 0 +3802698293938909:3802698293939429 1976:1980 hsa_system_get_info(2, 0x7f51e016cb08) = 0 +3802698293939819:3802698293940329 1976:1980 hsa_system_get_info(2, 0x7f51e016cb10) = 0 +3802698293940719:3802698293941239 1976:1980 hsa_system_get_info(2, 0x7f51e016cb18) = 0 +3802698293941629:3802698293942139 1976:1980 hsa_system_get_info(2, 0x7f51e016cb20) = 0 +3802698293942529:3802698293943049 1976:1980 hsa_system_get_info(2, 0x7f51e016cb28) = 0 +3802698293943439:3802698293943949 1976:1980 hsa_system_get_info(2, 0x7f51e016cb30) = 0 +3802698293944339:3802698293944859 1976:1980 hsa_system_get_info(2, 0x7f51e016cb38) = 0 +3802698293945249:3802698293945769 1976:1980 hsa_system_get_info(2, 0x7f51e016cb40) = 0 +3802698293946149:3802698293946669 1976:1980 hsa_system_get_info(2, 0x7f51e016cb48) = 0 +3802698293947059:3802698293947579 1976:1980 hsa_system_get_info(2, 0x7f51e016cb50) = 0 +3802698293947969:3802698293948479 1976:1980 hsa_system_get_info(2, 0x7f51e016cb58) = 0 +3802698293948869:3802698293949389 1976:1980 hsa_system_get_info(2, 0x7f51e016cb60) = 0 +3802698293949779:3802698293950289 1976:1980 hsa_system_get_info(2, 0x7f51e016cb68) = 0 +3802698293950679:3802698293951199 1976:1980 hsa_system_get_info(2, 0x7f51e016cb70) = 0 +3802698293951589:3802698293952099 1976:1980 hsa_system_get_info(2, 0x7f51e016cb78) = 0 +3802698293953189:3802698293953719 1976:1980 hsa_system_get_info(2, 0x7f51e016cb80) = 0 +3802698293954109:3802698293954619 1976:1980 hsa_system_get_info(2, 0x7f51e016cb88) = 0 +3802698293955009:3802698293955529 1976:1980 hsa_system_get_info(2, 0x7f51e016cb90) = 0 +3802698293955919:3802698293956439 1976:1980 hsa_system_get_info(2, 0x7f51e016cb98) = 0 +3802698293956829:3802698293957339 1976:1980 hsa_system_get_info(2, 0x7f51e016cba0) = 0 +3802698293957729:3802698293958249 1976:1980 hsa_system_get_info(2, 0x7f51e016cba8) = 0 +3802698293958639:3802698293959159 1976:1980 hsa_system_get_info(2, 0x7f51e016cbb0) = 0 +3802698293959549:3802698293960059 1976:1980 hsa_system_get_info(2, 0x7f51e016cbb8) = 0 +3802698293960449:3802698293960969 1976:1980 hsa_system_get_info(2, 0x7f51e016cbc0) = 0 +3802698293961359:3802698293961879 1976:1980 hsa_system_get_info(2, 0x7f51e016cbc8) = 0 +3802698293962259:3802698293962779 1976:1980 hsa_system_get_info(2, 0x7f51e016cbd0) = 0 +3802698293963169:3802698293963689 1976:1980 hsa_system_get_info(2, 0x7f51e016cbd8) = 0 +3802698293964079:3802698293964599 1976:1980 hsa_system_get_info(2, 0x7f51e016cbe0) = 0 +3802698293964979:3802698293965499 1976:1980 hsa_system_get_info(2, 0x7f51e016cbe8) = 0 +3802698293965889:3802698293966409 1976:1980 hsa_system_get_info(2, 0x7f51e016cbf0) = 0 +3802698293966799:3802698293967309 1976:1980 hsa_system_get_info(2, 0x7f51e016cbf8) = 0 +3802698293967699:3802698293968219 1976:1980 hsa_system_get_info(2, 0x7f51e016cc00) = 0 +3802698293968609:3802698293969129 1976:1980 hsa_system_get_info(2, 0x7f51e016cc08) = 0 +3802698293969519:3802698293970029 1976:1980 hsa_system_get_info(2, 0x7f51e016cc10) = 0 +3802698293970419:3802698293970939 1976:1980 hsa_system_get_info(2, 0x7f51e016cc18) = 0 +3802698293971329:3802698293971849 1976:1980 hsa_system_get_info(2, 0x7f51e016cc20) = 0 +3802698293972239:3802698293972749 1976:1980 hsa_system_get_info(2, 0x7f51e016cc28) = 0 +3802698293973139:3802698293973659 1976:1980 hsa_system_get_info(2, 0x7f51e016cc30) = 0 +3802698293974049:3802698293974569 1976:1980 hsa_system_get_info(2, 0x7f51e016cc38) = 0 +3802698293974959:3802698293975469 1976:1980 hsa_system_get_info(2, 0x7f51e016cc40) = 0 +3802698293975859:3802698293976379 1976:1980 hsa_system_get_info(2, 0x7f51e016cc48) = 0 +3802698293976769:3802698293977289 1976:1980 hsa_system_get_info(2, 0x7f51e016cc50) = 0 +3802698293977679:3802698293978189 1976:1980 hsa_system_get_info(2, 0x7f51e016cc58) = 0 +3802698293979759:3802698293980279 1976:1980 hsa_system_get_info(2, 0x7f51e016cc60) = 0 +3802698293980669:3802698293981189 1976:1980 hsa_system_get_info(2, 0x7f51e016cc68) = 0 +3802698293981579:3802698293982099 1976:1980 hsa_system_get_info(2, 0x7f51e016cc70) = 0 +3802698293982489:3802698293983009 1976:1980 hsa_system_get_info(2, 0x7f51e016cc78) = 0 +3802698293983399:3802698293983909 1976:1980 hsa_system_get_info(2, 0x7f51e016cc80) = 0 +3802698293984299:3802698293984819 1976:1980 hsa_system_get_info(2, 0x7f51e016cc88) = 0 +3802698293985209:3802698293985729 1976:1980 hsa_system_get_info(2, 0x7f51e016cc90) = 0 +3802698293986119:3802698293986629 1976:1980 hsa_system_get_info(2, 0x7f51e016cc98) = 0 +3802698293987019:3802698293987539 1976:1980 hsa_system_get_info(2, 0x7f51e016cca0) = 0 +3802698293987929:3802698293988449 1976:1980 hsa_system_get_info(2, 0x7f51e016cca8) = 0 +3802698293988839:3802698293989349 1976:1980 hsa_system_get_info(2, 0x7f51e016ccb0) = 0 +3802698293989739:3802698293990259 1976:1980 hsa_system_get_info(2, 0x7f51e016ccb8) = 0 +3802698293990649:3802698293991169 1976:1980 hsa_system_get_info(2, 0x7f51e016ccc0) = 0 +3802698293991559:3802698293992079 1976:1980 hsa_system_get_info(2, 0x7f51e016ccc8) = 0 +3802698293992459:3802698293992979 1976:1980 hsa_system_get_info(2, 0x7f51e016ccd0) = 0 +3802698293993369:3802698293993889 1976:1980 hsa_system_get_info(2, 0x7f51e016ccd8) = 0 +3802698293994279:3802698293994799 1976:1980 hsa_system_get_info(2, 0x7f51e016cce0) = 0 +3802698293995179:3802698293995699 1976:1980 hsa_system_get_info(2, 0x7f51e016cce8) = 0 +3802698293996089:3802698293996609 1976:1980 hsa_system_get_info(2, 0x7f51e016ccf0) = 0 +3802698293996999:3802698293997519 1976:1980 hsa_system_get_info(2, 0x7f51e016ccf8) = 0 +3802698293997909:3802698293998419 1976:1980 hsa_system_get_info(2, 0x7f51e016cd00) = 0 +3802698293998809:3802698293999329 1976:1980 hsa_system_get_info(2, 0x7f51e016cd08) = 0 +3802698293999719:3802698294000239 1976:1980 hsa_system_get_info(2, 0x7f51e016cd10) = 0 +3802698294000629:3802698294001139 1976:1980 hsa_system_get_info(2, 0x7f51e016cd18) = 0 +3802698294001529:3802698294002049 1976:1980 hsa_system_get_info(2, 0x7f51e016cd20) = 0 +3802698294002439:3802698294002959 1976:1980 hsa_system_get_info(2, 0x7f51e016cd28) = 0 +3802698294003349:3802698294003859 1976:1980 hsa_system_get_info(2, 0x7f51e016cd30) = 0 +3802698294004249:3802698294004769 1976:1980 hsa_system_get_info(2, 0x7f51e016cd38) = 0 +3802698294005159:3802698294005679 1976:1980 hsa_system_get_info(2, 0x7f51e016cd40) = 0 +3802698294006719:3802698294007249 1976:1980 hsa_system_get_info(2, 0x7f51e016cd48) = 0 +3802698294007639:3802698294008149 1976:1980 hsa_system_get_info(2, 0x7f51e016cd50) = 0 +3802698294008539:3802698294009059 1976:1980 hsa_system_get_info(2, 0x7f51e016cd58) = 0 +3802698294009449:3802698294009959 1976:1980 hsa_system_get_info(2, 0x7f51e016cd60) = 0 +3802698294010349:3802698294010870 1976:1980 hsa_system_get_info(2, 0x7f51e016cd68) = 0 +3802698294011260:3802698294011780 1976:1980 hsa_system_get_info(2, 0x7f51e016cd70) = 0 +3802698294012160:3802698294012680 1976:1980 hsa_system_get_info(2, 0x7f51e016cd78) = 0 +3802698294013070:3802698294013590 1976:1980 hsa_system_get_info(2, 0x7f51e016cd80) = 0 +3802698294013980:3802698294014490 1976:1980 hsa_system_get_info(2, 0x7f51e016cd88) = 0 +3802698294014880:3802698294015400 1976:1980 hsa_system_get_info(2, 0x7f51e016cd90) = 0 +3802698294015790:3802698294016300 1976:1980 hsa_system_get_info(2, 0x7f51e016cd98) = 0 +3802698294016690:3802698294017210 1976:1980 hsa_system_get_info(2, 0x7f51e016cda0) = 0 +3802698294017600:3802698294018110 1976:1980 hsa_system_get_info(2, 0x7f51e016cda8) = 0 +3802698294018500:3802698294019020 1976:1980 hsa_system_get_info(2, 0x7f51e016cdb0) = 0 +3802698294019410:3802698294019920 1976:1980 hsa_system_get_info(2, 0x7f51e016cdb8) = 0 +3802698294020310:3802698294020830 1976:1980 hsa_system_get_info(2, 0x7f51e016cdc0) = 0 +3802698294021220:3802698294021740 1976:1980 hsa_system_get_info(2, 0x7f51e016cdc8) = 0 +3802698294022130:3802698294022640 1976:1980 hsa_system_get_info(2, 0x7f51e016cdd0) = 0 +3802698294023030:3802698294023550 1976:1980 hsa_system_get_info(2, 0x7f51e016cdd8) = 0 +3802698294023940:3802698294024450 1976:1980 hsa_system_get_info(2, 0x7f51e016cde0) = 0 +3802698294024840:3802698294025360 1976:1980 hsa_system_get_info(2, 0x7f51e016cde8) = 0 +3802698294025750:3802698294026260 1976:1980 hsa_system_get_info(2, 0x7f51e016cdf0) = 0 +3802698294026650:3802698294027170 1976:1980 hsa_system_get_info(2, 0x7f51e016cdf8) = 0 +3802698294027560:3802698294028080 1976:1980 hsa_system_get_info(2, 0x7f51e016ce00) = 0 +3802698294028460:3802698294028980 1976:1980 hsa_system_get_info(2, 0x7f51e016ce08) = 0 +3802698294029370:3802698294029890 1976:1980 hsa_system_get_info(2, 0x7f51e016ce10) = 0 +3802698294030280:3802698294030790 1976:1980 hsa_system_get_info(2, 0x7f51e016ce18) = 0 +3802698294031180:3802698294031700 1976:1980 hsa_system_get_info(2, 0x7f51e016ce20) = 0 +3802698294033250:3802698294033780 1976:1980 hsa_system_get_info(2, 0x7f51e016ce28) = 0 +3802698294034170:3802698294034690 1976:1980 hsa_system_get_info(2, 0x7f51e016ce30) = 0 +3802698294035070:3802698294035590 1976:1980 hsa_system_get_info(2, 0x7f51e016ce38) = 0 +3802698294035980:3802698294036500 1976:1980 hsa_system_get_info(2, 0x7f51e016ce40) = 0 +3802698294036890:3802698294037410 1976:1980 hsa_system_get_info(2, 0x7f51e016ce48) = 0 +3802698294037790:3802698294038310 1976:1980 hsa_system_get_info(2, 0x7f51e016ce50) = 0 +3802698294038700:3802698294039220 1976:1980 hsa_system_get_info(2, 0x7f51e016ce58) = 0 +3802698294039610:3802698294040130 1976:1980 hsa_system_get_info(2, 0x7f51e016ce60) = 0 +3802698294040520:3802698294041030 1976:1980 hsa_system_get_info(2, 0x7f51e016ce68) = 0 +3802698294041420:3802698294041940 1976:1980 hsa_system_get_info(2, 0x7f51e016ce70) = 0 +3802698294042330:3802698294042850 1976:1980 hsa_system_get_info(2, 0x7f51e016ce78) = 0 +3802698294043240:3802698294043750 1976:1980 hsa_system_get_info(2, 0x7f51e016ce80) = 0 +3802698294044140:3802698294044660 1976:1980 hsa_system_get_info(2, 0x7f51e016ce88) = 0 +3802698294045050:3802698294045570 1976:1980 hsa_system_get_info(2, 0x7f51e016ce90) = 0 +3802698294045960:3802698294046470 1976:1980 hsa_system_get_info(2, 0x7f51e016ce98) = 0 +3802698294046860:3802698294047380 1976:1980 hsa_system_get_info(2, 0x7f51e016cea0) = 0 +3802698294047770:3802698294048290 1976:1980 hsa_system_get_info(2, 0x7f51e016cea8) = 0 +3802698294048680:3802698294049190 1976:1980 hsa_system_get_info(2, 0x7f51e016ceb0) = 0 +3802698294049580:3802698294050100 1976:1980 hsa_system_get_info(2, 0x7f51e016ceb8) = 0 +3802698294050490:3802698294051010 1976:1980 hsa_system_get_info(2, 0x7f51e016cec0) = 0 +3802698294051390:3802698294051910 1976:1980 hsa_system_get_info(2, 0x7f51e016cec8) = 0 +3802698294052300:3802698294052820 1976:1980 hsa_system_get_info(2, 0x7f51e016ced0) = 0 +3802698294053210:3802698294053730 1976:1980 hsa_system_get_info(2, 0x7f51e016ced8) = 0 +3802698294054110:3802698294054630 1976:1980 hsa_system_get_info(2, 0x7f51e016cee0) = 0 +3802698294055020:3802698294055540 1976:1980 hsa_system_get_info(2, 0x7f51e016cee8) = 0 +3802698294055930:3802698294056450 1976:1980 hsa_system_get_info(2, 0x7f51e016cef0) = 0 +3802698294056830:3802698294057350 1976:1980 hsa_system_get_info(2, 0x7f51e016cef8) = 0 +3802698294057740:3802698294058260 1976:1980 hsa_system_get_info(2, 0x7f51e016cf00) = 0 +3802698294058650:3802698294059160 1976:1980 hsa_system_get_info(2, 0x7f51e016cf08) = 0 +3802698294060270:3802698294060790 1976:1980 hsa_system_get_info(2, 0x7f51e016cf10) = 0 +3802698294061180:3802698294061700 1976:1980 hsa_system_get_info(2, 0x7f51e016cf18) = 0 +3802698294062090:3802698294062600 1976:1980 hsa_system_get_info(2, 0x7f51e016cf20) = 0 +3802698294062990:3802698294063510 1976:1980 hsa_system_get_info(2, 0x7f51e016cf28) = 0 +3802698294063900:3802698294064410 1976:1980 hsa_system_get_info(2, 0x7f51e016cf30) = 0 +3802698294064800:3802698294065320 1976:1980 hsa_system_get_info(2, 0x7f51e016cf38) = 0 +3802698294065710:3802698294066230 1976:1980 hsa_system_get_info(2, 0x7f51e016cf40) = 0 +3802698294066620:3802698294067130 1976:1980 hsa_system_get_info(2, 0x7f51e016cf48) = 0 +3802698294067520:3802698294068040 1976:1980 hsa_system_get_info(2, 0x7f51e016cf50) = 0 +3802698294068430:3802698294068940 1976:1980 hsa_system_get_info(2, 0x7f51e016cf58) = 0 +3802698294069330:3802698294069850 1976:1980 hsa_system_get_info(2, 0x7f51e016cf60) = 0 +3802698294070240:3802698294070750 1976:1980 hsa_system_get_info(2, 0x7f51e016cf68) = 0 +3802698294072020:3802698294072540 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698294073040:3802698294074770 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325050) = 0 +3802698294075580:3802698294079900 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325010) = 0 +3802698294080480:3802698294527173 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4c00010, , , , 0, ) = 0 +3802698295902734:3802698295910314 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698295913794:3802698295914944 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698295916164:3802698295917324 1976:1977 hsa_signal_load_relaxed() = 1 +3802698295918314:3802698295923574 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698295924694:3802698295925644 1976:1977 hsa_signal_destroy() = 0 +3802698294530043:3802698295931544 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698295941734:3802698295942924 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698295976804:3802698295977844 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698295984844:3802698295985884 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698295988894:3802698295989934 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698295992954:3802698295993994 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698295997284:3802698295998324 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698295944054:3802698296027275 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698296180236:3802698296183396 1976:1976 hsa_executable_create_alt(1, 0, +3802698296201546:3802698296226296 1976:1976 hsa_code_object_reader_create_from_memory(0x4019c5, , 0x1827490) = 0 +3802698296227586:3802698296454218 1976:1976 hsa_executable_load_agent_code_object(, , , +3802698296455558:3802698296500328 1976:1976 hsa_executable_freeze(, +3802698296572049:3802698296572919 1976:1976 hsa_executable_get_symbol_by_name(, _Z15matrixTransposePfS_i.kd, 0x7fff4ce032a8, 0x7fff4ce032a0) = 0 +3802698296573729:3802698296574149 1976:1976 hsa_executable_symbol_get_info(, 22, 0x1837b48) = 0 +3802698296574679:3802698296575149 1976:1976 hsa_agent_get_info(, 6, 0x7fff4ce032b8) = 0 +3802698296600689:3802698296601309 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698296600269:3802698296601509 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 0 +3802698296604259:3802698296605229 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 0 +3802698296605619:3802698296606219 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698296607809:3802698296608539 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 0 +3802698296610959:3802698296611829 1976:1980 hsa_signal_store_screlease(, 0) = void +3802698296616259:3802698297742897 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698297745517:3802698297746487 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698297747577:3802698297748417 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 1 +3802698297749357:3802698297749937 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 0 +3802698297750767:3802698297751537 1976:1980 hsa_signal_store_screlease(, 1) = void +3802698297752607:3802698297878348 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698297879828:3802698297880378 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698297882248:3802698297887308 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698297888308:3802698297890368 1976:1980 hsa_signal_create(1, , 0, 0x7f53763250b0) = 0 +3802698297891478:3802698297896538 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325070) = 0 +3802698297897628:3802698298416822 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698299868753:3802698299873503 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698299875633:3802698299876953 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698299878193:3802698299879013 1976:1977 hsa_signal_load_relaxed() = 1 +3802698299879963:3802698299883673 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698299888553:3802698299889283 1976:1977 hsa_signal_destroy() = 0 +3802698298418412:3802698299893383 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698299902203:3802698299903523 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698299910483:3802698299911103 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698299907443:3802698299997114 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698307980713:3802698307981963 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698308048644:3802698308438677 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698308442357:3802698308443887 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698308446367:3802698308447167 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698308447837:3802698308450447 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325110) = 0 +3802698308451387:3802698308457897 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763250d0) = 0 +3802698308458817:3802698308464177 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698309804097:3802698309808957 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698309810997:3802698309812297 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698309813347:3802698309814177 1976:1977 hsa_signal_load_relaxed() = 1 +3802698309815017:3802698309818787 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698309819667:3802698309820377 1976:1977 hsa_signal_destroy() = 0 +3802698308465137:3802698309828897 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698309835057:3802698309835667 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698309842747:3802698309843337 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698309845827:3802698309846417 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698309847997:3802698309848587 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698309850197:3802698309850787 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698309852147:3802698309852747 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698309864957:3802698309865557 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698309868587:3802698309869177 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698309836137:3802698309895377 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698309902837:3802698309904047 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 2 +3802698309909307:3802698309909927 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 2 +3802698309911027:3802698309911637 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 2 +3802698309912557:3802698309914097 1976:1980 hsa_signal_store_screlease(, 2) = void +3802698309918097:3802698310184659 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698310186409:3802698310187179 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698310187919:3802698310188449 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 3 +3802698310189159:3802698310189689 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 2 +3802698310190469:3802698310191159 1976:1980 hsa_signal_store_screlease(, 3) = void +3802698310191949:3802698311495769 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698311498399:3802698311499239 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698311500869:3802698311502079 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698311503089:3802698311505069 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325170) = 0 +3802698311505929:3802698311510619 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325130) = 0 +3802698311511509:3802698311514159 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698312774028:3802698312778948 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698312781168:3802698312782318 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698312783358:3802698312784188 1976:1977 hsa_signal_load_relaxed() = 1 +3802698312785028:3802698312789038 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698312789908:3802698312790608 1976:1977 hsa_signal_destroy() = 0 +3802698311515109:3802698312817199 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698312822179:3802698312823679 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698312827609:3802698312828249 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698312827559:3802698312887259 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698320274304:3802698320275374 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698320311854:3802698320716287 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698320720017:3802698320721647 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698320724087:3802698320725137 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698320726057:3802698320728707 1976:1980 hsa_signal_create(1, , 0, 0x7f53763251d0) = 0 +3802698320729907:3802698320736927 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325190) = 0 +3802698320744358:3802698320749098 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698322093788:3802698322098658 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698322100818:3802698322102048 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698322103048:3802698322103888 1976:1977 hsa_signal_load_relaxed() = 1 +3802698322104738:3802698322108648 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698322109528:3802698322110238 1976:1977 hsa_signal_destroy() = 0 +3802698320750298:3802698322135068 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698322142708:3802698322143318 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698322152288:3802698322152888 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698322154908:3802698322155498 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698322156998:3802698322157588 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698322159488:3802698322160068 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698322161418:3802698322162008 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698322168678:3802698322169268 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698322171978:3802698322172578 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698322143768:3802698322211148 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698322218699:3802698322219889 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 4 +3802698322220829:3802698322221709 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 4 +3802698322222759:3802698322223449 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 4 +3802698322224489:3802698322225859 1976:1980 hsa_signal_store_screlease(, 4) = void +3802698322230379:3802698322516031 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698322518041:3802698322518861 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698322519721:3802698322520281 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 5 +3802698322521091:3802698322521671 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 4 +3802698322522561:3802698322523351 1976:1980 hsa_signal_store_screlease(, 5) = void +3802698322524261:3802698323655179 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698323657909:3802698323658819 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698323660449:3802698323661649 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698323669829:3802698323672059 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325230) = 0 +3802698323672989:3802698323677339 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763251f0) = 0 +3802698323678239:3802698323680709 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698324942839:3802698324947779 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698324949729:3802698324950879 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698324951929:3802698324952759 1976:1977 hsa_signal_load_relaxed() = 1 +3802698324953599:3802698324957409 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698324958289:3802698324958999 1976:1977 hsa_signal_destroy() = 0 +3802698323681619:3802698324983469 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698324988369:3802698324989779 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698324995149:3802698324995969 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698324993739:3802698325051730 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698332377744:3802698332379064 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698332414104:3802698332815777 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698332819847:3802698332821517 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698332823917:3802698332824977 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698332825887:3802698332828127 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325290) = 0 +3802698332829317:3802698332836077 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325250) = 0 +3802698332837248:3802698332841998 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698334483680:3802698334488540 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698334490560:3802698334491880 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698334493030:3802698334493860 1976:1977 hsa_signal_load_relaxed() = 1 +3802698334494700:3802698334498150 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698334499020:3802698334499730 1976:1977 hsa_signal_destroy() = 0 +3802698332843178:3802698334525410 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698334532500:3802698334533100 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698334539520:3802698334540110 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698334542200:3802698334542790 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698334550760:3802698334551350 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698334553010:3802698334553660 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698334554850:3802698334555450 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698334563470:3802698334564060 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698334566750:3802698334567340 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698334533580:3802698334598491 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698334606291:3802698334607401 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 6 +3802698334608491:3802698334609291 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 6 +3802698334610371:3802698334611071 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 6 +3802698334612111:3802698334613341 1976:1980 hsa_signal_store_screlease(, 6) = void +3802698334617571:3802698334898653 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698334900683:3802698334901513 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698334902383:3802698334902993 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 7 +3802698334903803:3802698334904383 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 6 +3802698334905273:3802698334906053 1976:1980 hsa_signal_store_screlease(, 7) = void +3802698334906963:3802698335923030 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698335925740:3802698335926650 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698335928180:3802698335929381 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698335930411:3802698335932621 1976:1980 hsa_signal_create(1, , 0, 0x7f53763252f0) = 0 +3802698335933601:3802698335938131 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763252b0) = 0 +3802698335939151:3802698335941551 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698337527662:3802698337532222 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698337534392:3802698337535662 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698337536712:3802698337537532 1976:1977 hsa_signal_load_relaxed() = 1 +3802698337538372:3802698337542192 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698337543072:3802698337543792 1976:1977 hsa_signal_destroy() = 0 +3802698335942461:3802698337569522 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698337574502:3802698337576292 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698337580632:3802698337581252 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698337580452:3802698337638683 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698344958997:3802698344960427 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698345014187:3802698345418630 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698345422770:3802698345424600 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698345427140:3802698345428200 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698345429110:3802698345431590 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325350) = 0 +3802698345432790:3802698345439950 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325310) = 0 +3802698345441110:3802698345446300 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698346796621:3802698346801491 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698346803721:3802698346805031 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698346806301:3802698346807131 1976:1977 hsa_signal_load_relaxed() = 1 +3802698346808081:3802698346812001 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698346812881:3802698346813611 1976:1977 hsa_signal_destroy() = 0 +3802698345447450:3802698346837951 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698346845461:3802698346846061 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698346853031:3802698346853621 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698346860831:3802698346861431 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698346863241:3802698346863831 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698346865781:3802698346866371 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698346867761:3802698346868361 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698346874921:3802698346875511 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698346878161:3802698346878751 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698346846321:3802698346912251 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698346920301:3802698346921461 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 8 +3802698346922541:3802698346923251 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 8 +3802698346924341:3802698346925041 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 8 +3802698346926021:3802698346927462 1976:1980 hsa_signal_store_screlease(, 8) = void +3802698346931732:3802698347219584 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698347225394:3802698347226234 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698347227094:3802698347227714 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 9 +3802698347228534:3802698347229124 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 8 +3802698347229944:3802698347230744 1976:1980 hsa_signal_store_screlease(, 9) = void +3802698347231644:3802698348478353 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698348479663:3802698348480213 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698348481513:3802698348482563 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698348483473:3802698348485223 1976:1980 hsa_signal_create(1, , 0, 0x7f53763253b0) = 0 +3802698348486103:3802698348490343 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325370) = 0 +3802698348491273:3802698348493413 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698349755453:3802698349760333 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698349762573:3802698349763723 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698349764773:3802698349765613 1976:1977 hsa_signal_load_relaxed() = 1 +3802698349766463:3802698349770263 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698349771153:3802698349771853 1976:1977 hsa_signal_destroy() = 0 +3802698348494253:3802698349804363 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698349809193:3802698349810623 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698349815893:3802698349816553 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698349814183:3802698349873883 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698357054757:3802698357056117 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698357109097:3802698357511620 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698357515370:3802698357517030 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698357519400:3802698357520460 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698357521340:3802698357523710 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325410) = 0 +3802698357524910:3802698357531620 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763253d0) = 0 +3802698357532760:3802698357537620 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698358886790:3802698358891481 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698358893481:3802698358894801 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698358895941:3802698358896771 1976:1977 hsa_signal_load_relaxed() = 1 +3802698358901381:3802698358905161 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698358906051:3802698358906781 1976:1977 hsa_signal_destroy() = 0 +3802698357538770:3802698358941561 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698358948321:3802698358948921 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698358954911:3802698358955501 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698358957431:3802698358958021 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698358959241:3802698358959831 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698358961521:3802698358962111 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698358963311:3802698358963901 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698358975481:3802698358976071 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698358978581:3802698358979171 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698358949341:3802698359015401 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698359023031:3802698359024141 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 10 +3802698359025161:3802698359025982 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 10 +3802698359027062:3802698359027772 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 10 +3802698359028742:3802698359029972 1976:1980 hsa_signal_store_screlease(, 10) = void +3802698359034102:3802698359319264 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698359321244:3802698359322084 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698359322924:3802698359323534 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 11 +3802698359324364:3802698359324934 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 10 +3802698359325754:3802698359326544 1976:1980 hsa_signal_store_screlease(, 11) = void +3802698359327444:3802698360509313 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698360510593:3802698360511153 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698360512553:3802698360513603 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698360514513:3802698360516053 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325470) = 0 +3802698360516943:3802698360521283 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325430) = 0 +3802698360522193:3802698360524433 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698361786682:3802698361791252 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698361797002:3802698361798162 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698361799222:3802698361800052 1976:1977 hsa_signal_load_relaxed() = 1 +3802698361800892:3802698361804622 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698361805512:3802698361806212 1976:1977 hsa_signal_destroy() = 0 +3802698360525263:3802698361830582 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698361835672:3802698361837092 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698361840612:3802698361841282 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698361841082:3802698361899223 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698369093276:3802698369094546 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698369150026:3802698369555869 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698369559809:3802698369561399 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698369563729:3802698369564789 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698369565709:3802698369568099 1976:1980 hsa_signal_create(1, , 0, 0x7f53763254d0) = 0 +3802698369569359:3802698369576019 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325490) = 0 +3802698369577169:3802698369582049 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698370931669:3802698370936529 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698370938699:3802698370939919 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698370941139:3802698370941969 1976:1977 hsa_signal_load_relaxed() = 1 +3802698370942989:3802698370946879 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698370947779:3802698370948499 1976:1977 hsa_signal_destroy() = 0 +3802698369583209:3802698370972990 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698370979950:3802698370980550 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698370986960:3802698370987560 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698370995220:3802698370995820 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698370997700:3802698370998290 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698371000260:3802698371000850 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698371002020:3802698371002610 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698371008640:3802698371009230 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698371011720:3802698371012310 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698370981110:3802698371046550 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698371053840:3802698371055040 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 12 +3802698371056040:3802698371056860 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 12 +3802698371057920:3802698371058630 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 12 +3802698371059610:3802698371060840 1976:1980 hsa_signal_store_screlease(, 12) = void +3802698371065360:3802698371345402 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698371347432:3802698371348292 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698371349152:3802698371349772 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 13 +3802698371350592:3802698371351182 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 12 +3802698371351992:3802698371352772 1976:1980 hsa_signal_store_screlease(, 13) = void +3802698371353682:3802698372509881 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698372511171:3802698372511721 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698372513131:3802698372514191 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698372515081:3802698372516581 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325530) = 0 +3802698372517441:3802698372521641 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763254f0) = 0 +3802698372522561:3802698372524681 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698373786740:3802698373791291 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698373793541:3802698373794701 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698373795751:3802698373796591 1976:1977 hsa_signal_load_relaxed() = 1 +3802698373797541:3802698373801191 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698373802081:3802698373802801 1976:1977 hsa_signal_destroy() = 0 +3802698372525521:3802698373826951 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698373831851:3802698373833381 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698373837231:3802698373837911 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698373837661:3802698373897851 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698381101645:3802698381102985 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698381157725:3802698381561048 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698381565028:3802698381566618 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698381575418:3802698381576488 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698381577388:3802698381579798 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325590) = 0 +3802698381580968:3802698381588259 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325550) = 0 +3802698381589369:3802698381594119 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698382944309:3802698382948959 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698382950959:3802698382952269 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698382953319:3802698382954149 1976:1977 hsa_signal_load_relaxed() = 1 +3802698382954989:3802698382958819 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698382959719:3802698382960429 1976:1977 hsa_signal_destroy() = 0 +3802698381595279:3802698382984809 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698382995359:3802698382995999 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698383002399:3802698383002999 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698383004969:3802698383005559 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698383006849:3802698383007439 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698383009129:3802698383009719 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698383010859:3802698383011449 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698383019099:3802698383019699 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698383022699:3802698383023299 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698382993629:3802698383060629 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698383068490:3802698383069690 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 14 +3802698383070880:3802698383071680 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 14 +3802698383072760:3802698383073460 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 14 +3802698383074440:3802698383075550 1976:1980 hsa_signal_store_screlease(, 14) = void +3802698383079740:3802698383362232 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698383364272:3802698383365162 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698383366012:3802698383366642 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 15 +3802698383367472:3802698383368052 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 14 +3802698383368862:3802698383369652 1976:1980 hsa_signal_store_screlease(, 15) = void +3802698383370552:3802698384505840 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698384510740:3802698384511310 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698384512710:3802698384513760 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698384514670:3802698384516210 1976:1980 hsa_signal_create(1, , 0, 0x7f53763255f0) = 0 +3802698384517080:3802698384521260 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763255b0) = 0 +3802698384522160:3802698384524450 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698385786420:3802698385791290 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698385793280:3802698385794590 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698385795630:3802698385796460 1976:1977 hsa_signal_load_relaxed() = 1 +3802698385797300:3802698385801090 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698385801970:3802698385802680 1976:1977 hsa_signal_destroy() = 0 +3802698384525270:3802698385827220 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698385832160:3802698385833710 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698385837650:3802698385838270 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698385837460:3802698385896051 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698393235845:3802698393237145 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698393295865:3802698393704018 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698393708248:3802698393709948 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698393712168:3802698393713238 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698393714128:3802698393716438 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325650) = 0 +3802698393717808:3802698393724108 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325610) = 0 +3802698393725278:3802698393730578 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698395081698:3802698395086598 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698395088748:3802698395089898 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698395090958:3802698395091788 1976:1977 hsa_signal_load_relaxed() = 1 +3802698395092628:3802698395096528 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698395097428:3802698395098138 1976:1977 hsa_signal_destroy() = 0 +3802698393731829:3802698395121489 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698395128599:3802698395129199 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698395139649:3802698395140259 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698395143459:3802698395144059 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698395145519:3802698395146119 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698395147799:3802698395148389 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698395149679:3802698395150299 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698395157489:3802698395158089 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698395160609:3802698395161209 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698395130059:3802698395196629 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698395204549:3802698395205599 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 16 +3802698395206539:3802698395207349 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 16 +3802698395208419:3802698395209119 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 16 +3802698395210159:3802698395211419 1976:1980 hsa_signal_store_screlease(, 16) = void +3802698395215669:3802698395496031 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698395498081:3802698395498981 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698395499841:3802698395500461 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 17 +3802698395501291:3802698395501871 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 16 +3802698395502761:3802698395503541 1976:1980 hsa_signal_store_screlease(, 17) = void +3802698395504451:3802698396604729 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698396606019:3802698396606579 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698396607829:3802698396608889 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698396609879:3802698396611399 1976:1980 hsa_signal_create(1, , 0, 0x7f53763256b0) = 0 +3802698396612379:3802698396616510 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325670) = 0 +3802698396617430:3802698396619490 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698397881849:3802698397886709 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698397888979:3802698397890119 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698397891169:3802698397891999 1976:1977 hsa_signal_load_relaxed() = 1 +3802698397892849:3802698397896599 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698397897489:3802698397898189 1976:1977 hsa_signal_destroy() = 0 +3802698396620310:3802698397922559 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698397927649:3802698397929469 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698397933429:3802698397934049 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698397933139:3802698397990970 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698405162783:3802698405163893 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698405221244:3802698405622096 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698405626287:3802698405627857 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698405630377:3802698405631437 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698405632357:3802698405634637 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325710) = 0 +3802698405635897:3802698405642947 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763256d0) = 0 +3802698405644107:3802698405649097 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698406999407:3802698407004277 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698407006317:3802698407007587 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698407008637:3802698407009467 1976:1977 hsa_signal_load_relaxed() = 1 +3802698407010417:3802698407014337 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698407015217:3802698407015917 1976:1977 hsa_signal_destroy() = 0 +3802698405650477:3802698407050647 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698407062897:3802698407063507 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698407070267:3802698407070867 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698407073037:3802698407073627 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698407075247:3802698407075837 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698407077587:3802698407078187 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698407079507:3802698407080107 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698407086497:3802698407087087 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698407090807:3802698407091407 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698407058617:3802698407123548 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698407131318:3802698407132478 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 18 +3802698407133468:3802698407134368 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 18 +3802698407135468:3802698407136168 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 18 +3802698407142038:3802698407143298 1976:1980 hsa_signal_store_screlease(, 18) = void +3802698407147568:3802698407436660 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698407438660:3802698407439510 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698407440350:3802698407440920 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 19 +3802698407441740:3802698407442320 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 18 +3802698407443120:3802698407443920 1976:1980 hsa_signal_store_screlease(, 19) = void +3802698407444840:3802698408600189 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698408601509:3802698408602059 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698408603329:3802698408604379 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698408605279:3802698408606799 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325770) = 0 +3802698408607679:3802698408611809 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325730) = 0 +3802698408612719:3802698408615259 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698409877468:3802698409882028 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698409884058:3802698409885208 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698409886368:3802698409887198 1976:1977 hsa_signal_load_relaxed() = 1 +3802698409888298:3802698409892218 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698409893158:3802698409893878 1976:1977 hsa_signal_destroy() = 0 +3802698408616129:3802698409918148 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698409923238:3802698409924658 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698409928439:3802698409929099 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698409928929:3802698409987949 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698417163272:3802698417164532 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698417220893:3802698417618926 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698417622836:3802698417624446 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698417626826:3802698417627886 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698417628776:3802698417631046 1976:1980 hsa_signal_create(1, , 0, 0x7f53763257d0) = 0 +3802698417632116:3802698417639276 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325790) = 0 +3802698417640546:3802698417645216 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698418995956:3802698419000856 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698419002916:3802698419004066 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698419005106:3802698419005936 1976:1977 hsa_signal_load_relaxed() = 1 +3802698419006786:3802698419010526 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698419011406:3802698419012126 1976:1977 hsa_signal_destroy() = 0 +3802698417652486:3802698419036686 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698419043586:3802698419044186 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698419050336:3802698419050936 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698419055956:3802698419056556 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698419058186:3802698419058786 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698419060816:3802698419061406 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698419062766:3802698419063356 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698419069817:3802698419070407 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698419072937:3802698419073537 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698419045286:3802698419112827 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698419120697:3802698419121887 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 20 +3802698419122917:3802698419123787 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 20 +3802698419124947:3802698419125647 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 20 +3802698419126687:3802698419127947 1976:1980 hsa_signal_store_screlease(, 20) = void +3802698419132087:3802698419411659 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698419413669:3802698419414499 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698419415359:3802698419415929 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 21 +3802698419416749:3802698419417329 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 20 +3802698419418119:3802698419418899 1976:1980 hsa_signal_store_screlease(, 21) = void +3802698419419789:3802698420597158 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698420598408:3802698420598978 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698420600228:3802698420601278 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698420602178:3802698420603748 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325830) = 0 +3802698420604608:3802698420608818 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763257f0) = 0 +3802698420613138:3802698420615488 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698421877777:3802698421882667 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698421884687:3802698421885967 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698421887017:3802698421887847 1976:1977 hsa_signal_load_relaxed() = 1 +3802698421888687:3802698421892417 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698421893307:3802698421894017 1976:1977 hsa_signal_destroy() = 0 +3802698420616328:3802698421918217 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698421923027:3802698421924487 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698421928867:3802698421929487 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698421928747:3802698421990018 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698429164151:3802698429165521 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698429222651:3802698429627794 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698429631804:3802698429633434 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698429635834:3802698429636894 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698429637804:3802698429640074 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325890) = 0 +3802698429641274:3802698429647654 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325850) = 0 +3802698429648814:3802698429653794 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698431005074:3802698431009725 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698431011745:3802698431012905 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698431013945:3802698431014775 1976:1977 hsa_signal_load_relaxed() = 1 +3802698431015615:3802698431019375 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698431020255:3802698431020965 1976:1977 hsa_signal_destroy() = 0 +3802698429654904:3802698431045305 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698431058015:3802698431058625 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698431064755:3802698431065355 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698431067405:3802698431068005 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698431069615:3802698431070205 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698431071905:3802698431072525 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698431075225:3802698431075825 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698431082315:3802698431082915 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698431086745:3802698431087345 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698431053515:3802698431118855 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698431126655:3802698431127745 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 22 +3802698431128715:3802698431129515 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 22 +3802698431130605:3802698431131305 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 22 +3802698431132355:3802698431133605 1976:1980 hsa_signal_store_screlease(, 22) = void +3802698431137615:3802698431426558 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698431428598:3802698431429498 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698431430348:3802698431430958 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 23 +3802698431431778:3802698431432368 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 22 +3802698431433258:3802698431434048 1976:1980 hsa_signal_store_screlease(, 23) = void +3802698431434948:3802698432591086 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698432592376:3802698432592936 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698432594386:3802698432595426 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698432596346:3802698432597946 1976:1980 hsa_signal_create(1, , 0, 0x7f53763258f0) = 0 +3802698432598816:3802698432603026 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763258b0) = 0 +3802698432603916:3802698432606556 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698433869826:3802698433874406 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698433876576:3802698433877796 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698433878946:3802698433879776 1976:1977 hsa_signal_load_relaxed() = 1 +3802698433880876:3802698433884716 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698433885596:3802698433886306 1976:1977 hsa_signal_destroy() = 0 +3802698432607366:3802698433910506 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698433915626:3802698433917166 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698433921056:3802698433921746 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698433921416:3802698433979547 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698441149970:3802698441151210 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698441215620:3802698441615223 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698441618953:3802698441620583 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698441622883:3802698441623933 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698441624823:3802698441627424 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325950) = 0 +3802698441628594:3802698441635424 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325910) = 0 +3802698441636564:3802698441641324 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698442991364:3802698442995994 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698442998374:3802698442999524 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698443000714:3802698443001554 1976:1977 hsa_signal_load_relaxed() = 1 +3802698443002644:3802698443006324 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698443007284:3802698443007994 1976:1977 hsa_signal_destroy() = 0 +3802698441642584:3802698443032184 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698443039594:3802698443040204 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698443048124:3802698443048724 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698443050774:3802698443051364 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698443052924:3802698443053524 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698443057024:3802698443057624 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698443058894:3802698443059494 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698443066884:3802698443067474 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698443069974:3802698443070574 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698443040704:3802698443106915 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698443115175:3802698443116245 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 24 +3802698443117375:3802698443118255 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 24 +3802698443119465:3802698443120165 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 24 +3802698443121145:3802698443122395 1976:1980 hsa_signal_store_screlease(, 24) = void +3802698443126575:3802698443415987 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698443418037:3802698443418947 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698443419797:3802698443420417 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 25 +3802698443425277:3802698443425887 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 24 +3802698443426717:3802698443427507 1976:1980 hsa_signal_store_screlease(, 25) = void +3802698443428417:3802698444603506 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698444604866:3802698444605416 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698444606786:3802698444607826 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698444608736:3802698444610136 1976:1980 hsa_signal_create(1, , 0, 0x7f53763259b0) = 0 +3802698444611006:3802698444615216 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325970) = 0 +3802698444616106:3802698444618416 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698445880905:3802698445885775 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698445887875:3802698445889025 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698445890065:3802698445890895 1976:1977 hsa_signal_load_relaxed() = 1 +3802698445891745:3802698445895625 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698445896515:3802698445897225 1976:1977 hsa_signal_destroy() = 0 +3802698444619246:3802698445921835 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698445926795:3802698445928286 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698445932176:3802698445932936 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698445932576:3802698445992296 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698453371461:3802698453372831 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698453432521:3802698453837894 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698453841704:3802698453843374 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698453845974:3802698453847044 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698453847964:3802698453850244 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325a10) = 0 +3802698453851434:3802698453858234 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763259d0) = 0 +3802698453859414:3802698453864284 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698455481266:3802698455486206 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698455488396:3802698455489546 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698455490596:3802698455491426 1976:1977 hsa_signal_load_relaxed() = 1 +3802698455492266:3802698455495706 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698455496596:3802698455497316 1976:1977 hsa_signal_destroy() = 0 +3802698453865324:3802698455521986 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698455537886:3802698455538506 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698455544566:3802698455545166 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698455547056:3802698455547656 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698455549256:3802698455549856 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698455551666:3802698455552256 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698455553536:3802698455554136 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698455561046:3802698455561646 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698455565496:3802698455566096 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698455530506:3802698455595877 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698455604057:3802698455605247 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 26 +3802698455606417:3802698455607417 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 26 +3802698455608657:3802698455609347 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 26 +3802698455610767:3802698455612007 1976:1980 hsa_signal_store_screlease(, 26) = void +3802698455616257:3802698455896549 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698455898549:3802698455899449 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698455900299:3802698455900919 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 27 +3802698455901759:3802698455902339 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 26 +3802698455903139:3802698455903919 1976:1980 hsa_signal_store_screlease(, 27) = void +3802698455904829:3802698456912316 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698456915016:3802698456915856 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698456917386:3802698456918586 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698456919646:3802698456921536 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325a70) = 0 +3802698456922516:3802698456927417 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325a30) = 0 +3802698456928357:3802698456930717 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698458529328:3802698458533898 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698458535868:3802698458537158 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698458538308:3802698458539139 1976:1977 hsa_signal_load_relaxed() = 1 +3802698458543769:3802698458547529 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698458548459:3802698458549179 1976:1977 hsa_signal_destroy() = 0 +3802698456931637:3802698458574329 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698458579699:3802698458581139 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698458584969:3802698458585599 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698458584799:3802698458643069 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698465861163:3802698465862333 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698465919623:3802698466315226 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698466319086:3802698466320916 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698466323066:3802698466324126 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698466325036:3802698466327326 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325ad0) = 0 +3802698466328896:3802698466335626 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325a90) = 0 +3802698466336777:3802698466341867 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698467692737:3802698467697357 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698467699367:3802698467700597 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698467701637:3802698467702467 1976:1977 hsa_signal_load_relaxed() = 1 +3802698467703307:3802698467707057 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698467707937:3802698467708657 1976:1977 hsa_signal_destroy() = 0 +3802698466342947:3802698467743037 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698467749987:3802698467750587 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698467756827:3802698467757427 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698467759357:3802698467759957 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698467761717:3802698467762307 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698467769527:3802698467770167 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698467771487:3802698467772077 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698467778657:3802698467779247 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698467781777:3802698467782367 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698467751477:3802698467816548 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698467828918:3802698467830098 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 28 +3802698467831478:3802698467832358 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 28 +3802698467833438:3802698467834138 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 28 +3802698467835268:3802698467836508 1976:1980 hsa_signal_store_screlease(, 28) = void +3802698467840678:3802698468127400 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698468129380:3802698468130170 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698468131010:3802698468131620 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 29 +3802698468132450:3802698468133040 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 28 +3802698468133860:3802698468134630 1976:1980 hsa_signal_store_screlease(, 29) = void +3802698468135540:3802698469490750 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698469493460:3802698469494290 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698469495840:3802698469497050 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698469498080:3802698469499960 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325b30) = 0 +3802698469500940:3802698469506000 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325af0) = 0 +3802698469506930:3802698469509280 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698470771119:3802698470775720 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698470778110:3802698470779260 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698470780300:3802698470781130 1976:1977 hsa_signal_load_relaxed() = 1 +3802698470781980:3802698470785650 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698470786540:3802698470787240 1976:1977 hsa_signal_destroy() = 0 +3802698469510190:3802698470811460 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698470816280:3802698470817730 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698470821400:3802698470822080 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698470821860:3802698470879080 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698478069824:3802698478071144 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698478130594:3802698478532917 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698478536617:3802698478538277 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698478540597:3802698478541657 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698478542557:3802698478545217 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325b90) = 0 +3802698478552007:3802698478558717 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325b50) = 0 +3802698478559847:3802698478565167 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698479915728:3802698479920608 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698479922748:3802698479923918 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698479924958:3802698479925788 1976:1977 hsa_signal_load_relaxed() = 1 +3802698479926638:3802698479930468 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698479931348:3802698479932048 1976:1977 hsa_signal_destroy() = 0 +3802698478566267:3802698479955258 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698479962338:3802698479962938 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698479972338:3802698479972938 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698479975088:3802698479975688 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698479977298:3802698479977898 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698479979768:3802698479980368 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698479981798:3802698479982398 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698479988988:3802698479989588 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698479993158:3802698479993748 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698479964108:3802698480044538 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698480052639:3802698480053689 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 30 +3802698480054919:3802698480055739 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 30 +3802698480056799:3802698480057529 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 30 +3802698480058609:3802698480059839 1976:1980 hsa_signal_store_screlease(, 30) = void +3802698480063969:3802698480349751 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698480351761:3802698480352681 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698480353551:3802698480354111 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 31 +3802698480354961:3802698480355551 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 30 +3802698480356331:3802698480357111 1976:1980 hsa_signal_store_screlease(, 31) = void +3802698480358041:3802698481511429 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698481514159:3802698481514999 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698481520339:3802698481521569 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698481522619:3802698481524559 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325bf0) = 0 +3802698481525549:3802698481530139 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325bb0) = 0 +3802698481531049:3802698481533739 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698482796398:3802698482800958 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698482803038:3802698482804268 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698482805318:3802698482806148 1976:1977 hsa_signal_load_relaxed() = 1 +3802698482806988:3802698482810838 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698482811728:3802698482812438 1976:1977 hsa_signal_destroy() = 0 +3802698481534649:3802698482836439 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698482841679:3802698482843569 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698482847489:3802698482848179 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698482847849:3802698482907009 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698490247404:3802698490248834 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698490309174:3802698490709537 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698490713747:3802698490715447 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698490717717:3802698490718777 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698490719687:3802698490721987 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325c50) = 0 +3802698490723287:3802698490729707 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325c10) = 0 +3802698490730897:3802698490736007 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698492088617:3802698492093457 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698492095347:3802698492096507 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698492097727:3802698492098547 1976:1977 hsa_signal_load_relaxed() = 1 +3802698492099647:3802698492103687 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698492104627:3802698492105327 1976:1977 hsa_signal_destroy() = 0 +3802698490737237:3802698492116227 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698492123368:3802698492124028 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698492130498:3802698492131088 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698492133108:3802698492133698 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698492139858:3802698492140458 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698492143958:3802698492144558 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698492145828:3802698492146428 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698492152688:3802698492153278 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698492156198:3802698492156798 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698492123908:3802698492189128 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698492196768:3802698492198078 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 32 +3802698492199078:3802698492199928 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 32 +3802698492201008:3802698492201718 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 32 +3802698492202758:3802698492203998 1976:1980 hsa_signal_store_screlease(, 32) = void +3802698492208558:3802698492492400 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698492494410:3802698492495240 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698492496090:3802698492496680 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 33 +3802698492497510:3802698492498090 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 32 +3802698492498890:3802698492499680 1976:1980 hsa_signal_store_screlease(, 33) = void +3802698492500590:3802698493645909 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698493648639:3802698493649469 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698493651129:3802698493652329 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698493653359:3802698493655209 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325cb0) = 0 +3802698493656189:3802698493660749 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325c70) = 0 +3802698493661719:3802698493664179 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698494930548:3802698494935108 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698494937548:3802698494938738 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698494939778:3802698494940608 1976:1977 hsa_signal_load_relaxed() = 1 +3802698494941458:3802698494945199 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698494946089:3802698494946799 1976:1977 hsa_signal_destroy() = 0 +3802698493665089:3802698494971039 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698494975979:3802698494977589 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698494985889:3802698494986509 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698494985709:3802698495046679 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698502472874:3802698502474175 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698502533035:3802698502924248 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698502928038:3802698502929688 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698502932118:3802698502933188 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698502934108:3802698502936408 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325d10) = 0 +3802698502937668:3802698502943928 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325cd0) = 0 +3802698502945098:3802698502950568 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698504520440:3802698504525140 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698504527300:3802698504528450 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698504529500:3802698504530330 1976:1977 hsa_signal_load_relaxed() = 1 +3802698504531170:3802698504535000 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698504535880:3802698504536600 1976:1977 hsa_signal_destroy() = 0 +3802698502951658:3802698504546980 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698504553940:3802698504554590 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698504569380:3802698504569980 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698504572470:3802698504573060 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698504574640:3802698504575280 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698504577020:3802698504577610 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698504579260:3802698504579850 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698504586570:3802698504587160 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698504590650:3802698504591250 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698504554520:3802698504620260 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698504627731:3802698504628791 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 34 +3802698504629841:3802698504630641 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 34 +3802698504631701:3802698504632401 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 34 +3802698504633441:3802698504634881 1976:1980 hsa_signal_store_screlease(, 34) = void +3802698504638971:3802698504923063 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698504928893:3802698504929733 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698504930583:3802698504931153 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 35 +3802698504931983:3802698504932563 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 34 +3802698504933443:3802698504934273 1976:1980 hsa_signal_store_screlease(, 35) = void +3802698504935183:3802698505937240 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698505939940:3802698505940780 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698505942420:3802698505943620 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698505944660:3802698505946710 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325d70) = 0 +3802698505947680:3802698505952280 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325d30) = 0 +3802698505953160:3802698505955550 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698507536732:3802698507541302 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698507543492:3802698507544812 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698507545972:3802698507546802 1976:1977 hsa_signal_load_relaxed() = 1 +3802698507547742:3802698507551422 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698507552382:3802698507553082 1976:1977 hsa_signal_destroy() = 0 +3802698505956450:3802698507576992 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698507582393:3802698507584113 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698507587863:3802698507588513 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698507588383:3802698507647363 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698515012547:3802698515013717 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698515074177:3802698515473430 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698515477400:3802698515479220 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698515481570:3802698515482630 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698515483550:3802698515486020 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325dd0) = 0 +3802698515487300:3802698515494121 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325d90) = 0 +3802698515495291:3802698515500491 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698516852471:3802698516857351 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698516859141:3802698516860301 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698516865221:3802698516866081 1976:1977 hsa_signal_load_relaxed() = 1 +3802698516866941:3802698516870691 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698516871561:3802698516872281 1976:1977 hsa_signal_destroy() = 0 +3802698515501591:3802698516897311 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698516904951:3802698516905591 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698516911521:3802698516912111 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698516914121:3802698516914711 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698516916021:3802698516916611 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698516925321:3802698516926001 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698516927541:3802698516928131 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698516934841:3802698516935441 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698516938031:3802698516938621 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698516905691:3802698516972572 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698516980542:3802698516981582 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 36 +3802698516982612:3802698516983402 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 36 +3802698516984512:3802698516985282 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 36 +3802698516986492:3802698516987722 1976:1980 hsa_signal_store_screlease(, 36) = void +3802698516991932:3802698517278334 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698517280274:3802698517281084 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698517281944:3802698517282564 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 37 +3802698517283384:3802698517283964 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 36 +3802698517284764:3802698517285534 1976:1980 hsa_signal_store_screlease(, 37) = void +3802698517286444:3802698518492773 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698518495483:3802698518496323 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698518497993:3802698518499203 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698518500243:3802698518502133 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325e30) = 0 +3802698518503113:3802698518507583 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325df0) = 0 +3802698518508473:3802698518510873 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698519772852:3802698519777442 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698519783042:3802698519784202 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698519785252:3802698519786092 1976:1977 hsa_signal_load_relaxed() = 1 +3802698519786932:3802698519790733 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698519791623:3802698519792323 1976:1977 hsa_signal_destroy() = 0 +3802698518511783:3802698519815183 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698519820263:3802698519821773 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698519825443:3802698519826103 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698519825873:3802698519886003 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698527212258:3802698527213558 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698527275818:3802698527675501 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698527679651:3802698527681501 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698527683931:3802698527684981 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698527685881:3802698527688181 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325e90) = 0 +3802698527689361:3802698527696241 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325e50) = 0 +3802698527697401:3802698527702671 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698529053971:3802698529058861 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698529061061:3802698529062231 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698529063281:3802698529064121 1976:1977 hsa_signal_load_relaxed() = 1 +3802698529064961:3802698529068882 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698529069762:3802698529070482 1976:1977 hsa_signal_destroy() = 0 +3802698527703811:3802698529095602 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698529102602:3802698529103202 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698529114122:3802698529114712 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698529116902:3802698529117492 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698529119042:3802698529119642 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698529121302:3802698529121902 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698529123352:3802698529124002 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698529131192:3802698529131782 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698529135452:3802698529136052 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698529103762:3802698529168872 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698529177102:3802698529178232 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 38 +3802698529179202:3802698529180232 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 38 +3802698529181302:3802698529182002 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 38 +3802698529183052:3802698529184292 1976:1980 hsa_signal_store_screlease(, 38) = void +3802698529188432:3802698529470265 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698529472195:3802698529473025 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698529473875:3802698529474445 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 39 +3802698529475265:3802698529475845 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 38 +3802698529476735:3802698529477525 1976:1980 hsa_signal_store_screlease(, 39) = void +3802698529478435:3802698530624663 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698530627383:3802698530628213 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698530629743:3802698530630953 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698530631983:3802698530633893 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325ef0) = 0 +3802698530634873:3802698530639393 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325eb0) = 0 +3802698530640343:3802698530642723 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698531905253:3802698531909833 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698531912183:3802698531913503 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698531914513:3802698531915343 1976:1977 hsa_signal_load_relaxed() = 1 +3802698531916193:3802698531920073 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698531920963:3802698531921663 1976:1977 hsa_signal_destroy() = 0 +3802698530643623:3802698531944573 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698531949783:3802698531951403 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698531956393:3802698531957033 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698531955643:3802698532021243 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698539402128:3802698539403378 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698539464428:3802698539868691 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698539879011:3802698539880721 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698539883061:3802698539884121 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698539885011:3802698539887301 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325f50) = 0 +3802698539888481:3802698539894961 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325f10) = 0 +3802698539896121:3802698539901101 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698541477193:3802698541482103 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698541484183:3802698541485373 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698541486423:3802698541487263 1976:1977 hsa_signal_load_relaxed() = 1 +3802698541488103:3802698541492153 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698541493013:3802698541493733 1976:1977 hsa_signal_destroy() = 0 +3802698539902151:3802698541528723 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698541535983:3802698541536583 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698541542824:3802698541543414 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698541545514:3802698541546114 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698541547344:3802698541547934 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698541555184:3802698541555784 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698541557314:3802698541557964 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698541564454:3802698541565044 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698541567694:3802698541568284 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698541537603:3802698541603794 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698541612414:3802698541613604 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 40 +3802698541614594:3802698541615474 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 40 +3802698541616764:3802698541617464 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 40 +3802698541618444:3802698541619674 1976:1980 hsa_signal_store_screlease(, 40) = void +3802698541623814:3802698541908916 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698541910946:3802698541911816 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698541912676:3802698541913236 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 41 +3802698541914066:3802698541914656 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 40 +3802698541915476:3802698541916256 1976:1980 hsa_signal_store_screlease(, 41) = void +3802698541920176:3802698542925314 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698542928034:3802698542928864 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698542930394:3802698542931584 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698542932624:3802698542934504 1976:1980 hsa_signal_create(1, , 0, 0x7f5376325fb0) = 0 +3802698542935484:3802698542940054 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325f70) = 0 +3802698542941014:3802698542943294 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698544507156:3802698544511726 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698544513936:3802698544515086 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698544516126:3802698544516966 1976:1977 hsa_signal_load_relaxed() = 1 +3802698544517986:3802698544522066 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698544522936:3802698544523656 1976:1977 hsa_signal_destroy() = 0 +3802698542944204:3802698544533176 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698544537596:3802698544539056 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698544542576:3802698544543186 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698544542466:3802698544601496 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698551821750:3802698551823130 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698551882480:3802698552321814 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698552325754:3802698552327384 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698552335924:3802698552336994 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698552337914:3802698552340524 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326010) = 0 +3802698552341734:3802698552348284 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376325fd0) = 0 +3802698552349454:3802698552354444 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698553712054:3802698553716734 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698553718464:3802698553719614 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698553720664:3802698553721474 1976:1977 hsa_signal_load_relaxed() = 1 +3802698553722324:3802698553725994 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698553726884:3802698553727594 1976:1977 hsa_signal_destroy() = 0 +3802698552355704:3802698553752114 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698553764014:3802698553764674 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698553773824:3802698553774424 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698553776395:3802698553776985 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698553778255:3802698553778845 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698553780535:3802698553781125 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698553782745:3802698553783335 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698553789275:3802698553789865 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698553792405:3802698553793005 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698553764634:3802698553831195 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698553839115:3802698553840455 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 42 +3802698553841515:3802698553842385 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 42 +3802698553843485:3802698553844185 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 42 +3802698553845165:3802698553846395 1976:1980 hsa_signal_store_screlease(, 42) = void +3802698553850595:3802698554132357 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698554134277:3802698554135167 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698554136017:3802698554136587 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 43 +3802698554137407:3802698554137997 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 42 +3802698554138787:3802698554139557 1976:1980 hsa_signal_store_screlease(, 43) = void +3802698554140477:3802698555486177 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698555489287:3802698555490447 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698555492657:3802698555494357 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698555495787:3802698555497977 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326070) = 0 +3802698555499487:3802698555504917 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326030) = 0 +3802698555505907:3802698555508517 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698556772567:3802698556777127 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698556779397:3802698556780547 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698556781707:3802698556782537 1976:1977 hsa_signal_load_relaxed() = 1 +3802698556783477:3802698556787317 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698556788177:3802698556788897 1976:1977 hsa_signal_destroy() = 0 +3802698555509467:3802698556813377 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698556818607:3802698556820047 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698556826257:3802698556826887 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698556823727:3802698556883328 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698564241552:3802698564242462 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698564279293:3802698564683436 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698564687626:3802698564689526 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698564692036:3802698564693096 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698564694006:3802698564696516 1976:1980 hsa_signal_create(1, , 0, 0x7f53763260d0) = 0 +3802698564697786:3802698564704336 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326090) = 0 +3802698564705436:3802698564710856 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698566061436:3802698566066476 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698566068436:3802698566069586 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698566070726:3802698566071556 1976:1977 hsa_signal_load_relaxed() = 1 +3802698566072576:3802698566076236 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698566077186:3802698566077896 1976:1977 hsa_signal_destroy() = 0 +3802698564711946:3802698566102266 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698566109246:3802698566109846 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698566115626:3802698566116226 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698566118326:3802698566118926 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698566120446:3802698566121036 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698566123056:3802698566123646 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698566125126:3802698566125716 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698566140776:3802698566141376 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698566144026:3802698566144617 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698566110906:3802698566177257 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698566185047:3802698566186197 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 44 +3802698566187287:3802698566188107 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 44 +3802698566194667:3802698566195417 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 44 +3802698566196407:3802698566197777 1976:1980 hsa_signal_store_screlease(, 44) = void +3802698566201847:3802698566484849 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698566486759:3802698566487619 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698566488499:3802698566489069 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 45 +3802698566489909:3802698566490499 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 44 +3802698566491319:3802698566492119 1976:1980 hsa_signal_store_screlease(, 45) = void +3802698566493039:3802698567635578 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698567638288:3802698567639198 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698567640848:3802698567642048 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698567643088:3802698567645168 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326130) = 0 +3802698567646148:3802698567650698 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763260f0) = 0 +3802698567651708:3802698567654328 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698568919627:3802698568924507 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698568926587:3802698568927737 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698568928777:3802698568929607 1976:1977 hsa_signal_load_relaxed() = 1 +3802698568930447:3802698568934407 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698568935277:3802698568935987 1976:1977 hsa_signal_destroy() = 0 +3802698567655238:3802698568968657 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698568973517:3802698568975067 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698568978607:3802698568979267 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698568978777:3802698569038318 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698576228311:3802698576229441 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698576268601:3802698576671844 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698576676014:3802698576677744 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698576680234:3802698576681294 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698576682214:3802698576684514 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326190) = 0 +3802698576685674:3802698576692354 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326150) = 0 +3802698576693514:3802698576698514 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698578049004:3802698578053724 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698578055874:3802698578057154 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698578058194:3802698578059024 1976:1977 hsa_signal_load_relaxed() = 1 +3802698578059864:3802698578063774 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698578064654:3802698578065364 1976:1977 hsa_signal_destroy() = 0 +3802698576706464:3802698578098375 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698578105365:3802698578106005 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698578115525:3802698578116125 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698578118375:3802698578118975 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698578120965:3802698578121555 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698578123245:3802698578123835 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698578124985:3802698578125645 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698578132035:3802698578132625 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698578135225:3802698578135825 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698578106115:3802698578171555 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698578179605:3802698578180755 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 46 +3802698578181725:3802698578182545 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 46 +3802698578183665:3802698578184365 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 46 +3802698578185335:3802698578186575 1976:1980 hsa_signal_store_screlease(, 46) = void +3802698578190635:3802698578478287 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698578480327:3802698578481227 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698578482097:3802698578482667 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 47 +3802698578483487:3802698578484067 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 46 +3802698578484887:3802698578485657 1976:1980 hsa_signal_store_screlease(, 47) = void +3802698578486557:3802698579617856 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698579620566:3802698579621476 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698579623256:3802698579624446 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698579625476:3802698579627396 1976:1980 hsa_signal_create(1, , 0, 0x7f53763261f0) = 0 +3802698579632396:3802698579636946 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763261b0) = 0 +3802698579637866:3802698579640266 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698580905445:3802698580910006 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698580912066:3802698580913226 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698580914266:3802698580915096 1976:1977 hsa_signal_load_relaxed() = 1 +3802698580915946:3802698580919856 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698580920746:3802698580921456 1976:1977 hsa_signal_destroy() = 0 +3802698579641176:3802698580945996 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698580951266:3802698580952926 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698580958066:3802698580958706 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698580957066:3802698581015996 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698588210070:3802698588211270 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698588247930:3802698588645623 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698588649323:3802698588650973 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698588653443:3802698588654503 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698588655403:3802698588657673 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326250) = 0 +3802698588658893:3802698588665743 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326210) = 0 +3802698588666893:3802698588671773 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698590022503:3802698590027303 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698590029363:3802698590030583 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698590031583:3802698590032423 1976:1977 hsa_signal_load_relaxed() = 1 +3802698590033263:3802698590037003 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698590037883:3802698590038593 1976:1977 hsa_signal_destroy() = 0 +3802698588672943:3802698590063114 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698590070394:3802698590071004 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698590077194:3802698590077794 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698590079834:3802698590080424 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698590081854:3802698590082444 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698590084354:3802698590084944 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698590091434:3802698590092034 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698590099674:3802698590100274 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698590102934:3802698590103534 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698590071484:3802698590138314 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698590145774:3802698590147054 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 48 +3802698590148094:3802698590149014 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 48 +3802698590150104:3802698590150794 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 48 +3802698590151844:3802698590153084 1976:1980 hsa_signal_store_screlease(, 48) = void +3802698590157364:3802698590445756 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698590447786:3802698590448576 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698590449426:3802698590450036 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 49 +3802698590450866:3802698590451447 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 48 +3802698590452327:3802698590453107 1976:1980 hsa_signal_store_screlease(, 49) = void +3802698590453997:3802698591606475 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698591609175:3802698591610095 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698591611635:3802698591612845 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698591613875:3802698591615775 1976:1980 hsa_signal_create(1, , 0, 0x7f53763262b0) = 0 +3802698591616755:3802698591621275 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326270) = 0 +3802698591622295:3802698591624665 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698592890035:3802698592894905 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698592897045:3802698592898205 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698592899245:3802698592900075 1976:1977 hsa_signal_load_relaxed() = 1 +3802698592900925:3802698592904875 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698592905745:3802698592906445 1976:1977 hsa_signal_destroy() = 0 +3802698591625565:3802698592931135 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698592935965:3802698592937515 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698592941085:3802698592941745 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698592941535:3802698593000705 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698600191638:3802698600192738 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698600231168:3802698600973484 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698600977524:3802698600979604 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698600981984:3802698600983044 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698600983954:3802698600986464 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326310) = 0 +3802698600987664:3802698600994314 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763262d0) = 0 +3802698600995464:3802698601000724 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698602518885:3802698602523575 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698602525906:3802698602527216 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698602528266:3802698602529096 1976:1977 hsa_signal_load_relaxed() = 1 +3802698602529936:3802698602533896 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698602534786:3802698602535506 1976:1977 hsa_signal_destroy() = 0 +3802698601001804:3802698602561266 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698602568656:3802698602569316 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698602575706:3802698602576306 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698602583466:3802698602584066 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698602585656:3802698602586246 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698602587946:3802698602588566 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698602590056:3802698602590656 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698602596846:3802698602597436 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698602600006:3802698602600596 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698602569286:3802698602634106 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698602641576:3802698602642786 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 50 +3802698602643866:3802698602644686 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 50 +3802698602645796:3802698602646496 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 50 +3802698602647526:3802698602648766 1976:1980 hsa_signal_store_screlease(, 50) = void +3802698602652826:3802698602935549 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698602937529:3802698602938429 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698602943119:3802698602943749 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 51 +3802698602944579:3802698602945159 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 50 +3802698602946049:3802698602946829 1976:1980 hsa_signal_store_screlease(, 51) = void +3802698602947759:3802698603962626 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698603965326:3802698603966156 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698603967656:3802698603968866 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698603969986:3802698603971886 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326370) = 0 +3802698603972956:3802698603977536 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326330) = 0 +3802698603978546:3802698603981046 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698605533868:3802698605538748 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698605541018:3802698605542168 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698605543388:3802698605544218 1976:1977 hsa_signal_load_relaxed() = 1 +3802698605545168:3802698605549038 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698605549898:3802698605550618 1976:1977 hsa_signal_destroy() = 0 +3802698603981946:3802698605576578 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698605581808:3802698605583388 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698605589228:3802698605590038 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698605587418:3802698605647099 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698612930933:3802698612932333 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698612984113:3802698613387246 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698613391396:3802698613393076 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698613395386:3802698613396456 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698613397346:3802698613399736 1976:1980 hsa_signal_create(1, , 0, 0x7f53763263d0) = 0 +3802698613400956:3802698613407826 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326390) = 0 +3802698613408986:3802698613414177 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698614763837:3802698614768537 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698614770537:3802698614771857 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698614772907:3802698614773737 1976:1977 hsa_signal_load_relaxed() = 1 +3802698614774577:3802698614778397 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698614782717:3802698614783467 1976:1977 hsa_signal_destroy() = 0 +3802698613415337:3802698614805067 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698614812467:3802698614813067 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698614818907:3802698614819507 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698614821537:3802698614822137 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698614823357:3802698614823947 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698614825617:3802698614826207 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698614827507:3802698614828097 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698614839847:3802698614840447 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698614843167:3802698614843757 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698614813547:3802698614880197 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698614888247:3802698614889297 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 52 +3802698614890357:3802698614891177 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 52 +3802698614892277:3802698614892978 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 52 +3802698614894028:3802698614895408 1976:1980 hsa_signal_store_screlease(, 52) = void +3802698614899678:3802698615182660 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698615184750:3802698615185600 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698615186480:3802698615187100 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 53 +3802698615187920:3802698615188510 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 52 +3802698615189310:3802698615190100 1976:1980 hsa_signal_store_screlease(, 53) = void +3802698615191010:3802698616471079 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698616472659:3802698616473209 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698616474479:3802698616475529 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698616476439:3802698616478319 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326430) = 0 +3802698616479219:3802698616483279 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763263f0) = 0 +3802698616484179:3802698616486719 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698617749399:3802698617753959 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698617755989:3802698617757209 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698617761699:3802698617762629 1976:1977 hsa_signal_load_relaxed() = 1 +3802698617763489:3802698617767389 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698617768279:3802698617768989 1976:1977 hsa_signal_destroy() = 0 +3802698616487549:3802698617793299 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698617798349:3802698617799859 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698617803869:3802698617804489 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698617803749:3802698617861050 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698625062863:3802698625064053 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698625118663:3802698625524296 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698625528356:3802698625530056 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698625532506:3802698625533566 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698625534476:3802698625536876 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326490) = 0 +3802698625538056:3802698625544676 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326450) = 0 +3802698625545826:3802698625550856 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698626901766:3802698626906406 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698626908566:3802698626909716 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698626910766:3802698626911596 1976:1977 hsa_signal_load_relaxed() = 1 +3802698626912436:3802698626916306 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698626917186:3802698626917896 1976:1977 hsa_signal_destroy() = 0 +3802698625552026:3802698626942187 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698626949207:3802698626949807 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698626955947:3802698626956537 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698626966497:3802698626967097 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698626968887:3802698626969477 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698626971347:3802698626971987 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698626973447:3802698626974037 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698626980927:3802698626981517 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698626984177:3802698626984777 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698626950177:3802698627017677 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698627030247:3802698627031267 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 54 +3802698627032327:3802698627033127 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 54 +3802698627034217:3802698627034917 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 54 +3802698627035957:3802698627037067 1976:1980 hsa_signal_store_screlease(, 54) = void +3802698627041117:3802698627326429 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698627328509:3802698627329299 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698627330149:3802698627330779 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 55 +3802698627331609:3802698627332199 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 54 +3802698627333099:3802698627333869 1976:1980 hsa_signal_store_screlease(, 55) = void +3802698627334789:3802698628516068 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698628517328:3802698628517888 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698628519288:3802698628520338 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698628521248:3802698628522748 1976:1980 hsa_signal_create(1, , 0, 0x7f53763264f0) = 0 +3802698628523608:3802698628527878 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763264b0) = 0 +3802698628528798:3802698628531428 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698629793768:3802698629798348 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698629800638:3802698629801838 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698629803058:3802698629803888 1976:1977 hsa_signal_load_relaxed() = 1 +3802698629804848:3802698629808508 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698629809398:3802698629810108 1976:1977 hsa_signal_destroy() = 0 +3802698628532258:3802698629834288 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698629839378:3802698629840948 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698629845108:3802698629845718 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698629844968:3802698629902728 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698637094202:3802698637095312 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698637147062:3802698637548875 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698637552775:3802698637554845 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698637557045:3802698637558095 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698637565685:3802698637567995 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326550) = 0 +3802698637569185:3802698637575925 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326510) = 0 +3802698637577405:3802698637582195 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698638938426:3802698638943336 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698638945486:3802698638946696 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698638947746:3802698638948576 1976:1977 hsa_signal_load_relaxed() = 1 +3802698638949416:3802698638953146 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698638954036:3802698638954746 1976:1977 hsa_signal_destroy() = 0 +3802698637583315:3802698638979066 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698638989176:3802698638989806 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698638996716:3802698638997316 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698638999136:3802698638999726 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698639001156:3802698639001746 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698639003676:3802698639004266 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698639005556:3802698639006146 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698639013826:3802698639014426 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698639016946:3802698639017546 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698638987376:3802698639054436 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698639062416:3802698639063596 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 56 +3802698639064536:3802698639065427 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 56 +3802698639066727:3802698639067437 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 56 +3802698639068417:3802698639069657 1976:1980 hsa_signal_store_screlease(, 56) = void +3802698639073767:3802698639355359 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698639357389:3802698639358299 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698639359159:3802698639359729 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 57 +3802698639360549:3802698639361139 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 56 +3802698639361959:3802698639362749 1976:1980 hsa_signal_store_screlease(, 57) = void +3802698639363649:3802698640512987 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698640514277:3802698640514837 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698640519597:3802698640520667 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698640521567:3802698640523207 1976:1980 hsa_signal_create(1, , 0, 0x7f53763265b0) = 0 +3802698640524087:3802698640528367 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326570) = 0 +3802698640529277:3802698640531737 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698641793827:3802698641798407 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698641800497:3802698641801717 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698641802757:3802698641803587 1976:1977 hsa_signal_load_relaxed() = 1 +3802698641804427:3802698641808267 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698641809157:3802698641809857 1976:1977 hsa_signal_destroy() = 0 +3802698640532567:3802698641834207 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698641839187:3802698641840767 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698641844257:3802698641844917 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698641844707:3802698641903028 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698649101351:3802698649102611 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698649159142:3802698649562645 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698649566385:3802698649568175 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698649570595:3802698649571655 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698649572575:3802698649574865 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326610) = 0 +3802698649576065:3802698649582835 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763265d0) = 0 +3802698649583985:3802698649589225 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698650940235:3802698650945115 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698650946995:3802698650948285 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698650949325:3802698650950155 1976:1977 hsa_signal_load_relaxed() = 1 +3802698650950995:3802698650954585 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698650955465:3802698650956175 1976:1977 hsa_signal_destroy() = 0 +3802698649590515:3802698650980585 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698650987525:3802698650988125 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698650994445:3802698650995045 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698651003325:3802698651003925 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698651005355:3802698651005955 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698651007585:3802698651008215 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698651009905:3802698651010495 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698651017095:3802698651017685 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698651020365:3802698651020955 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698650988835:3802698651054496 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698651062446:3802698651063636 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 58 +3802698651064576:3802698651065456 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 58 +3802698651066786:3802698651067506 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 58 +3802698651068496:3802698651069726 1976:1980 hsa_signal_store_screlease(, 58) = void +3802698651073976:3802698651356208 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698651358218:3802698651359068 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698651359938:3802698651360558 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 59 +3802698651361378:3802698651361958 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 58 +3802698651362908:3802698651363688 1976:1980 hsa_signal_store_screlease(, 59) = void +3802698651364588:3802698652511396 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698652512666:3802698652513226 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698652514476:3802698652515536 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698652516436:3802698652517976 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326670) = 0 +3802698652518836:3802698652523087 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326630) = 0 +3802698652524017:3802698652526287 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698653788326:3802698653792886 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698653795226:3802698653796476 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698653797696:3802698653798526 1976:1977 hsa_signal_load_relaxed() = 1 +3802698653799366:3802698653803106 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698653803996:3802698653804706 1976:1977 hsa_signal_destroy() = 0 +3802698652527127:3802698653828826 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698653833916:3802698653835406 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698653843556:3802698653844216 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698653843816:3802698653904186 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698661088860:3802698661090020 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698661144090:3802698661542513 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698661546863:3802698661548833 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698661551403:3802698661552453 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698661553333:3802698661555733 1976:1980 hsa_signal_create(1, , 0, 0x7f53763266d0) = 0 +3802698661556933:3802698661564913 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326690) = 0 +3802698661566673:3802698661572353 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698662920503:3802698662925383 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698662927573:3802698662928723 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698662929883:3802698662930713 1976:1977 hsa_signal_load_relaxed() = 1 +3802698662931663:3802698662935383 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698662936263:3802698662936973 1976:1977 hsa_signal_destroy() = 0 +3802698661573773:3802698662961683 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698662974994:3802698662975604 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698662982804:3802698662983404 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698662985274:3802698662985864 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698662987604:3802698662988194 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698662990154:3802698662990804 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698662992024:3802698662992624 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698662999774:3802698663000364 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698663004114:3802698663004704 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698662970064:3802698663035344 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698663043964:3802698663045014 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 60 +3802698663046094:3802698663046784 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 60 +3802698663047894:3802698663048604 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 60 +3802698663049574:3802698663050804 1976:1980 hsa_signal_store_screlease(, 60) = void +3802698663059154:3802698663341006 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698663342996:3802698663343876 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698663344736:3802698663345316 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 61 +3802698663346156:3802698663346736 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 60 +3802698663347576:3802698663348366 1976:1980 hsa_signal_store_screlease(, 61) = void +3802698663349286:3802698664503965 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698664505305:3802698664505865 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698664507135:3802698664508185 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698664509115:3802698664510665 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326730) = 0 +3802698664511555:3802698664515735 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763266f0) = 0 +3802698664516645:3802698664519355 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698665781504:3802698665786064 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698665788274:3802698665789424 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698665790474:3802698665791314 1976:1977 hsa_signal_load_relaxed() = 1 +3802698665792255:3802698665795915 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698665796795:3802698665797515 1976:1977 hsa_signal_destroy() = 0 +3802698664520175:3802698665821645 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698665826625:3802698665828145 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698665832125:3802698665832735 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698665831935:3802698665891405 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698673091049:3802698673092139 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698673146959:3802698673553442 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698673557402:3802698673559052 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698673561382:3802698673562442 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698673563352:3802698673565622 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326790) = 0 +3802698673567012:3802698673573322 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326750) = 0 +3802698673574472:3802698673579842 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698674930612:3802698674935253 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698674942953:3802698674944113 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698674945173:3802698674946003 1976:1977 hsa_signal_load_relaxed() = 1 +3802698674946853:3802698674950623 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698674951513:3802698674952233 1976:1977 hsa_signal_destroy() = 0 +3802698673580972:3802698674976713 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698674984163:3802698674984763 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698674990553:3802698674991143 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698674998033:3802698674998633 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698674999883:3802698675000473 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698675002363:3802698675002963 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698675004563:3802698675005213 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698675011423:3802698675012013 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698675014633:3802698675015233 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698674985203:3802698675050223 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698675058353:3802698675059523 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 62 +3802698675060543:3802698675061353 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 62 +3802698675062463:3802698675063163 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 62 +3802698675064183:3802698675065413 1976:1980 hsa_signal_store_screlease(, 62) = void +3802698675069604:3802698675351296 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698675353246:3802698675354156 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698675355006:3802698675355586 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 63 +3802698675356406:3802698675356996 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 62 +3802698675357796:3802698675358596 1976:1980 hsa_signal_store_screlease(, 63) = void +3802698675359506:3802698676510304 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698676511604:3802698676512164 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698676513454:3802698676514514 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698676515424:3802698676516924 1976:1980 hsa_signal_create(1, , 0, 0x7f53763267f0) = 0 +3802698676517804:3802698676522134 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763267b0) = 0 +3802698676523054:3802698676525514 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698677788054:3802698677792924 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698677795084:3802698677796224 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698677797284:3802698677798114 1976:1977 hsa_signal_load_relaxed() = 1 +3802698677798964:3802698677802724 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698677803614:3802698677804314 1976:1977 hsa_signal_destroy() = 0 +3802698676530484:3802698677828694 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698677833914:3802698677835614 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698677839594:3802698677840204 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698677839354:3802698677898925 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698685087367:3802698685088487 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698685142628:3802698685547271 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698685551591:3802698685553261 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698685555361:3802698685556421 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698685557331:3802698685559651 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326850) = 0 +3802698685560861:3802698685567281 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326810) = 0 +3802698685568431:3802698685573851 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698686924931:3802698686929781 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698686931931:3802698686933111 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698686934161:3802698686934991 1976:1977 hsa_signal_load_relaxed() = 1 +3802698686935821:3802698686939641 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698686940521:3802698686941221 1976:1977 hsa_signal_destroy() = 0 +3802698685575031:3802698686965611 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698686978101:3802698686978721 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698686984861:3802698686985461 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698686987341:3802698686987931 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698686989601:3802698686990191 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698686992121:3802698686992721 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698686994071:3802698686994681 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698687002251:3802698687002851 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698687006581:3802698687007181 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698686974181:3802698687040662 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698687048732:3802698687049942 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 64 +3802698687051162:3802698687051972 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 64 +3802698687053192:3802698687053892 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 64 +3802698687054932:3802698687056172 1976:1980 hsa_signal_store_screlease(, 64) = void +3802698687060582:3802698687342644 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698687344864:3802698687345764 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698687346624:3802698687347234 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 65 +3802698687348054:3802698687348634 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 64 +3802698687349424:3802698687350184 1976:1980 hsa_signal_store_screlease(, 65) = void +3802698687351094:3802698688508383 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698688509633:3802698688510193 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698688511583:3802698688512633 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698688513533:3802698688515063 1976:1980 hsa_signal_create(1, , 0, 0x7f53763268b0) = 0 +3802698688515933:3802698688520123 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326870) = 0 +3802698688521033:3802698688523323 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698689785812:3802698689790382 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698689792612:3802698689793862 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698689794912:3802698689795752 1976:1977 hsa_signal_load_relaxed() = 1 +3802698689796702:3802698689800582 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698689801472:3802698689802172 1976:1977 hsa_signal_destroy() = 0 +3802698688524153:3802698689826522 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698689831563:3802698689833133 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698689837153:3802698689837773 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698689836973:3802698689894753 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698697090597:3802698697092107 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698697147677:3802698697548120 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698697558310:3802698697559870 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698697562420:3802698697563470 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698697564360:3802698697566660 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326910) = 0 +3802698697567860:3802698697574220 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763268d0) = 0 +3802698697575390:3802698697580380 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698698931780:3802698698936710 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698698938750:3802698698939920 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698698940970:3802698698941800 1976:1977 hsa_signal_load_relaxed() = 1 +3802698698942650:3802698698946550 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698698947430:3802698698948130 1976:1977 hsa_signal_destroy() = 0 +3802698697581560:3802698698972471 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698698979731:3802698698980371 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698698986101:3802698698986701 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698698989141:3802698698989741 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698698991391:3802698698991981 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698698996391:3802698698996991 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698698998451:3802698698999061 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698699005611:3802698699006211 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698699008711:3802698699009301 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698698980511:3802698699046511 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698699054361:3802698699055391 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 66 +3802698699056511:3802698699057311 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 66 +3802698699058391:3802698699059091 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 66 +3802698699060121:3802698699061351 1976:1980 hsa_signal_store_screlease(, 66) = void +3802698699065331:3802698699343883 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698699345913:3802698699346913 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698699347763:3802698699348343 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 67 +3802698699349183:3802698699349753 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 66 +3802698699353843:3802698699354643 1976:1980 hsa_signal_store_screlease(, 67) = void +3802698699355553:3802698700521632 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698700522902:3802698700523502 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698700524882:3802698700525932 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698700526842:3802698700528352 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326970) = 0 +3802698700529222:3802698700533492 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326930) = 0 +3802698700534402:3802698700537122 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698701798742:3802698701803362 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698701805502:3802698701806812 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698701807942:3802698701808772 1976:1977 hsa_signal_load_relaxed() = 1 +3802698701809622:3802698701813362 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698701814242:3802698701814952 1976:1977 hsa_signal_destroy() = 0 +3802698700537952:3802698701839252 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698701844332:3802698701845842 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698701849462:3802698701850122 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698701849892:3802698701909962 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698709095606:3802698709096756 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698709152636:3802698709557469 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698709560989:3802698709562589 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698709564829:3802698709565889 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698709566799:3802698709569489 1976:1980 hsa_signal_create(1, , 0, 0x7f53763269d0) = 0 +3802698709570719:3802698709577619 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326990) = 0 +3802698709578769:3802698709583689 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698710934579:3802698710939230 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698710941370:3802698710942660 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698710943700:3802698710944530 1976:1977 hsa_signal_load_relaxed() = 1 +3802698710945370:3802698710949250 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698710950130:3802698710950840 1976:1977 hsa_signal_destroy() = 0 +3802698709585209:3802698710975330 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698710994020:3802698710994620 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698711003170:3802698711003760 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698711005600:3802698711006200 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698711007440:3802698711008040 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698711010090:3802698711010740 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698711012180:3802698711012770 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698711019680:3802698711020280 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698711023730:3802698711024320 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698710990940:3802698711056530 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698711064760:3802698711065930 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 68 +3802698711066960:3802698711067750 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 68 +3802698711068810:3802698711069510 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 68 +3802698711070540:3802698711071791 1976:1980 hsa_signal_store_screlease(, 68) = void +3802698711076171:3802698711355743 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698711357703:3802698711358473 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698711359313:3802698711359893 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 69 +3802698711360703:3802698711361293 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 68 +3802698711362173:3802698711362953 1976:1980 hsa_signal_store_screlease(, 69) = void +3802698711363863:3802698712518511 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698712519781:3802698712520341 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698712521721:3802698712522781 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698712523681:3802698712525201 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326a30) = 0 +3802698712526081:3802698712530341 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763269f0) = 0 +3802698712531231:3802698712533701 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698713795560:3802698713800140 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698713802360:3802698713803660 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698713804710:3802698713805530 1976:1977 hsa_signal_load_relaxed() = 1 +3802698713806380:3802698713810361 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698713814871:3802698713815611 1976:1977 hsa_signal_destroy() = 0 +3802698712534531:3802698713836321 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698713841531:3802698713842971 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698713846421:3802698713847081 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698713846851:3802698713906781 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698721104584:3802698721105984 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698721160075:3802698721564378 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698721568398:3802698721570168 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698721572488:3802698721573548 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698721574468:3802698721577088 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326a90) = 0 +3802698721578268:3802698721584748 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326a50) = 0 +3802698721585908:3802698721591018 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698722943518:3802698722948408 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698722950458:3802698722951718 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698722952758:3802698722953588 1976:1977 hsa_signal_load_relaxed() = 1 +3802698722954438:3802698722958168 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698722959078:3802698722959788 1976:1977 hsa_signal_destroy() = 0 +3802698721592208:3802698722984178 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698722991588:3802698722992218 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698722998238:3802698722998828 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698723000788:3802698723001388 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698723002888:3802698723003478 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698723011109:3802698723011719 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698723012969:3802698723013599 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698723020099:3802698723020699 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698723023389:3802698723023979 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698722992428:3802698723058499 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698723066969:3802698723068039 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 70 +3802698723069279:3802698723070079 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 70 +3802698723078759:3802698723079489 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 70 +3802698723080519:3802698723081769 1976:1980 hsa_signal_store_screlease(, 70) = void +3802698723086079:3802698723379931 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698723382021:3802698723382911 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698723383771:3802698723384341 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 71 +3802698723385181:3802698723385751 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 70 +3802698723386641:3802698723387411 1976:1980 hsa_signal_store_screlease(, 71) = void +3802698723388311:3802698724512820 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698724514090:3802698724514640 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698724515900:3802698724516960 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698724517950:3802698724519480 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326af0) = 0 +3802698724520440:3802698724524700 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326ab0) = 0 +3802698724525610:3802698724527990 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698725790649:3802698725795229 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698725797479:3802698725798679 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698725799909:3802698725800749 1976:1977 hsa_signal_load_relaxed() = 1 +3802698725801829:3802698725805749 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698725806629:3802698725807329 1976:1977 hsa_signal_destroy() = 0 +3802698724528800:3802698725831719 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698725836800:3802698725838370 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698725842070:3802698725842740 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698725842420:3802698725901620 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698733091673:3802698733093014 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698733148014:3802698733551337 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698733555107:3802698733556617 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698733559077:3802698733560127 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698733561047:3802698733563377 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326b50) = 0 +3802698733564617:3802698733570917 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326b10) = 0 +3802698733578687:3802698733583677 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698734934837:3802698734939487 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698734941617:3802698734942817 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698734943857:3802698734944687 1976:1977 hsa_signal_load_relaxed() = 1 +3802698734945537:3802698734949457 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698734950337:3802698734951047 1976:1977 hsa_signal_destroy() = 0 +3802698733585167:3802698734975848 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698734985588:3802698734986248 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698734992518:3802698734993118 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698734995118:3802698734995708 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698734997428:3802698734998018 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698734999948:3802698735000538 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698735001828:3802698735002428 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698735009948:3802698735010548 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698735014138:3802698735014728 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698734984138:3802698735053028 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698735061508:3802698735062698 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 72 +3802698735063858:3802698735064678 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 72 +3802698735065778:3802698735066478 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 72 +3802698735067458:3802698735068738 1976:1980 hsa_signal_store_screlease(, 72) = void +3802698735073008:3802698735359110 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698735361140:3802698735361960 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698735362810:3802698735363380 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 73 +3802698735364210:3802698735364800 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 72 +3802698735365620:3802698735366390 1976:1980 hsa_signal_store_screlease(, 73) = void +3802698735367300:3802698736567539 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698736568989:3802698736569539 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698736570769:3802698736571829 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698736575909:3802698736577449 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326bb0) = 0 +3802698736578349:3802698736582689 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326b70) = 0 +3802698736583599:3802698736586129 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698737847859:3802698737852439 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698737854589:3802698737855739 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698737856779:3802698737857609 1976:1977 hsa_signal_load_relaxed() = 1 +3802698737858459:3802698737862319 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698737863199:3802698737863909 1976:1977 hsa_signal_destroy() = 0 +3802698736586949:3802698737888239 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698737893299:3802698737894939 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698737898569:3802698737899219 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698737899069:3802698737958030 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698745146552:3802698745147792 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698745205463:3802698745608596 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698745612496:3802698745614486 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698745616866:3802698745617916 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698745618826:3802698745621086 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326c10) = 0 +3802698745622276:3802698745629416 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326bd0) = 0 +3802698745630576:3802698745635406 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698746986986:3802698746991836 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698746993876:3802698746995136 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698746996196:3802698746997016 1976:1977 hsa_signal_load_relaxed() = 1 +3802698746997866:3802698747001716 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698747002596:3802698747003306 1976:1977 hsa_signal_destroy() = 0 +3802698745636576:3802698747027656 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698747034656:3802698747035266 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698747040646:3802698747041246 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698747043436:3802698747044026 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698747045466:3802698747046056 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698747054797:3802698747055417 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698747056867:3802698747057457 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698747064207:3802698747064807 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698747068887:3802698747069487 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698747035726:3802698747101807 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698747109877:3802698747111037 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 74 +3802698747112007:3802698747112817 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 74 +3802698747113877:3802698747114577 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 74 +3802698747115567:3802698747116817 1976:1980 hsa_signal_store_screlease(, 74) = void +3802698747120907:3802698747404059 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698747406149:3802698747407109 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698747407969:3802698747408579 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 75 +3802698747409389:3802698747409969 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 74 +3802698747410759:3802698747411579 1976:1980 hsa_signal_store_screlease(, 75) = void +3802698747412489:3802698748560118 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698748561358:3802698748561908 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698748563288:3802698748564358 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698748565268:3802698748566768 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326c70) = 0 +3802698748567628:3802698748571848 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326c30) = 0 +3802698748572758:3802698748575308 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698749837597:3802698749842167 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698749844477:3802698749845707 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698749846937:3802698749847767 1976:1977 hsa_signal_load_relaxed() = 1 +3802698749848607:3802698749852287 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698749853167:3802698749853887 1976:1977 hsa_signal_destroy() = 0 +3802698748576118:3802698749878308 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698749883418:3802698749884918 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698749888458:3802698749889118 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698749888878:3802698749947678 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698757143812:3802698757145002 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698757201192:3802698757602915 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698757606775:3802698757608855 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698757611075:3802698757612135 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698757613045:3802698757615385 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326cd0) = 0 +3802698757616605:3802698757623185 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326c90) = 0 +3802698757624355:3802698757629975 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698758981285:3802698758985955 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698758988245:3802698758989405 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698758990625:3802698758991455 1976:1977 hsa_signal_load_relaxed() = 1 +3802698758992465:3802698758996385 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698758997265:3802698758997975 1976:1977 hsa_signal_destroy() = 0 +3802698757631095:3802698759022496 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698759030056:3802698759030776 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698759042296:3802698759042896 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698759044836:3802698759045426 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698759046956:3802698759047546 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698759049556:3802698759050156 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698759051506:3802698759052096 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698759058606:3802698759059196 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698759062846:3802698759063446 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698759030806:3802698759095796 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698759104136:3802698759105536 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 76 +3802698759106496:3802698759107396 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 76 +3802698759108486:3802698759109196 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 76 +3802698759110166:3802698759111396 1976:1980 hsa_signal_store_screlease(, 76) = void +3802698759115876:3802698759402448 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698759404578:3802698759405408 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698759410088:3802698759410728 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 77 +3802698759411568:3802698759412148 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 76 +3802698759412938:3802698759413708 1976:1980 hsa_signal_store_screlease(, 77) = void +3802698759414638:3802698760603857 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698760605147:3802698760605697 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698760607117:3802698760608177 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698760609087:3802698760610857 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326d30) = 0 +3802698760611747:3802698760615867 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326cf0) = 0 +3802698760616767:3802698760619377 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698761881637:3802698761886197 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698761888357:3802698761889677 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698761890747:3802698761891577 1976:1977 hsa_signal_load_relaxed() = 1 +3802698761892467:3802698761896287 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698761897177:3802698761897897 1976:1977 hsa_signal_destroy() = 0 +3802698760620207:3802698761922157 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698761927157:3802698761928607 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698761933027:3802698761933637 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698761932437:3802698761991648 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698769287562:3802698769289022 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698769344692:3802698769751915 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698769755995:3802698769757655 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698769760075:3802698769761145 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698769762065:3802698769764495 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326d90) = 0 +3802698769765685:3802698769772895 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326d50) = 0 +3802698769774095:3802698769779945 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698771130685:3802698771135545 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698771137535:3802698771138765 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698771139815:3802698771140645 1976:1977 hsa_signal_load_relaxed() = 1 +3802698771144995:3802698771148775 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698771149715:3802698771150425 1976:1977 hsa_signal_destroy() = 0 +3802698769781125:3802698771173425 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698771180865:3802698771181475 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698771187695:3802698771188295 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698771190305:3802698771190895 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698771192145:3802698771192735 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698771201466:3802698771202066 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698771203426:3802698771204066 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698771210536:3802698771211126 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698771213956:3802698771214556 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698771181695:3802698771248916 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698771257036:3802698771258056 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 78 +3802698771259076:3802698771259886 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 78 +3802698771261246:3802698771261946 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 78 +3802698771262916:3802698771264316 1976:1980 hsa_signal_store_screlease(, 78) = void +3802698771268416:3802698771551498 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698771553518:3802698771554358 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698771555218:3802698771555788 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 79 +3802698771556598:3802698771557188 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 78 +3802698771558008:3802698771558788 1976:1980 hsa_signal_store_screlease(, 79) = void +3802698771559708:3802698772692536 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698772695236:3802698772696076 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698772697836:3802698772699046 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698772700077:3802698772701997 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326df0) = 0 +3802698772702997:3802698772707757 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326db0) = 0 +3802698772708767:3802698772711137 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698773973666:3802698773978596 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698773980646:3802698773981796 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698773986546:3802698773987416 1976:1977 hsa_signal_load_relaxed() = 1 +3802698773988266:3802698773992086 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698773992966:3802698773993676 1976:1977 hsa_signal_destroy() = 0 +3802698772712037:3802698774017956 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698774023106:3802698774024666 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698774028706:3802698774029326 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698774028596:3802698774086857 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698781261000:3802698781262180 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698781318611:3802698781722644 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698781726544:3802698781727974 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698781730294:3802698781731354 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698781732264:3802698781734524 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326e50) = 0 +3802698781735794:3802698781742984 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326e10) = 0 +3802698781744124:3802698781749454 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698783100274:3802698783105214 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698783107514:3802698783108664 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698783109884:3802698783110724 1976:1977 hsa_signal_load_relaxed() = 1 +3802698783111814:3802698783115664 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698783116544:3802698783117254 1976:1977 hsa_signal_destroy() = 0 +3802698781750664:3802698783141634 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698783148984:3802698783149594 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698783160884:3802698783161484 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698783163484:3802698783164074 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698783165594:3802698783166184 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698783168274:3802698783168864 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698783170224:3802698783170824 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698783177014:3802698783177614 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698783180184:3802698783180784 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698783150084:3802698783217735 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698783225655:3802698783226835 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 80 +3802698783227855:3802698783228735 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 80 +3802698783230035:3802698783230725 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 80 +3802698783232095:3802698783233345 1976:1980 hsa_signal_store_screlease(, 80) = void +3802698783237595:3802698783518387 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698783520427:3802698783521217 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698783522067:3802698783522677 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 81 +3802698783523507:3802698783524077 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 80 +3802698783524967:3802698783525747 1976:1980 hsa_signal_store_screlease(, 81) = void +3802698783526657:3802698784620215 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698784621475:3802698784622025 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698784623305:3802698784624345 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698784625245:3802698784626755 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326eb0) = 0 +3802698784627605:3802698784631845 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326e70) = 0 +3802698784632755:3802698784634955 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698785896945:3802698785901815 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698785904135:3802698785905285 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698785906355:3802698785907195 1976:1977 hsa_signal_load_relaxed() = 1 +3802698785908145:3802698785912065 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698785912945:3802698785913645 1976:1977 hsa_signal_destroy() = 0 +3802698784635785:3802698785938065 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698785943145:3802698785944795 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698785951345:3802698785951965 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698785948945:3802698786007745 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698793200139:3802698793201279 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698793259509:3802698793657422 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698793661192:3802698793662762 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698793665182:3802698793666242 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698793673823:3802698793676143 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326f10) = 0 +3802698793677333:3802698793683933 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326ed0) = 0 +3802698793685073:3802698793690063 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698795040523:3802698795045443 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698795047523:3802698795048843 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698795049953:3802698795050793 1976:1977 hsa_signal_load_relaxed() = 1 +3802698795051633:3802698795055493 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698795056383:3802698795057093 1976:1977 hsa_signal_destroy() = 0 +3802698793691403:3802698795090853 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698795097833:3802698795098493 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698795104323:3802698795104923 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698795107223:3802698795107813 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698795109353:3802698795109953 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698795114283:3802698795114883 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698795116103:3802698795116693 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698795124593:3802698795125193 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698795127753:3802698795128353 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698795098003:3802698795166904 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698795174964:3802698795176144 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 82 +3802698795177194:3802698795177984 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 82 +3802698795179094:3802698795179794 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 82 +3802698795180834:3802698795181924 1976:1980 hsa_signal_store_screlease(, 82) = void +3802698795185944:3802698795467806 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698795469876:3802698795470726 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698795471586:3802698795472206 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 83 +3802698795473036:3802698795473616 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 82 +3802698795474456:3802698795475236 1976:1980 hsa_signal_store_screlease(, 83) = void +3802698795476126:3802698796600364 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698796604774:3802698796605354 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698796606624:3802698796607674 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698796608584:3802698796610324 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326f70) = 0 +3802698796611204:3802698796615474 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326f30) = 0 +3802698796616374:3802698796618844 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698797881133:3802698797885993 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698797888063:3802698797889223 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698797890273:3802698797891104 1976:1977 hsa_signal_load_relaxed() = 1 +3802698797891954:3802698797895734 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698797896624:3802698797897324 1976:1977 hsa_signal_destroy() = 0 +3802698796619684:3802698797921584 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698797926724:3802698797928374 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698797932244:3802698797933034 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698797932684:3802698797991534 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698805162157:3802698805163367 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698805221588:3802698805620241 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698805624141:3802698805626051 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698805628231:3802698805629281 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698805630201:3802698805632721 1976:1980 hsa_signal_create(1, , 0, 0x7f5376326fd0) = 0 +3802698805633931:3802698805640161 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326f90) = 0 +3802698805641421:3802698805646741 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698806997721:3802698807002641 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698807004801:3802698807006001 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698807007041:3802698807007871 1976:1977 hsa_signal_load_relaxed() = 1 +3802698807008721:3802698807012491 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698807013371:3802698807014071 1976:1977 hsa_signal_destroy() = 0 +3802698805647911:3802698807038391 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698807045361:3802698807045961 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698807058461:3802698807059051 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698807060811:3802698807061401 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698807062621:3802698807063211 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698807064881:3802698807065471 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698807066901:3802698807067501 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698807073931:3802698807074521 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698807077081:3802698807077681 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698807046491:3802698807113772 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698807121382:3802698807122592 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 84 +3802698807123612:3802698807124432 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 84 +3802698807125502:3802698807126202 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 84 +3802698807127262:3802698807128672 1976:1980 hsa_signal_store_screlease(, 84) = void +3802698807132822:3802698807413654 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698807415684:3802698807416504 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698807417354:3802698807417964 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 85 +3802698807418804:3802698807419384 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 84 +3802698807420284:3802698807421074 1976:1980 hsa_signal_store_screlease(, 85) = void +3802698807421994:3802698808598113 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698808599433:3802698808600003 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698808605593:3802698808606653 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698808607653:3802698808609183 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327030) = 0 +3802698808610123:3802698808614613 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376326ff0) = 0 +3802698808615543:3802698808618163 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698809880092:3802698809884672 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698809887042:3802698809888262 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698809889312:3802698809890142 1976:1977 hsa_signal_load_relaxed() = 1 +3802698809890982:3802698809894732 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698809895602:3802698809896332 1976:1977 hsa_signal_destroy() = 0 +3802698808619013:3802698809920573 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698809929843:3802698809931303 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698809936173:3802698809936813 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698809934843:3802698809995103 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698817182687:3802698817183697 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698817241797:3802698817641290 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698817644840:3802698817646550 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698817648850:3802698817649900 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698817650820:3802698817653090 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327090) = 0 +3802698817654270:3802698817660700 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327050) = 0 +3802698817661850:3802698817667000 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698819017780:3802698819022410 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698819024550:3802698819025700 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698819026750:3802698819027580 1976:1977 hsa_signal_load_relaxed() = 1 +3802698819028420:3802698819032080 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698819032960:3802698819033660 1976:1977 hsa_signal_destroy() = 0 +3802698817668240:3802698819058121 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698819065241:3802698819065841 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698819072051:3802698819072641 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698819074781:3802698819075371 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698819076931:3802698819077531 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698819079531:3802698819080121 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698819081321:3802698819081911 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698819093671:3802698819094271 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698819096921:3802698819097521 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698819066671:3802698819131891 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698819139881:3802698819140991 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 86 +3802698819142151:3802698819142961 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 86 +3802698819144141:3802698819144841 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 86 +3802698819150651:3802698819152051 1976:1980 hsa_signal_store_screlease(, 86) = void +3802698819156371:3802698819438763 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698819440713:3802698819441563 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698819442413:3802698819443043 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 87 +3802698819443873:3802698819444453 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 86 +3802698819445253:3802698819446023 1976:1980 hsa_signal_store_screlease(, 87) = void +3802698819446923:3802698820595592 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698820596862:3802698820597402 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698820598822:3802698820599872 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698820600762:3802698820602532 1976:1980 hsa_signal_create(1, , 0, 0x7f53763270f0) = 0 +3802698820603412:3802698820607622 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763270b0) = 0 +3802698820608532:3802698820610882 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698821873131:3802698821877692 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698821879812:3802698821880982 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698821882032:3802698821882862 1976:1977 hsa_signal_load_relaxed() = 1 +3802698821883702:3802698821887552 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698821888442:3802698821889152 1976:1977 hsa_signal_destroy() = 0 +3802698820611712:3802698821913402 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698821918652:3802698821920562 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698821924462:3802698821925132 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698821924652:3802698821982822 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698829147775:3802698829148935 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698829204395:3802698829604608 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698829608708:3802698829610658 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698829613008:3802698829614068 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698829614978:3802698829617418 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327150) = 0 +3802698829618608:3802698829625108 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327110) = 0 +3802698829626268:3802698829630978 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698830982258:3802698830986948 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698830992428:3802698830993589 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698830994659:3802698830995509 1976:1977 hsa_signal_load_relaxed() = 1 +3802698830996349:3802698831000269 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698831001169:3802698831001899 1976:1977 hsa_signal_destroy() = 0 +3802698829632088:3802698831026339 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698831033559:3802698831034159 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698831045089:3802698831045679 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698831047439:3802698831048029 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698831049459:3802698831050049 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698831051769:3802698831052359 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698831053669:3802698831054269 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698831060869:3802698831061459 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698831063999:3802698831064589 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698831034529:3802698831099549 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698831107839:3802698831108949 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 88 +3802698831109939:3802698831110739 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 88 +3802698831111809:3802698831112509 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 88 +3802698831113479:3802698831114709 1976:1980 hsa_signal_store_screlease(, 88) = void +3802698831118839:3802698831401522 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698831403532:3802698831404362 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698831405202:3802698831405832 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 89 +3802698831406662:3802698831407242 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 88 +3802698831408072:3802698831408832 1976:1980 hsa_signal_store_screlease(, 89) = void +3802698831409732:3802698832513520 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698832514810:3802698832515360 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698832516750:3802698832517820 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698832518720:3802698832520370 1976:1980 hsa_signal_create(1, , 0, 0x7f53763271b0) = 0 +3802698832521250:3802698832525340 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327170) = 0 +3802698832530410:3802698832532900 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698833794739:3802698833799609 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698833801709:3802698833802859 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698833803909:3802698833804729 1976:1977 hsa_signal_load_relaxed() = 1 +3802698833805579:3802698833809499 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698833810379:3802698833811099 1976:1977 hsa_signal_destroy() = 0 +3802698832533740:3802698833835300 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698833840250:3802698833842220 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698833847430:3802698833848100 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698833846310:3802698833904950 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698841108634:3802698841109914 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698841167074:3802698841569297 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698841572897:3802698841574517 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698841576867:3802698841577927 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698841578847:3802698841581167 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327210) = 0 +3802698841582427:3802698841588757 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763271d0) = 0 +3802698841590027:3802698841595007 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698842945187:3802698842949877 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698842951857:3802698842953107 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698842954147:3802698842954977 1976:1977 hsa_signal_load_relaxed() = 1 +3802698842955817:3802698842959468 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698842960348:3802698842961048 1976:1977 hsa_signal_destroy() = 0 +3802698841596087:3802698842985448 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698842992558:3802698842993168 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698842999518:3802698843000108 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698843002408:3802698843002998 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698843004608:3802698843005198 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698843006868:3802698843007458 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698843009078:3802698843009668 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698843021648:3802698843022248 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698843024968:3802698843025568 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698842993978:3802698843061368 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698843069638:3802698843070868 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 90 +3802698843071878:3802698843072668 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 90 +3802698843073888:3802698843074598 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 90 +3802698843075678:3802698843076938 1976:1980 hsa_signal_store_screlease(, 90) = void +3802698843081098:3802698843362201 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698843364261:3802698843365041 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698843365901:3802698843366511 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 91 +3802698843367331:3802698843367921 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 90 +3802698843368741:3802698843369511 1976:1980 hsa_signal_store_screlease(, 91) = void +3802698843370431:3802698844524829 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698844526109:3802698844526669 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698844527919:3802698844528969 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698844529889:3802698844531419 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327270) = 0 +3802698844532289:3802698844536439 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327230) = 0 +3802698844537369:3802698844539659 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698845802429:3802698845807299 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698845809479:3802698845810629 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698845811679:3802698845812509 1976:1977 hsa_signal_load_relaxed() = 1 +3802698845813349:3802698845817219 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698845818109:3802698845818819 1976:1977 hsa_signal_destroy() = 0 +3802698844540469:3802698845843089 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698845848349:3802698845850209 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698845853999:3802698845854679 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698845854259:3802698845914199 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698853099933:3802698853101283 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698853164903:3802698853564906 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698853568326:3802698853570116 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698853572466:3802698853573516 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698853574406:3802698853576816 1976:1980 hsa_signal_create(1, , 0, 0x7f53763272d0) = 0 +3802698853577997:3802698853584567 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327290) = 0 +3802698853585707:3802698853590447 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698854947107:3802698854951957 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698854954157:3802698854955307 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698854956537:3802698854957367 1976:1977 hsa_signal_load_relaxed() = 1 +3802698854958457:3802698854962177 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698854963067:3802698854963787 1976:1977 hsa_signal_destroy() = 0 +3802698853591527:3802698854988037 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698854995097:3802698854995697 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698855001267:3802698855001867 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698855008327:3802698855008927 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698855010677:3802698855011277 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698855013327:3802698855013917 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698855015027:3802698855015627 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698855021797:3802698855022387 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698855024927:3802698855025527 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698854996327:3802698855063668 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698855071938:3802698855072978 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 92 +3802698855073958:3802698855074768 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 92 +3802698855075858:3802698855076548 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 92 +3802698855077678:3802698855078908 1976:1980 hsa_signal_store_screlease(, 92) = void +3802698855082988:3802698855366480 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698855368500:3802698855369280 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698855370140:3802698855370770 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 93 +3802698855371590:3802698855372160 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 92 +3802698855377130:3802698855377950 1976:1980 hsa_signal_store_screlease(, 93) = void +3802698855378870:3802698856509348 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698856510878:3802698856511428 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698856512688:3802698856513738 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698856514648:3802698856516138 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327330) = 0 +3802698856517008:3802698856521058 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763272f0) = 0 +3802698856521968:3802698856524628 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698857786707:3802698857791577 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698857793737:3802698857794988 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698857796028:3802698857796858 1976:1977 hsa_signal_load_relaxed() = 1 +3802698857797698:3802698857801438 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698857802318:3802698857803038 1976:1977 hsa_signal_destroy() = 0 +3802698856525478:3802698857827418 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698857832328:3802698857834148 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698857839438:3802698857840078 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698857838178:3802698857897928 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698865085581:3802698865086801 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698865143242:3802698865539335 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698865543165:3802698865544855 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698865547195:3802698865548255 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698865549155:3802698865551365 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327390) = 0 +3802698865552525:3802698865559385 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327350) = 0 +3802698865560555:3802698865565715 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698866916705:3802698866921385 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698866923525:3802698866924735 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698866925775:3802698866926605 1976:1977 hsa_signal_load_relaxed() = 1 +3802698866927455:3802698866931365 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698866932245:3802698866932955 1976:1977 hsa_signal_destroy() = 0 +3802698865566825:3802698866957435 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698866965305:3802698866965915 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698866971535:3802698866972125 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698866974075:3802698866974665 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698866975915:3802698866976505 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698866978365:3802698866978955 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698866980405:3802698866980995 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698866995845:3802698866996446 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698866999066:3802698866999666 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698866966205:3802698867034026 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698867041636:3802698867042886 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 94 +3802698867043926:3802698867044806 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 94 +3802698867045886:3802698867046586 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 94 +3802698867047916:3802698867049166 1976:1980 hsa_signal_store_screlease(, 94) = void +3802698867053226:3802698867336108 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698867338148:3802698867339048 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698867339918:3802698867340488 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 95 +3802698867341298:3802698867341878 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 94 +3802698867342718:3802698867343498 1976:1980 hsa_signal_store_screlease(, 95) = void +3802698867344388:3802698868508037 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698868509327:3802698868509877 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698868511117:3802698868512177 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698868513087:3802698868514737 1976:1980 hsa_signal_create(1, , 0, 0x7f53763273f0) = 0 +3802698868515627:3802698868520057 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763273b0) = 0 +3802698868520947:3802698868523387 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698869785676:3802698869790236 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698869792176:3802698869793336 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698869794486:3802698869795306 1976:1977 hsa_signal_load_relaxed() = 1 +3802698869799726:3802698869803516 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698869804426:3802698869805136 1976:1977 hsa_signal_destroy() = 0 +3802698868524237:3802698869829317 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698869834597:3802698869836297 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698869840347:3802698869840967 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698869840227:3802698869900707 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698877239232:3802698877240452 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698877300422:3802698877703935 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698877707725:3802698877709385 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698877711855:3802698877712915 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698877713845:3802698877716165 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327450) = 0 +3802698877717465:3802698877724395 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327410) = 0 +3802698877725565:3802698877730835 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698879082035:3802698879086905 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698879088925:3802698879090075 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698879091295:3802698879092125 1976:1977 hsa_signal_load_relaxed() = 1 +3802698879093225:3802698879097336 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698879098206:3802698879098916 1976:1977 hsa_signal_destroy() = 0 +3802698877732015:3802698879122126 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698879129616:3802698879130256 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698879136176:3802698879136776 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698879144456:3802698879145056 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698879146836:3802698879147426 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698879149896:3802698879150496 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698879152006:3802698879152596 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698879159666:3802698879160266 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698879162806:3802698879163406 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698879130396:3802698879197726 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698879205456:3802698879206616 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 96 +3802698879211886:3802698879212706 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 96 +3802698879214106:3802698879214806 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 96 +3802698879215846:3802698879217076 1976:1980 hsa_signal_store_screlease(, 96) = void +3802698879221136:3802698879510809 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698879512869:3802698879513759 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698879514619:3802698879515239 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 97 +3802698879516059:3802698879516649 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 96 +3802698879517539:3802698879518329 1976:1980 hsa_signal_store_screlease(, 97) = void +3802698879519239:3802698880612607 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698880613837:3802698880614387 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698880615737:3802698880616787 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698880617707:3802698880619237 1976:1980 hsa_signal_create(1, , 0, 0x7f53763274b0) = 0 +3802698880620107:3802698880624007 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327470) = 0 +3802698880624927:3802698880627327 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698881890106:3802698881894666 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698881897056:3802698881898276 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698881899336:3802698881900176 1976:1977 hsa_signal_load_relaxed() = 1 +3802698881901016:3802698881904956 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698881905836:3802698881906546 1976:1977 hsa_signal_destroy() = 0 +3802698880628157:3802698881931007 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698881935957:3802698881937697 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698881941267:3802698881941937 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698881941697:3802698882000587 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698889186450:3802698889187620 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698889244660:3802698889647533 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698889651353:3802698889652923 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698889655363:3802698889656423 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698889657343:3802698889659633 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327510) = 0 +3802698889667293:3802698889673913 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763274d0) = 0 +3802698889675083:3802698889679923 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698891030503:3802698891035344 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698891037484:3802698891038734 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698891039784:3802698891040614 1976:1977 hsa_signal_load_relaxed() = 1 +3802698891041454:3802698891045334 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698891046214:3802698891046914 1976:1977 hsa_signal_destroy() = 0 +3802698889681103:3802698891071414 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698891081314:3802698891081964 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698891087914:3802698891088514 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698891090684:3802698891091274 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698891092644:3802698891093234 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698891095254:3802698891095844 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698891097214:3802698891097804 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698891105534:3802698891106134 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698891108824:3802698891109424 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698891079954:3802698891146354 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698891154624:3802698891155644 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 98 +3802698891156894:3802698891157694 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 98 +3802698891158784:3802698891159494 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 98 +3802698891160554:3802698891161794 1976:1980 hsa_signal_store_screlease(, 98) = void +3802698891165944:3802698891448647 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698891450637:3802698891451487 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698891452347:3802698891452917 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 99 +3802698891453737:3802698891454327 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 98 +3802698891455217:3802698891455997 1976:1980 hsa_signal_store_screlease(, 99) = void +3802698891456907:3802698892608105 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698892609435:3802698892609995 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698892611395:3802698892612445 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698892616605:3802698892618145 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327570) = 0 +3802698892619035:3802698892623195 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327530) = 0 +3802698892624125:3802698892626335 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698893889125:3802698893893685 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698893895765:3802698893897005 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698893898055:3802698893898885 1976:1977 hsa_signal_load_relaxed() = 1 +3802698893899725:3802698893903435 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698893904325:3802698893905035 1976:1977 hsa_signal_destroy() = 0 +3802698892627145:3802698893929415 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698893934675:3802698893936245 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698893940135:3802698893940805 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698893940365:3802698893999826 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698901185309:3802698901186499 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698901243789:3802698901640642 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698901644442:3802698901646062 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698901648232:3802698901649292 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698901650212:3802698901652472 1976:1980 hsa_signal_create(1, , 0, 0x7f53763275d0) = 0 +3802698901653682:3802698901660263 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327590) = 0 +3802698901661423:3802698901666893 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698903017723:3802698903022373 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698903024373:3802698903025563 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698903026603:3802698903027433 1976:1977 hsa_signal_load_relaxed() = 1 +3802698903028273:3802698903032153 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698903033033:3802698903033743 1976:1977 hsa_signal_destroy() = 0 +3802698901667983:3802698903058473 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698903066023:3802698903066623 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698903072533:3802698903073123 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698903081413:3802698903082003 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698903084693:3802698903085283 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698903087173:3802698903087813 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698903090303:3802698903090903 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698903097203:3802698903097793 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698903100333:3802698903100933 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698903066973:3802698903132993 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698903140494:3802698903141764 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 100 +3802698903142734:3802698903143524 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 100 +3802698903144614:3802698903145324 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 100 +3802698903146504:3802698903147754 1976:1980 hsa_signal_store_screlease(, 100) = void +3802698903151964:3802698903431376 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698903433356:3802698903434176 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698903435066:3802698903435676 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 101 +3802698903436496:3802698903437086 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 100 +3802698903437886:3802698903438676 1976:1980 hsa_signal_store_screlease(, 101) = void +3802698903439606:3802698904597524 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698904598814:3802698904599364 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698904600744:3802698904601794 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698904602784:3802698904604444 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327630) = 0 +3802698904605374:3802698904609434 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763275f0) = 0 +3802698904610334:3802698904612735 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698905874944:3802698905879504 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698905881904:3802698905883134 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698905884184:3802698905885024 1976:1977 hsa_signal_load_relaxed() = 1 +3802698905886034:3802698905889994 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698905890884:3802698905891584 1976:1977 hsa_signal_destroy() = 0 +3802698904613585:3802698905916144 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698905921094:3802698905922594 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698905926284:3802698905926974 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698905926624:3802698905984865 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698913169878:3802698913171378 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698913227108:3802698913629511 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698913633441:3802698913635151 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698913637411:3802698913638471 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698913639391:3802698913641661 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327690) = 0 +3802698913642841:3802698913649411 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327650) = 0 +3802698913650581:3802698913655711 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698915007251:3802698915012151 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698915014191:3802698915015401 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698915016441:3802698915017271 1976:1977 hsa_signal_load_relaxed() = 1 +3802698915018111:3802698915021921 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698915022811:3802698915023521 1976:1977 hsa_signal_destroy() = 0 +3802698913656881:3802698915047912 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698915059612:3802698915060222 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698915068102:3802698915068702 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698915070852:3802698915071442 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698915073032:3802698915073622 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698915075342:3802698915075932 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698915077122:3802698915077792 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698915084652:3802698915085252 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698915088772:3802698915089372 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698915056252:3802698915124832 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698915132762:3802698915133772 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 102 +3802698915134782:3802698915135582 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 102 +3802698915136672:3802698915137382 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 102 +3802698915138432:3802698915139682 1976:1980 hsa_signal_store_screlease(, 102) = void +3802698915143692:3802698915429944 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698915435844:3802698915436754 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698915437614:3802698915438234 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 103 +3802698915439064:3802698915439654 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 102 +3802698915440534:3802698915441314 1976:1980 hsa_signal_store_screlease(, 103) = void +3802698915442224:3802698916563663 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698916565253:3802698916565813 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698916567053:3802698916568103 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698916569013:3802698916570543 1976:1980 hsa_signal_create(1, , 0, 0x7f53763276f0) = 0 +3802698916571423:3802698916575643 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763276b0) = 0 +3802698916576543:3802698916578743 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698917841482:3802698917846042 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698917848132:3802698917849412 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698917850452:3802698917851282 1976:1977 hsa_signal_load_relaxed() = 1 +3802698917852122:3802698917855962 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698917856852:3802698917857552 1976:1977 hsa_signal_destroy() = 0 +3802698916579563:3802698917881852 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698917887122:3802698917888972 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698917892992:3802698917893672 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698917893192:3802698917953563 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698925123856:3802698925125036 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698925180007:3802698925584520 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698925588290:3802698925590080 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698925592600:3802698925593660 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698925594570:3802698925596880 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327750) = 0 +3802698925598310:3802698925605070 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327710) = 0 +3802698925606240:3802698925611330 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698926961170:3802698926966030 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698926968040:3802698926969230 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698926970380:3802698926971210 1976:1977 hsa_signal_load_relaxed() = 1 +3802698926975520:3802698926979200 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698926980100:3802698926980800 1976:1977 hsa_signal_destroy() = 0 +3802698925612420:3802698927005350 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698927012360:3802698927012960 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698927018950:3802698927019540 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698927029160:3802698927029760 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698927031370:3802698927031960 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698927033730:3802698927034370 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698927035670:3802698927036260 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698927042471:3802698927043061 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698927045581:3802698927046181 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698927013670:3802698927079321 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698927087761:3802698927088711 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 104 +3802698927089701:3802698927090501 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 104 +3802698927091621:3802698927092331 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 104 +3802698927093301:3802698927094271 1976:1980 hsa_signal_store_screlease(, 104) = void +3802698927098371:3802698927380163 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698927382193:3802698927383003 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698927383863:3802698927384483 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 105 +3802698927385293:3802698927385883 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 104 +3802698927386683:3802698927387473 1976:1980 hsa_signal_store_screlease(, 105) = void +3802698927388383:3802698928604972 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698928606272:3802698928606832 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698928608092:3802698928609142 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698928610062:3802698928611572 1976:1980 hsa_signal_create(1, , 0, 0x7f53763277b0) = 0 +3802698928612432:3802698928616502 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327770) = 0 +3802698928617402:3802698928619902 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698929882202:3802698929887072 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698929892512:3802698929893662 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698929894722:3802698929895552 1976:1977 hsa_signal_load_relaxed() = 1 +3802698929896402:3802698929900232 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698929901122:3802698929901832 1976:1977 hsa_signal_destroy() = 0 +3802698928620732:3802698929926252 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698929931312:3802698929932942 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698929936382:3802698929937192 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698929936842:3802698929995863 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698937174546:3802698937175826 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698937235876:3802698937637139 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698937641189:3802698937642809 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698937645019:3802698937646069 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698937646989:3802698937649259 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327810) = 0 +3802698937650449:3802698937656989 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763277d0) = 0 +3802698937658150:3802698937663430 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698939014760:3802698939019610 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698939021430:3802698939022690 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698939023740:3802698939024570 1976:1977 hsa_signal_load_relaxed() = 1 +3802698939025420:3802698939029320 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698939030210:3802698939030910 1976:1977 hsa_signal_destroy() = 0 +3802698937664580:3802698939055340 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698939067580:3802698939068180 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698939074880:3802698939075470 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698939077550:3802698939078140 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698939079830:3802698939080420 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698939082110:3802698939082700 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698939083800:3802698939084410 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698939090560:3802698939091150 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698939096150:3802698939096750 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698939063960:3802698939131640 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698939139621:3802698939141181 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 106 +3802698939142221:3802698939143031 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 106 +3802698939144101:3802698939144791 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 106 +3802698939145771:3802698939147001 1976:1980 hsa_signal_store_screlease(, 106) = void +3802698939151021:3802698939433603 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698939435593:3802698939436493 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698939437353:3802698939437973 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 107 +3802698939438803:3802698939439383 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 106 +3802698939440203:3802698939440973 1976:1980 hsa_signal_store_screlease(, 107) = void +3802698939441903:3802698940650762 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698940652052:3802698940652632 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698940654042:3802698940655102 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698940656002:3802698940657512 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327870) = 0 +3802698940658372:3802698940662682 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327830) = 0 +3802698940663612:3802698940665922 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698941928221:3802698941932781 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698941935131:3802698941936361 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698941937351:3802698941938191 1976:1977 hsa_signal_load_relaxed() = 1 +3802698941939041:3802698941943001 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698941943891:3802698941944591 1976:1977 hsa_signal_destroy() = 0 +3802698940666752:3802698941968741 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698941974101:3802698941975611 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698941979351:3802698941980011 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698941979761:3802698942039192 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698949218295:3802698949219745 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698949276475:3802698949672398 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698949676068:3802698949677848 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698949686638:3802698949687708 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698949688608:3802698949690888 1976:1980 hsa_signal_create(1, , 0, 0x7f53763278d0) = 0 +3802698949692058:3802698949698808 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327890) = 0 +3802698949699938:3802698949704758 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698951054698:3802698951059558 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698951061558:3802698951062858 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698951063908:3802698951064728 1976:1977 hsa_signal_load_relaxed() = 1 +3802698951065578:3802698951069508 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698951070388:3802698951071098 1976:1977 hsa_signal_destroy() = 0 +3802698949705868:3802698951095609 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698951102889:3802698951103499 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698951110069:3802698951110669 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698951115189:3802698951115789 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698951117329:3802698951117919 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698951119919:3802698951120509 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698951121699:3802698951122289 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698951128549:3802698951129139 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698951131649:3802698951132249 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698951104039:3802698951170759 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698951178619:3802698951180139 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 108 +3802698951181149:3802698951181959 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 108 +3802698951183039:3802698951183739 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 108 +3802698951184719:3802698951185809 1976:1980 hsa_signal_store_screlease(, 108) = void +3802698951189979:3802698951472471 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698951474711:3802698951475531 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698951476401:3802698951476971 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 109 +3802698951477791:3802698951478372 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 108 +3802698951479192:3802698951479962 1976:1980 hsa_signal_store_screlease(, 109) = void +3802698951483902:3802698952593370 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698952594690:3802698952595260 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698952596670:3802698952597720 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698952598620:3802698952600160 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327930) = 0 +3802698952601030:3802698952605390 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763278f0) = 0 +3802698952606280:3802698952608510 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698953870849:3802698953875399 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698953877409:3802698953878619 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698953879659:3802698953880499 1976:1977 hsa_signal_load_relaxed() = 1 +3802698953881419:3802698953885269 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698953886159:3802698953886869 1976:1977 hsa_signal_destroy() = 0 +3802698952609330:3802698953911050 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698953915980:3802698953917420 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698953921640:3802698953922250 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698953921540:3802698953981040 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698961168094:3802698961169374 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698961227444:3802698961628007 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698961631997:3802698961633557 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698961635767:3802698961636817 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698961637737:3802698961640287 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327990) = 0 +3802698961641477:3802698961648277 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327950) = 0 +3802698961649427:3802698961654537 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698963004917:3802698963009787 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698963011757:3802698963012937 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698963013937:3802698963014777 1976:1977 hsa_signal_load_relaxed() = 1 +3802698963015627:3802698963019487 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698963020367:3802698963021077 1976:1977 hsa_signal_destroy() = 0 +3802698961655707:3802698963045638 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698963058358:3802698963058968 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698963065698:3802698963066288 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698963068258:3802698963068848 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698963070098:3802698963070688 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698963072368:3802698963072958 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698963074178:3802698963074858 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698963080738:3802698963081338 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698963085188:3802698963085778 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698963053808:3802698963119998 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698963127658:3802698963128788 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 110 +3802698963129828:3802698963130628 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 110 +3802698963131698:3802698963132388 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 110 +3802698963133368:3802698963134628 1976:1980 hsa_signal_store_screlease(, 110) = void +3802698963138678:3802698963425740 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698963427920:3802698963428780 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698963429620:3802698963430190 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 111 +3802698963431010:3802698963431600 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 110 +3802698963432380:3802698963433180 1976:1980 hsa_signal_store_screlease(, 111) = void +3802698963434080:3802698964639849 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698964641189:3802698964641749 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698964643159:3802698964644219 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698964645129:3802698964646649 1976:1980 hsa_signal_create(1, , 0, 0x7f53763279f0) = 0 +3802698964647519:3802698964651669 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763279b0) = 0 +3802698964652579:3802698964654910 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698965916739:3802698965921299 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698965923569:3802698965924729 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698965925879:3802698965926709 1976:1977 hsa_signal_load_relaxed() = 1 +3802698965927659:3802698965931429 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698965932319:3802698965933029 1976:1977 hsa_signal_destroy() = 0 +3802698964655740:3802698965957429 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698965962549:3802698965964109 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698965967749:3802698965968429 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698965967979:3802698966027440 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698973213942:3802698973215722 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698973273723:3802698973668106 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698973672256:3802698973673846 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698973676016:3802698973677076 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698973677986:3802698973680266 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327a50) = 0 +3802698973681486:3802698973688366 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327a10) = 0 +3802698973689516:3802698973694816 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698975045096:3802698975049956 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698975051946:3802698975053096 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698975054146:3802698975054976 1976:1977 hsa_signal_load_relaxed() = 1 +3802698975055826:3802698975059666 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698975060546:3802698975061256 1976:1977 hsa_signal_destroy() = 0 +3802698973695916:3802698975085636 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698975092706:3802698975093316 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698975099916:3802698975100516 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698975102656:3802698975103246 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698975104786:3802698975105376 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698975113036:3802698975113667 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698975115007:3802698975115647 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698975122137:3802698975122727 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698975125337:3802698975125937 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698975093996:3802698975160727 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698975168707:3802698975169907 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 112 +3802698975170947:3802698975171747 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 112 +3802698975172877:3802698975173577 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 112 +3802698975179287:3802698975180557 1976:1980 hsa_signal_store_screlease(, 112) = void +3802698975184677:3802698975467619 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698975469659:3802698975470549 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698975471399:3802698975472029 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 113 +3802698975472859:3802698975473449 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 112 +3802698975474329:3802698975475109 1976:1980 hsa_signal_store_screlease(, 113) = void +3802698975476029:3802698976621348 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698976622798:3802698976623358 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698976624608:3802698976625668 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698976626578:3802698976628188 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327ab0) = 0 +3802698976629068:3802698976633298 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327a70) = 0 +3802698976634198:3802698976636658 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698977899107:3802698977903977 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698977906047:3802698977907207 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698977908257:3802698977909097 1976:1977 hsa_signal_load_relaxed() = 1 +3802698977910197:3802698977913907 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698977914797:3802698977915507 1976:1977 hsa_signal_destroy() = 0 +3802698976637508:3802698977939718 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698977944678:3802698977946328 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698977950188:3802698977950808 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698977950108:3802698978008098 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698985298722:3802698985299772 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698985359463:3802698985765536 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698985769676:3802698985771486 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698985774116:3802698985775186 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698985776076:3802698985778346 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327b10) = 0 +3802698985779626:3802698985786416 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327ad0) = 0 +3802698985787596:3802698985792886 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698987495529:3802698987500369 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698987502449:3802698987503669 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698987504719:3802698987505549 1976:1977 hsa_signal_load_relaxed() = 1 +3802698987506379:3802698987509989 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698987510869:3802698987511579 1976:1977 hsa_signal_destroy() = 0 +3802698985800596:3802698987536249 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698987547059:3802698987547859 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698987554199:3802698987554789 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698987557299:3802698987557889 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698987559309:3802698987559899 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698987561619:3802698987562209 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698987563469:3802698987564059 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698987570329:3802698987570929 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698987574569:3802698987575169 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698987544689:3802698987613039 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698987620930:3802698987621970 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 114 +3802698987622880:3802698987623690 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 114 +3802698987624740:3802698987625450 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 114 +3802698987626490:3802698987627760 1976:1980 hsa_signal_store_screlease(, 114) = void +3802698987631970:3802698987919562 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698987921482:3802698987922382 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698987923242:3802698987923802 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 115 +3802698987924632:3802698987925212 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 114 +3802698987926032:3802698987926792 1976:1980 hsa_signal_store_screlease(, 115) = void +3802698987927692:3802698988929999 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698988932709:3802698988933539 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698988935069:3802698988936269 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698988937309:3802698988939219 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327b70) = 0 +3802698988940199:3802698988945269 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327b30) = 0 +3802698988949759:3802698988952149 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802698990546211:3802698990550771 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698990552861:3802698990554051 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698990555101:3802698990555931 1976:1977 hsa_signal_load_relaxed() = 1 +3802698990556781:3802698990560491 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698990561371:3802698990562091 1976:1977 hsa_signal_destroy() = 0 +3802698988953079:3802698990587422 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698990592682:3802698990594192 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802698990598342:3802698990598962 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698990598112:3802698990657672 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802698997871486:3802698997873086 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698997932056:3802698998331879 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802698998335519:3802698998337229 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802698998339389:3802698998340439 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802698998341329:3802698998343669 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327bd0) = 0 +3802698998344899:3802698998351739 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327b90) = 0 +3802698998352919:3802698998358109 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802698999709019:3802698999713669 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802698999715670:3802698999716990 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802698999718040:3802698999718870 1976:1977 hsa_signal_load_relaxed() = 1 +3802698999719720:3802698999723650 1976:1977 hsa_signal_store_screlease(, 0) = void +3802698999724530:3802698999725230 1976:1977 hsa_signal_destroy() = 0 +3802698998359219:3802698999748450 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802698999755940:3802698999756540 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698999763530:3802698999764120 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698999766070:3802698999766650 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802698999768130:3802698999768730 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698999776590:3802698999777190 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802698999779560:3802698999780150 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698999787050:3802698999787650 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802698999790230:3802698999790820 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698999757060:3802698999823410 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802698999830970:3802698999832300 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 116 +3802698999833310:3802698999834140 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 116 +3802698999835230:3802698999835940 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 116 +3802698999837000:3802698999838250 1976:1980 hsa_signal_store_screlease(, 116) = void +3802698999842390:3802699000128403 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699000130413:3802699000131233 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699000132093:3802699000132723 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 117 +3802699000133523:3802699000134143 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 116 +3802699000134943:3802699000135723 1976:1980 hsa_signal_store_screlease(, 117) = void +3802699000136643:3802699001487452 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699001490162:3802699001490992 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699001492522:3802699001493722 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699001494762:3802699001496652 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327c30) = 0 +3802699001497632:3802699001502572 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327bf0) = 0 +3802699001503463:3802699001505813 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699002767832:3802699002772392 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699002774622:3802699002775802 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699002776842:3802699002777682 1976:1977 hsa_signal_load_relaxed() = 1 +3802699002778782:3802699002782442 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699002783322:3802699002784052 1976:1977 hsa_signal_destroy() = 0 +3802699001506723:3802699002808262 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699002813112:3802699002814562 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699002818452:3802699002819082 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699002818412:3802699002878082 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699010224797:3802699010225987 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699010285177:3802699010685940 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699010689850:3802699010691540 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699010694090:3802699010695160 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699010696050:3802699010698290 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327c90) = 0 +3802699010699470:3802699010706200 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327c50) = 0 +3802699010707340:3802699010712801 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699012065761:3802699012070421 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699012072561:3802699012073721 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699012074761:3802699012075601 1976:1977 hsa_signal_load_relaxed() = 1 +3802699012076441:3802699012080461 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699012081341:3802699012082041 1976:1977 hsa_signal_destroy() = 0 +3802699010713991:3802699012092461 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699012099841:3802699012100511 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699012114511:3802699012115111 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699012117321:3802699012117911 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699012119551:3802699012120171 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699012121941:3802699012122531 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699012123831:3802699012124421 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699012130961:3802699012131561 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699012135531:3802699012136131 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699012100001:3802699012166931 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699012174691:3802699012175891 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 118 +3802699012176911:3802699012177711 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 118 +3802699012178831:3802699012179521 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 118 +3802699012180561:3802699012181801 1976:1980 hsa_signal_store_screlease(, 118) = void +3802699012185971:3802699012467524 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699012469484:3802699012470314 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699012471164:3802699012471814 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 119 +3802699012476284:3802699012476894 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 118 +3802699012477824:3802699012478604 1976:1980 hsa_signal_store_screlease(, 119) = void +3802699012479514:3802699013617712 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699013620412:3802699013621252 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699013622902:3802699013624102 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699013625142:3802699013627022 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327cf0) = 0 +3802699013628002:3802699013632592 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327cb0) = 0 +3802699013633492:3802699013635822 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699014899152:3802699014903732 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699014905942:3802699014907242 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699014908292:3802699014909132 1976:1977 hsa_signal_load_relaxed() = 1 +3802699014909972:3802699014913642 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699014914522:3802699014915232 1976:1977 hsa_signal_destroy() = 0 +3802699013636712:3802699014939442 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699014944502:3802699014946292 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699014950032:3802699014950712 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699014950492:3802699015009792 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699022435778:3802699022437088 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699022495198:3802699022898171 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699022902441:3802699022904381 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699022906701:3802699022907761 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699022908681:3802699022911031 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327d50) = 0 +3802699022912251:3802699022918781 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327d10) = 0 +3802699022919951:3802699022924801 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699024547473:3802699024552343 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699024554363:3802699024555513 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699024556553:3802699024557383 1976:1977 hsa_signal_load_relaxed() = 1 +3802699024558223:3802699024562374 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699024566814:3802699024567554 1976:1977 hsa_signal_destroy() = 0 +3802699022925961:3802699024574514 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699024581814:3802699024582424 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699024588784:3802699024589384 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699024591304:3802699024591894 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699024593004:3802699024593594 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699024601004:3802699024601604 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699024602924:3802699024603514 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699024611624:3802699024612224 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699024614864:3802699024615454 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699024582794:3802699024648214 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699024655824:3802699024656994 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 120 +3802699024658004:3802699024658884 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 120 +3802699024660004:3802699024660704 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 120 +3802699024661684:3802699024662914 1976:1980 hsa_signal_store_screlease(, 120) = void +3802699024667134:3802699024949006 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699024951016:3802699024951806 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699024952676:3802699024953286 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 121 +3802699024954116:3802699024954696 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 120 +3802699024955526:3802699024956296 1976:1980 hsa_signal_store_screlease(, 121) = void +3802699024957196:3802699025967444 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699025970144:3802699025970984 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699025972614:3802699025973814 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699025974944:3802699025976794 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327db0) = 0 +3802699025977874:3802699025982394 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327d70) = 0 +3802699025983374:3802699025985754 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699027540186:3802699027544766 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699027546826:3802699027548096 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699027549136:3802699027549966 1976:1977 hsa_signal_load_relaxed() = 1 +3802699027554436:3802699027558156 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699027559056:3802699027559766 1976:1977 hsa_signal_destroy() = 0 +3802699025986664:3802699027583736 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699027588916:3802699027590576 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699027593876:3802699027594526 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699027594376:3802699027653357 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699035014470:3802699035015470 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699035076511:3802699035481224 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699035485204:3802699035487004 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699035489334:3802699035490394 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699035491314:3802699035493624 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327e10) = 0 +3802699035494824:3802699035501404 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327dd0) = 0 +3802699035502564:3802699035507194 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699036858514:3802699036863464 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699036865454:3802699036866604 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699036867664:3802699036868494 1976:1977 hsa_signal_load_relaxed() = 1 +3802699036869334:3802699036873204 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699036874074:3802699036874774 1976:1977 hsa_signal_destroy() = 0 +3802699035508364:3802699036899594 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699036906655:3802699036907265 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699036918625:3802699036919225 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699036921315:3802699036921905 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699036923525:3802699036924125 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699036925835:3802699036926425 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699036927665:3802699036928265 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699036934895:3802699036935495 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699036938185:3802699036938775 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699036907925:3802699036973845 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699036986475:3802699036987505 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 122 +3802699036988775:3802699036989565 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 122 +3802699036990635:3802699036991345 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 122 +3802699036992325:3802699036993585 1976:1980 hsa_signal_store_screlease(, 122) = void +3802699036997625:3802699037283477 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699037285407:3802699037286227 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699037287067:3802699037287687 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 123 +3802699037288527:3802699037289117 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 122 +3802699037289957:3802699037290737 1976:1980 hsa_signal_store_screlease(, 123) = void +3802699037291657:3802699038499776 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699038502476:3802699038503306 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699038504846:3802699038506046 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699038507076:3802699038509126 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327e70) = 0 +3802699038510106:3802699038514566 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327e30) = 0 +3802699038515557:3802699038517957 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699039779436:3802699039784366 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699039786646:3802699039787796 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699039788836:3802699039789666 1976:1977 hsa_signal_load_relaxed() = 1 +3802699039790506:3802699039794286 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699039795166:3802699039795866 1976:1977 hsa_signal_destroy() = 0 +3802699038518867:3802699039818716 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699039823876:3802699039825476 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699039832676:3802699039833286 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699039829616:3802699039889507 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699047211661:3802699047213021 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699047275162:3802699047679945 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699047683785:3802699047685515 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699047687805:3802699047688865 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699047689765:3802699047692425 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327ed0) = 0 +3802699047700245:3802699047706365 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327e90) = 0 +3802699047707515:3802699047712715 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699049064415:3802699049069265 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699049071335:3802699049072485 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699049073535:3802699049074365 1976:1977 hsa_signal_load_relaxed() = 1 +3802699049075205:3802699049078955 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699049079835:3802699049080545 1976:1977 hsa_signal_destroy() = 0 +3802699047713925:3802699049105675 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699049112745:3802699049113355 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699049119995:3802699049120585 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699049122695:3802699049123285 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699049124705:3802699049125295 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699049129995:3802699049130595 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699049132035:3802699049132625 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699049138906:3802699049139506 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699049142116:3802699049142716 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699049114405:3802699049181846 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699049189876:3802699049190936 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 124 +3802699049191956:3802699049192766 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 124 +3802699049194056:3802699049194756 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 124 +3802699049195736:3802699049196966 1976:1980 hsa_signal_store_screlease(, 124) = void +3802699049201156:3802699049485968 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699049487968:3802699049488808 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699049489668:3802699049490238 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 125 +3802699049491068:3802699049491648 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 124 +3802699049492468:3802699049493248 1976:1980 hsa_signal_store_screlease(, 125) = void +3802699049494168:3802699050641227 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699050643937:3802699050644777 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699050650537:3802699050651757 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699050652817:3802699050654767 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327f30) = 0 +3802699050655757:3802699050660077 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327ef0) = 0 +3802699050660967:3802699050663407 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699051926316:3802699051930876 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699051932886:3802699051934136 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699051935186:3802699051936026 1976:1977 hsa_signal_load_relaxed() = 1 +3802699051936866:3802699051940626 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699051941506:3802699051942206 1976:1977 hsa_signal_destroy() = 0 +3802699050664317:3802699051965047 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699051970027:3802699051971467 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699051975137:3802699051975837 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699051975677:3802699052178058 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699059207120:3802699059208240 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699059271590:3802699059916145 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699059920485:3802699059922085 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699059925895:3802699059926915 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699059928075:3802699059931055 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327f90) = 0 +3802699059932105:3802699059939375 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327f50) = 0 +3802699059940615:3802699059946075 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699061520457:3802699061525367 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699061527847:3802699061529097 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699061530147:3802699061531067 1976:1977 hsa_signal_load_relaxed() = 1 +3802699061531907:3802699061536827 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699061537697:3802699061538417 1976:1977 hsa_signal_destroy() = 0 +3802699059947315:3802699061564317 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699061573727:3802699061574337 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699061589607:3802699061590197 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699061592737:3802699061593737 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699061598527:3802699061599127 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699061600757:3802699061601347 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699061602797:3802699061603397 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699061611227:3802699061611827 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699061614418:3802699061615018 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699061573137:3802699061637168 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699061646478:3802699061647708 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 126 +3802699061648828:3802699061649778 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 126 +3802699061650968:3802699061651698 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 126 +3802699061652808:3802699061654288 1976:1980 hsa_signal_store_screlease(, 126) = void +3802699061658948:3802699061943540 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699061945600:3802699061946640 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699061947470:3802699061948080 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 127 +3802699061948880:3802699061949460 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 126 +3802699061950220:3802699061951060 1976:1980 hsa_signal_store_screlease(, 127) = void +3802699061951940:3802699062971338 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699062974118:3802699062974938 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699062976618:3802699062977798 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699062978838:3802699062981118 1976:1980 hsa_signal_create(1, , 0, 0x7f5376327ff0) = 0 +3802699062981958:3802699062986908 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376327fb0) = 0 +3802699062987768:3802699062990348 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699064518219:3802699064522949 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699064525159:3802699064526319 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699064527359:3802699064528289 1976:1977 hsa_signal_load_relaxed() = 1 +3802699064529139:3802699064533389 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699064534249:3802699064534959 1976:1977 hsa_signal_destroy() = 0 +3802699062991238:3802699064545659 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699064551059:3802699064552439 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699064564179:3802699064564789 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699064560469:3802699064617270 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699071841814:3802699071843414 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699071888694:3802699072193996 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699072196896:3802699072197786 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699072202526:3802699072203546 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699072204676:3802699072206506 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328050) = 0 +3802699072207716:3802699072212686 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328010) = 0 +3802699072213746:3802699072215886 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699073706007:3802699073710957 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699073713338:3802699073714488 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699073715528:3802699073716458 1976:1977 hsa_signal_load_relaxed() = 1 +3802699073717298:3802699073720718 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699073721608:3802699073722328 1976:1977 hsa_signal_destroy() = 0 +3802699072216806:3802699073747468 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699073756488:3802699073757508 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699073765408:3802699073766008 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699073768258:3802699073768848 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699073770398:3802699073770988 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699073773608:3802699073774578 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699073776158:3802699073776748 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699073792798:3802699073793398 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699073796048:3802699073796648 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699073754958:3802699073815578 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699073822398:3802699073823118 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 128 +3802699073824138:3802699073824788 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 128 +3802699073825688:3802699073826298 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 128 +3802699073827198:3802699073828148 1976:1980 hsa_signal_store_screlease(, 128) = void +3802699073835338:3802699074096740 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699074098690:3802699074099580 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699074100400:3802699074101010 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 129 +3802699074101820:3802699074102390 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 128 +3802699074103150:3802699074104020 1976:1980 hsa_signal_store_screlease(, 129) = void +3802699074104920:3802699075150908 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699075153608:3802699075154458 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699075156298:3802699075157478 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699075158508:3802699075160668 1976:1980 hsa_signal_create(1, , 0, 0x7f53763280b0) = 0 +3802699075161728:3802699075166848 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328070) = 0 +3802699075167728:3802699075169848 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699076435558:3802699076440488 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699076442938:3802699076444088 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699076445138:3802699076446168 1976:1977 hsa_signal_load_relaxed() = 1 +3802699076447288:3802699076451468 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699076452338:3802699076453058 1976:1977 hsa_signal_destroy() = 0 +3802699075170738:3802699076465698 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699076469718:3802699076470968 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699076476758:3802699076477738 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699076474568:3802699076530978 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699083680512:3802699083681952 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699083725912:3802699084025194 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699084028054:3802699084028944 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699084030574:3802699084031584 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699084032744:3802699084034414 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328110) = 0 +3802699084035344:3802699084040344 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763280d0) = 0 +3802699084041514:3802699084043514 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699085534605:3802699085539315 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699085541565:3802699085542765 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699085547705:3802699085548655 1976:1977 hsa_signal_load_relaxed() = 1 +3802699085549505:3802699085553405 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699085554275:3802699085554985 1976:1977 hsa_signal_destroy() = 0 +3802699084044424:3802699085586606 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699085595296:3802699085596286 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699085612786:3802699085613376 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699085615496:3802699085616096 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699085617446:3802699085618036 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699085619786:3802699085620376 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699085621816:3802699085622406 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699085630876:3802699085631466 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699085634416:3802699085635006 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699085593476:3802699085652776 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699085659496:3802699085660216 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 130 +3802699085661126:3802699085661776 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 130 +3802699085662676:3802699085663276 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 130 +3802699085664166:3802699085665096 1976:1980 hsa_signal_store_screlease(, 130) = void +3802699085669016:3802699085930918 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699085932898:3802699085933738 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699085934568:3802699085935178 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 131 +3802699085935968:3802699085936538 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 130 +3802699085937288:3802699085938168 1976:1980 hsa_signal_store_screlease(, 131) = void +3802699085939048:3802699086991066 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699086993756:3802699086994586 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699086996246:3802699086997426 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699086998436:3802699087000686 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328170) = 0 +3802699087001726:3802699087006606 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328130) = 0 +3802699087007466:3802699087009586 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699088501727:3802699088506657 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699088508807:3802699088509967 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699088511007:3802699088511927 1976:1977 hsa_signal_load_relaxed() = 1 +3802699088512777:3802699088516917 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699088517797:3802699088518517 1976:1977 hsa_signal_destroy() = 0 +3802699087014416:3802699088528067 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699088533087:3802699088534287 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699088545287:3802699088545917 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699088537807:3802699088596137 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699095731290:3802699095732290 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699095784541:3802699096093483 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699096096153:3802699096097103 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699096098603:3802699096099613 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699096100723:3802699096102503 1976:1980 hsa_signal_create(1, , 0, 0x7f53763281d0) = 0 +3802699096103653:3802699096108493 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328190) = 0 +3802699096109563:3802699096111573 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699097604324:3802699097609034 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699097611254:3802699097612414 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699097613454:3802699097614374 1976:1977 hsa_signal_load_relaxed() = 1 +3802699097615225:3802699097619275 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699097620165:3802699097620875 1976:1977 hsa_signal_destroy() = 0 +3802699096112473:3802699097645565 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699097654525:3802699097655515 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699097662645:3802699097663245 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699097665225:3802699097665815 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699097667585:3802699097668185 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699097670625:3802699097671735 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699097673295:3802699097673885 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699097690215:3802699097690805 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699097695115:3802699097695715 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699097653125:3802699097712525 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699097719585:3802699097720315 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 132 +3802699097721205:3802699097721845 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 132 +3802699097722745:3802699097723345 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 132 +3802699097724245:3802699097725255 1976:1980 hsa_signal_store_screlease(, 132) = void +3802699097729255:3802699097989397 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699097991287:3802699097992157 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699097992977:3802699097993587 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 133 +3802699097994417:3802699097994967 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 132 +3802699097995757:3802699097996627 1976:1980 hsa_signal_store_screlease(, 133) = void +3802699097997517:3802699099028525 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699099031225:3802699099032055 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699099033715:3802699099034905 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699099035915:3802699099038035 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328230) = 0 +3802699099039055:3802699099044495 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763281f0) = 0 +3802699099045385:3802699099047515 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699100472956:3802699100477656 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699100479986:3802699100481136 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699100482186:3802699100483106 1976:1977 hsa_signal_load_relaxed() = 1 +3802699100483946:3802699100488106 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699100488986:3802699100489706 1976:1977 hsa_signal_destroy() = 0 +3802699099048405:3802699100500886 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699100505656:3802699100506806 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699100512686:3802699100513666 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699100510506:3802699100567726 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699107691899:3802699107693129 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699107739040:3802699108055092 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699108060962:3802699108061862 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699108063342:3802699108064352 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699108065212:3802699108066882 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328290) = 0 +3802699108067742:3802699108072392 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328250) = 0 +3802699108073272:3802699108075382 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699109571003:3802699109575933 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699109578083:3802699109579243 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699109580284:3802699109581204 1976:1977 hsa_signal_load_relaxed() = 1 +3802699109582054:3802699109585874 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699109586754:3802699109587464 1976:1977 hsa_signal_destroy() = 0 +3802699108076302:3802699109612414 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699109620654:3802699109621754 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699109629044:3802699109629634 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699109640014:3802699109640614 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699109642164:3802699109642754 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699109644594:3802699109645184 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699109646494:3802699109647084 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699109655124:3802699109655724 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699109658754:3802699109659354 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699109619774:3802699109678954 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699109685534:3802699109686254 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 134 +3802699109687494:3802699109688144 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 134 +3802699109689264:3802699109689864 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 134 +3802699109690834:3802699109691764 1976:1980 hsa_signal_store_screlease(, 134) = void +3802699109695694:3802699109956586 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699109958486:3802699109959366 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699109960166:3802699109960766 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 135 +3802699109961556:3802699109962116 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 134 +3802699109962886:3802699109963706 1976:1980 hsa_signal_store_screlease(, 135) = void +3802699109967606:3802699110992764 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699110995464:3802699110996284 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699110997954:3802699110999144 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699111000174:3802699111002314 1976:1980 hsa_signal_create(1, , 0, 0x7f53763282f0) = 0 +3802699111003364:3802699111008394 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763282b0) = 0 +3802699111009254:3802699111011394 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699112503445:3802699112508015 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699112510445:3802699112511595 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699112512595:3802699112513525 1976:1977 hsa_signal_load_relaxed() = 1 +3802699112514365:3802699112518515 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699112519395:3802699112520115 1976:1977 hsa_signal_destroy() = 0 +3802699111012284:3802699112529665 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699112534745:3802699112535835 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699112543906:3802699112544516 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699112540086:3802699112598096 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699119739168:3802699119740388 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699119784899:3802699120094441 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699120097111:3802699120098001 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699120099541:3802699120100551 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699120101691:3802699120103471 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328350) = 0 +3802699120104671:3802699120109351 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328310) = 0 +3802699120110401:3802699120112381 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699121606632:3802699121611572 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699121613762:3802699121614912 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699121615962:3802699121616892 1976:1977 hsa_signal_load_relaxed() = 1 +3802699121617732:3802699121621792 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699121622682:3802699121623402 1976:1977 hsa_signal_destroy() = 0 +3802699120113301:3802699121648132 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699121660723:3802699121661733 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699121676663:3802699121677433 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699121679943:3802699121680533 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699121681953:3802699121682543 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699121684173:3802699121684763 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699121686003:3802699121686593 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699121696003:3802699121696603 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699121699213:3802699121699813 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699121659373:3802699121719263 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699121726203:3802699121726913 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 136 +3802699121727953:3802699121728603 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 136 +3802699121729493:3802699121730093 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 136 +3802699121730993:3802699121731933 1976:1980 hsa_signal_store_screlease(, 136) = void +3802699121735933:3802699121996005 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699121998015:3802699121998905 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699121999735:3802699122000295 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 137 +3802699122001065:3802699122001635 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 136 +3802699122002395:3802699122003215 1976:1980 hsa_signal_store_screlease(, 137) = void +3802699122004115:3802699123034513 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699123037203:3802699123038033 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699123039693:3802699123040873 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699123041883:3802699123044183 1976:1980 hsa_signal_create(1, , 0, 0x7f53763283b0) = 0 +3802699123045213:3802699123050413 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328370) = 0 +3802699123051283:3802699123053543 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699124498654:3802699124503594 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699124505904:3802699124507054 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699124508104:3802699124509034 1976:1977 hsa_signal_load_relaxed() = 1 +3802699124509874:3802699124513994 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699124514884:3802699124515594 1976:1977 hsa_signal_destroy() = 0 +3802699123054433:3802699124530594 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699124535614:3802699124536704 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699124542194:3802699124543174 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699124540014:3802699124597404 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699131735888:3802699131736978 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699131780128:3802699132089580 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699132092390:3802699132093270 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699132094890:3802699132095900 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699132097080:3802699132098740 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328410) = 0 +3802699132099680:3802699132104500 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763283d0) = 0 +3802699132105660:3802699132107720 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699133601471:3802699133606401 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699133608261:3802699133609411 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699133610451:3802699133611371 1976:1977 hsa_signal_load_relaxed() = 1 +3802699133612221:3802699133616301 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699133617191:3802699133617892 1976:1977 hsa_signal_destroy() = 0 +3802699132108630:3802699133648692 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699133657262:3802699133658232 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699133664742:3802699133665342 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699133675682:3802699133676282 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699133678042:3802699133678622 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699133680412:3802699133681002 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699133682622:3802699133683212 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699133693082:3802699133693682 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699133696232:3802699133696832 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699133655622:3802699133714472 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699133721772:3802699133722512 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 138 +3802699133723712:3802699133724362 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 138 +3802699133728802:3802699133729432 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 138 +3802699133730382:3802699133731322 1976:1980 hsa_signal_store_screlease(, 138) = void +3802699133735612:3802699133996524 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699133998474:3802699133999374 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699134000214:3802699134000824 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 139 +3802699134001624:3802699134002184 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 138 +3802699134002944:3802699134003784 1976:1980 hsa_signal_store_screlease(, 139) = void +3802699134004674:3802699135031132 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699135033832:3802699135034652 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699135036322:3802699135037512 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699135038532:3802699135040762 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328470) = 0 +3802699135041832:3802699135046892 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328430) = 0 +3802699135047772:3802699135049902 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699136475563:3802699136480503 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699136482803:3802699136483953 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699136485003:3802699136485923 1976:1977 hsa_signal_load_relaxed() = 1 +3802699136486763:3802699136490933 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699136491803:3802699136492533 1976:1977 hsa_signal_destroy() = 0 +3802699135050792:3802699136501803 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699136506843:3802699136508023 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699136513173:3802699136514213 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699136511793:3802699136569733 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699143700377:3802699143701677 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699143752187:3802699144070719 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699144073359:3802699144074259 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699144075579:3802699144076589 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699144077729:3802699144079509 1976:1980 hsa_signal_create(1, , 0, 0x7f53763284d0) = 0 +3802699144080639:3802699144085629 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328490) = 0 +3802699144090009:3802699144092069 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699145586790:3802699145591750 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699145594040:3802699145595200 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699145596250:3802699145597170 1976:1977 hsa_signal_load_relaxed() = 1 +3802699145598020:3802699145602120 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699145603000:3802699145603720 1976:1977 hsa_signal_destroy() = 0 +3802699144093039:3802699145628451 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699145645871:3802699145646491 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699145654101:3802699145655241 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699145657231:3802699145657821 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699145659351:3802699145659941 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699145661901:3802699145662491 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699145663791:3802699145664381 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699145673901:3802699145674501 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699145677241:3802699145677831 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699145636041:3802699145696491 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699145703271:3802699145704001 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 140 +3802699145704921:3802699145705571 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 140 +3802699145706461:3802699145707061 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 140 +3802699145708001:3802699145708941 1976:1980 hsa_signal_store_screlease(, 140) = void +3802699145712921:3802699145971073 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699145973123:3802699145973953 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699145974773:3802699145975383 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 141 +3802699145976193:3802699145976773 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 140 +3802699145977523:3802699145978363 1976:1980 hsa_signal_store_screlease(, 141) = void +3802699145979253:3802699147015531 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699147018241:3802699147019071 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699147020751:3802699147021931 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699147022941:3802699147025131 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328530) = 0 +3802699147029921:3802699147035201 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763284f0) = 0 +3802699147036101:3802699147038351 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699148473191:3802699148477791 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699148480031:3802699148481261 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699148482261:3802699148483191 1976:1977 hsa_signal_load_relaxed() = 1 +3802699148484041:3802699148488231 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699148489101:3802699148489811 1976:1977 hsa_signal_destroy() = 0 +3802699147039241:3802699148500531 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699148505291:3802699148506381 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699148512071:3802699148513061 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699148509901:3802699148567582 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699155708375:3802699155709535 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699155753605:3802699156065318 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699156068128:3802699156069018 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699156070528:3802699156071548 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699156072708:3802699156074388 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328590) = 0 +3802699156075338:3802699156080158 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328550) = 0 +3802699156081328:3802699156083478 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699157577429:3802699157582349 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699157584449:3802699157585719 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699157586759:3802699157587679 1976:1977 hsa_signal_load_relaxed() = 1 +3802699157588529:3802699157592659 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699157593579:3802699157594279 1976:1977 hsa_signal_destroy() = 0 +3802699156084368:3802699157619079 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699157627729:3802699157628719 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699157636019:3802699157636619 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699157647349:3802699157647949 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699157649369:3802699157649959 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699157653399:3802699157653989 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699157655079:3802699157655669 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699157663710:3802699157664300 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699157667320:3802699157667920 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699157626379:3802699157685350 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699157691950:3802699157692660 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 142 +3802699157693570:3802699157694210 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 142 +3802699157695110:3802699157695710 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 142 +3802699157696650:3802699157697580 1976:1980 hsa_signal_store_screlease(, 142) = void +3802699157701530:3802699157960982 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699157962992:3802699157963872 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699157964722:3802699157965332 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 143 +3802699157966132:3802699157966722 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 142 +3802699157967582:3802699157968392 1976:1980 hsa_signal_store_screlease(, 143) = void +3802699157969302:3802699159004480 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699159007190:3802699159008020 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699159009670:3802699159010850 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699159011870:3802699159014060 1976:1980 hsa_signal_create(1, , 0, 0x7f53763285f0) = 0 +3802699159015130:3802699159020210 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763285b0) = 0 +3802699159021090:3802699159023220 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699160474590:3802699160479521 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699160481801:3802699160482951 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699160484001:3802699160484921 1976:1977 hsa_signal_load_relaxed() = 1 +3802699160485771:3802699160489931 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699160490811:3802699160491521 1976:1977 hsa_signal_destroy() = 0 +3802699159024100:3802699160501001 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699160506021:3802699160507091 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699160512371:3802699160513171 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699160510611:3802699160568721 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699167711964:3802699167713094 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699167756695:3802699168086337 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699168089587:3802699168090427 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699168091877:3802699168092887 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699168093987:3802699168095867 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328650) = 0 +3802699168096977:3802699168102097 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328610) = 0 +3802699168103137:3802699168105297 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699169599578:3802699169604508 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699169606948:3802699169608098 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699169609158:3802699169610078 1976:1977 hsa_signal_load_relaxed() = 1 +3802699169610928:3802699169615418 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699169616328:3802699169617038 1976:1977 hsa_signal_destroy() = 0 +3802699168106207:3802699169642789 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699169658139:3802699169658759 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699169665799:3802699169666389 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699169668309:3802699169669079 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699169671009:3802699169671779 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699169673799:3802699169674389 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699169675789:3802699169676379 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699169687749:3802699169688339 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699169690949:3802699169691539 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699169650259:3802699169720059 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699169726999:3802699169727729 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 144 +3802699169728689:3802699169729329 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 144 +3802699169730239:3802699169730839 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 144 +3802699169731739:3802699169732659 1976:1980 hsa_signal_store_screlease(, 144) = void +3802699169736699:3802699170004681 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699170006871:3802699170007731 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699170012061:3802699170012701 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 145 +3802699170013551:3802699170014101 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 144 +3802699170014881:3802699170015721 1976:1980 hsa_signal_store_screlease(, 145) = void +3802699170016611:3802699171038199 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699171040869:3802699171041709 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699171043389:3802699171044569 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699171045579:3802699171047709 1976:1980 hsa_signal_create(1, , 0, 0x7f53763286b0) = 0 +3802699171048749:3802699171053979 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328670) = 0 +3802699171054839:3802699171056939 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699172475630:3802699172480570 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699172482820:3802699172483970 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699172485020:3802699172485940 1976:1977 hsa_signal_load_relaxed() = 1 +3802699172486790:3802699172490930 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699172491820:3802699172492530 1976:1977 hsa_signal_destroy() = 0 +3802699171057829:3802699172501840 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699172506610:3802699172507700 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699172513340:3802699172514320 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699172511200:3802699172577560 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699179704353:3802699179705463 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699179756873:3802699180168176 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699180171406:3802699180172246 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699180173886:3802699180174896 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699180176016:3802699180177806 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328710) = 0 +3802699180178736:3802699180183816 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763286d0) = 0 +3802699180184956:3802699180186896 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699181689117:3802699181693827 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699181696118:3802699181697268 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699181698318:3802699181699238 1976:1977 hsa_signal_load_relaxed() = 1 +3802699181700088:3802699181704188 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699181711008:3802699181711768 1976:1977 hsa_signal_destroy() = 0 +3802699180187836:3802699181734398 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699181743038:3802699181744058 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699181751898:3802699181752488 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699181763388:3802699181763988 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699181765828:3802699181766418 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699181768468:3802699181769058 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699181770488:3802699181771088 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699181779318:3802699181779908 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699181782628:3802699181783228 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699181741808:3802699181803288 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699181809938:3802699181810658 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 146 +3802699181811768:3802699181812408 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 146 +3802699181813498:3802699181814098 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 146 +3802699181815008:3802699181815948 1976:1980 hsa_signal_store_screlease(, 146) = void +3802699181819968:3802699182087980 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699182090000:3802699182090870 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699182091700:3802699182092300 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 147 +3802699182093120:3802699182093670 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 146 +3802699182094460:3802699182095300 1976:1980 hsa_signal_store_screlease(, 147) = void +3802699182096190:3802699183119058 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699183121758:3802699183122588 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699183124238:3802699183125408 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699183126428:3802699183128608 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328770) = 0 +3802699183129638:3802699183134998 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328730) = 0 +3802699183135858:3802699183137968 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699184582189:3802699184586889 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699184589119:3802699184590279 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699184595379:3802699184596319 1976:1977 hsa_signal_load_relaxed() = 1 +3802699184597179:3802699184601509 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699184602379:3802699184603089 1976:1977 hsa_signal_destroy() = 0 +3802699183138858:3802699184613459 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699184618439:3802699184619619 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699184624629:3802699184625869 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699184622869:3802699184680250 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699191817283:3802699191818363 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699191869233:3802699192181316 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699192184006:3802699192184896 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699192186306:3802699192187316 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699192188476:3802699192190276 1976:1980 hsa_signal_create(1, , 0, 0x7f53763287d0) = 0 +3802699192191416:3802699192196446 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328790) = 0 +3802699192197516:3802699192199506 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699193561456:3802699193566226 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699193568296:3802699193569446 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699193570496:3802699193571406 1976:1977 hsa_signal_load_relaxed() = 1 +3802699193572256:3802699193575936 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699193576836:3802699193577586 1976:1977 hsa_signal_destroy() = 0 +3802699192200406:3802699193604366 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699193621366:3802699193621996 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699193629936:3802699193631126 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699193633126:3802699193633716 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699193635506:3802699193636096 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699193638136:3802699193638726 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699193640286:3802699193640876 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699193651816:3802699193652406 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699193656286:3802699193656876 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699193611736:3802699193671767 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699193682507:3802699193683247 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 148 +3802699193684157:3802699193684807 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 148 +3802699193685707:3802699193686307 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 148 +3802699193687187:3802699193688117 1976:1980 hsa_signal_store_screlease(, 148) = void +3802699193692117:3802699193954209 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699193956149:3802699193957029 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699193957849:3802699193958459 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 149 +3802699193959279:3802699193959819 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 148 +3802699193960579:3802699193961419 1976:1980 hsa_signal_store_screlease(, 149) = void +3802699193962309:3802699194994976 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699194997646:3802699194998496 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699195000176:3802699195001356 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699195002366:3802699195004507 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328830) = 0 +3802699195005527:3802699195010887 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763287f0) = 0 +3802699195011767:3802699195013867 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699196523958:3802699196528898 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699196531218:3802699196532378 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699196533428:3802699196534348 1976:1977 hsa_signal_load_relaxed() = 1 +3802699196535188:3802699196539488 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699196540388:3802699196541108 1976:1977 hsa_signal_destroy() = 0 +3802699195014777:3802699196551568 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699196556298:3802699196557398 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699196563048:3802699196564038 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699196560878:3802699196617789 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699203758951:3802699203759821 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699203805171:3802699204117223 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699204120014:3802699204120904 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699204122534:3802699204123544 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699204127874:3802699204129594 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328890) = 0 +3802699204130474:3802699204135154 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328850) = 0 +3802699204136034:3802699204138024 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699205632825:3802699205637535 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699205639705:3802699205640855 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699205641905:3802699205642825 1976:1977 hsa_signal_load_relaxed() = 1 +3802699205643675:3802699205647765 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699205648655:3802699205649385 1976:1977 hsa_signal_destroy() = 0 +3802699204138934:3802699205674445 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699205683205:3802699205684195 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699205691035:3802699205691625 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699205702155:3802699205702755 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699205704265:3802699205704855 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699205706725:3802699205707315 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699205708705:3802699205709305 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699205716575:3802699205717165 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699205720305:3802699205720895 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699205681635:3802699205742286 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699205749016:3802699205749746 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 150 +3802699205750676:3802699205751316 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 150 +3802699205752216:3802699205752826 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 150 +3802699205753736:3802699205754676 1976:1980 hsa_signal_store_screlease(, 150) = void +3802699205758886:3802699206018418 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699206020428:3802699206021308 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699206022148:3802699206022748 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 151 +3802699206023558:3802699206024118 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 150 +3802699206024878:3802699206025758 1976:1980 hsa_signal_store_screlease(, 151) = void +3802699206026648:3802699207070755 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699207077506:3802699207078346 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699207080046:3802699207081236 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699207082266:3802699207084526 1976:1980 hsa_signal_create(1, , 0, 0x7f53763288f0) = 0 +3802699207085566:3802699207090746 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763288b0) = 0 +3802699207091656:3802699207093766 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699208511546:3802699208516466 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699208518696:3802699208519846 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699208520896:3802699208521816 1976:1977 hsa_signal_load_relaxed() = 1 +3802699208522666:3802699208526846 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699208527736:3802699208528446 1976:1977 hsa_signal_destroy() = 0 +3802699207094656:3802699208545036 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699208550036:3802699208551106 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699208556787:3802699208557767 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699208554646:3802699208612137 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699215746120:3802699215747220 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699215791970:3802699216101483 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699216104173:3802699216104993 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699216106373:3802699216107393 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699216108543:3802699216110323 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328950) = 0 +3802699216111463:3802699216116313 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328910) = 0 +3802699216117373:3802699216119403 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699217612114:3802699217616814 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699217619104:3802699217620254 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699217621484:3802699217622404 1976:1977 hsa_signal_load_relaxed() = 1 +3802699217623484:3802699217627614 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699217628574:3802699217629284 1976:1977 hsa_signal_destroy() = 0 +3802699216120313:3802699217660584 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699217678254:3802699217678874 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699217688724:3802699217689314 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699217695584:3802699217696174 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699217697635:3802699217698225 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699217699915:3802699217700505 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699217701675:3802699217702265 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699217710035:3802699217710635 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699217714995:3802699217715595 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699217667934:3802699217727495 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699217734235:3802699217734965 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 152 +3802699217735875:3802699217736515 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 152 +3802699217737425:3802699217738035 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 152 +3802699217739245:3802699217740185 1976:1980 hsa_signal_store_screlease(, 152) = void +3802699217744065:3802699218005577 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699218007517:3802699218008397 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699218009227:3802699218009827 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 153 +3802699218010627:3802699218011197 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 152 +3802699218011957:3802699218012827 1976:1980 hsa_signal_store_screlease(, 153) = void +3802699218013747:3802699219055975 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699219058665:3802699219059485 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699219061145:3802699219062335 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699219063365:3802699219065535 1976:1980 hsa_signal_create(1, , 0, 0x7f53763289b0) = 0 +3802699219066495:3802699219072025 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328970) = 0 +3802699219072905:3802699219075045 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699220600636:3802699220605606 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699220607876:3802699220609036 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699220610076:3802699220610996 1976:1977 hsa_signal_load_relaxed() = 1 +3802699220611846:3802699220616036 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699220616916:3802699220617636 1976:1977 hsa_signal_destroy() = 0 +3802699219075945:3802699220628016 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699220636386:3802699220637546 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699220643036:3802699220644026 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699220640886:3802699220697717 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699227835130:3802699227836280 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699227886860:3802699228204843 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699228207723:3802699228208623 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699228210233:3802699228211253 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699228212413:3802699228214083 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328a10) = 0 +3802699228215013:3802699228219823 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763289d0) = 0 +3802699228220993:3802699228222973 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699229717904:3802699229722854 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699229725344:3802699229726494 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699229727534:3802699229728464 1976:1977 hsa_signal_load_relaxed() = 1 +3802699229729494:3802699229733454 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699229734334:3802699229735054 1976:1977 hsa_signal_destroy() = 0 +3802699228223893:3802699229760124 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699229768984:3802699229769974 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699229777324:3802699229777914 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699229780154:3802699229780744 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699229782134:3802699229782724 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699229793254:3802699229793854 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699229795184:3802699229795784 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699229803674:3802699229804274 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699229806904:3802699229807504 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699229767324:3802699229826914 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699229833824:3802699229834554 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 154 +3802699229835764:3802699229836404 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 154 +3802699229837504:3802699229838114 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 154 +3802699229839144:3802699229840104 1976:1980 hsa_signal_store_screlease(, 154) = void +3802699229847495:3802699230106936 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699230108906:3802699230109786 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699230110606:3802699230111216 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 155 +3802699230112016:3802699230112576 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 154 +3802699230113346:3802699230114226 1976:1980 hsa_signal_store_screlease(, 155) = void +3802699230115126:3802699231159134 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699231161794:3802699231162624 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699231164304:3802699231165494 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699231166504:3802699231168794 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328a70) = 0 +3802699231169764:3802699231175334 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328a30) = 0 +3802699231176214:3802699231178344 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699232587644:3802699232592724 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699232595135:3802699232596285 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699232597425:3802699232598375 1976:1977 hsa_signal_load_relaxed() = 1 +3802699232599215:3802699232603415 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699232604315:3802699232605025 1976:1977 hsa_signal_destroy() = 0 +3802699231179224:3802699232612155 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699232616325:3802699232617475 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699232622965:3802699232623945 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699232620675:3802699232677425 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699239800898:3802699239801858 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699239847658:3802699240161671 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699240164351:3802699240165271 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699240166671:3802699240167681 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699240168841:3802699240170701 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328ad0) = 0 +3802699240171861:3802699240176531 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328a90) = 0 +3802699240177601:3802699240179581 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699241673322:3802699241678252 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699241684402:3802699241685562 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699241686612:3802699241687542 1976:1977 hsa_signal_load_relaxed() = 1 +3802699241688382:3802699241692312 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699241693222:3802699241693952 1976:1977 hsa_signal_destroy() = 0 +3802699240180501:3802699241719072 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699241734812:3802699241735433 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699241742173:3802699241742763 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699241745823:3802699241746423 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699241747933:3802699241748523 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699241750533:3802699241751123 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699241752493:3802699241753093 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699241760893:3802699241761493 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699241765453:3802699241766053 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699241726392:3802699241786393 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699241793383:3802699241794113 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 156 +3802699241795143:3802699241795823 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 156 +3802699241796733:3802699241797333 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 156 +3802699241798413:3802699241799353 1976:1980 hsa_signal_store_screlease(, 156) = void +3802699241803243:3802699242062845 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699242064835:3802699242065715 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699242066555:3802699242067155 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 157 +3802699242067955:3802699242068525 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 156 +3802699242069285:3802699242070115 1976:1980 hsa_signal_store_screlease(, 157) = void +3802699242071075:3802699243113433 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699243116093:3802699243116923 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699243118603:3802699243119793 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699243120973:3802699243123093 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328b30) = 0 +3802699243124063:3802699243129563 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328af0) = 0 +3802699243130453:3802699243132573 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699244578294:3802699244583224 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699244585324:3802699244586484 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699244587524:3802699244588444 1976:1977 hsa_signal_load_relaxed() = 1 +3802699244589294:3802699244593434 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699244594324:3802699244595044 1976:1977 hsa_signal_destroy() = 0 +3802699243137193:3802699244605414 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699244610214:3802699244611454 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699244616934:3802699244617744 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699244615194:3802699244672964 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699251800777:3802699251801787 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699251847058:3802699252166570 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699252169420:3802699252170330 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699252171870:3802699252172880 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699252174020:3802699252175710 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328b90) = 0 +3802699252176670:3802699252181410 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328b50) = 0 +3802699252182580:3802699252184600 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699253677131:3802699253681861 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699253684161:3802699253685311 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699253686361:3802699253687291 1976:1977 hsa_signal_load_relaxed() = 1 +3802699253688141:3802699253692261 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699253693151:3802699253693871 1976:1977 hsa_signal_destroy() = 0 +3802699252185520:3802699253718872 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699253727602:3802699253728582 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699253735922:3802699253736512 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699253738992:3802699253739582 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699253741132:3802699253741722 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699253754292:3802699253754892 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699253756252:3802699253756842 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699253766052:3802699253766652 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699253769562:3802699253770162 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699253726082:3802699253786182 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699253792992:3802699253793722 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 158 +3802699253794632:3802699253795272 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 158 +3802699253796182:3802699253796792 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 158 +3802699253797702:3802699253798652 1976:1980 hsa_signal_store_screlease(, 158) = void +3802699253802602:3802699254062124 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699254064194:3802699254065074 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699254065884:3802699254066494 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 159 +3802699254067274:3802699254067854 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 158 +3802699254068714:3802699254069574 1976:1980 hsa_signal_store_screlease(, 159) = void +3802699254070474:3802699255129012 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699255131672:3802699255132512 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699255134182:3802699255135362 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699255136372:3802699255138492 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328bf0) = 0 +3802699255139482:3802699255144792 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328bb0) = 0 +3802699255145762:3802699255147872 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699256576883:3802699256581453 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699256583903:3802699256585053 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699256586253:3802699256587303 1976:1977 hsa_signal_load_relaxed() = 1 +3802699256588413:3802699256592623 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699256593493:3802699256594213 1976:1977 hsa_signal_destroy() = 0 +3802699255148772:3802699256606593 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699256610753:3802699256611743 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699256617513:3802699256618553 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699256615283:3802699256672464 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699263808106:3802699263809306 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699263854216:3802699264175229 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699264180829:3802699264181719 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699264183069:3802699264184089 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699264184949:3802699264186999 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328c50) = 0 +3802699264187859:3802699264192859 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328c10) = 0 +3802699264193729:3802699264195699 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699265688320:3802699265693260 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699265695450:3802699265696600 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699265697650:3802699265698570 1976:1977 hsa_signal_load_relaxed() = 1 +3802699265699410:3802699265703340 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699265704230:3802699265704950 1976:1977 hsa_signal_destroy() = 0 +3802699264196599:3802699265736570 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699265745390:3802699265746370 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699265762260:3802699265762860 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699265764760:3802699265765360 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699265767030:3802699265767620 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699265769680:3802699265770280 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699265771540:3802699265772130 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699265780161:3802699265780751 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699265785251:3802699265785851 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699265743850:3802699265803761 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699265810701:3802699265811431 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 160 +3802699265812461:3802699265813101 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 160 +3802699265814011:3802699265814611 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 160 +3802699265815521:3802699265816471 1976:1980 hsa_signal_store_screlease(, 160) = void +3802699265820381:3802699266080773 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699266082733:3802699266083623 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699266084453:3802699266085063 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 161 +3802699266085843:3802699266086433 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 160 +3802699266090303:3802699266091133 1976:1980 hsa_signal_store_screlease(, 161) = void +3802699266092053:3802699267119651 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699267122331:3802699267123151 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699267124841:3802699267126021 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699267127031:3802699267129151 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328cb0) = 0 +3802699267130111:3802699267135521 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328c70) = 0 +3802699267136411:3802699267138541 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699268576831:3802699268581781 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699268584201:3802699268585361 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699268586411:3802699268587331 1976:1977 hsa_signal_load_relaxed() = 1 +3802699268588171:3802699268592361 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699268593251:3802699268593961 1976:1977 hsa_signal_destroy() = 0 +3802699267139421:3802699268605122 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699268609862:3802699268610892 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699268616802:3802699268617792 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699268614642:3802699268671962 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699275801565:3802699275802605 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699275852335:3802699276171348 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699276174208:3802699276175118 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699276176838:3802699276177848 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699276178988:3802699276180658 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328d10) = 0 +3802699276181598:3802699276186678 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328cd0) = 0 +3802699276187838:3802699276189858 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699277682389:3802699277687129 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699277689399:3802699277690549 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699277691599:3802699277692519 1976:1977 hsa_signal_load_relaxed() = 1 +3802699277693359:3802699277697499 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699277698379:3802699277699109 1976:1977 hsa_signal_destroy() = 0 +3802699276190758:3802699277724379 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699277733099:3802699277734269 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699277741400:3802699277741990 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699277744220:3802699277744810 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699277746360:3802699277746950 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699277756640:3802699277757240 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699277758570:3802699277759160 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699277766810:3802699277767410 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699277770080:3802699277770680 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699277731749:3802699277791600 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699277798420:3802699277799140 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 162 +3802699277800350:3802699277800990 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 162 +3802699277802110:3802699277802710 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 162 +3802699277803660:3802699277804610 1976:1980 hsa_signal_store_screlease(, 162) = void +3802699277808880:3802699278068392 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699278070372:3802699278071242 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699278072082:3802699278072682 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 163 +3802699278073472:3802699278074112 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 162 +3802699278074902:3802699278075802 1976:1980 hsa_signal_store_screlease(, 163) = void +3802699278076682:3802699279127680 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699279130370:3802699279131200 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699279132870:3802699279134050 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699279135060:3802699279137200 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328d70) = 0 +3802699279138190:3802699279143430 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328d30) = 0 +3802699279144300:3802699279146430 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699280579531:3802699280584121 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699280586371:3802699280587521 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699280588571:3802699280589591 1976:1977 hsa_signal_load_relaxed() = 1 +3802699280590441:3802699280594631 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699280598961:3802699280599711 1976:1977 hsa_signal_destroy() = 0 +3802699279147320:3802699280602971 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699280607091:3802699280608091 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699280613491:3802699280614481 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699280611291:3802699280667911 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699287804974:3802699287806174 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699287850905:3802699288167877 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699288170457:3802699288171337 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699288172807:3802699288173817 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699288174977:3802699288176827 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328dd0) = 0 +3802699288177967:3802699288182807 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328d90) = 0 +3802699288183867:3802699288185867 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699289677818:3802699289682548 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699289684758:3802699289685908 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699289686968:3802699289687898 1976:1977 hsa_signal_load_relaxed() = 1 +3802699289688738:3802699289692848 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699289693768:3802699289694478 1976:1977 hsa_signal_destroy() = 0 +3802699288186767:3802699289719508 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699289727968:3802699289729128 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699289743968:3802699289744738 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699289747338:3802699289747938 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699289749478:3802699289750068 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699289752109:3802699289752699 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699289754159:3802699289754749 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699289762819:3802699289763419 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699289766659:3802699289767259 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699289726928:3802699289788119 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699289794759:3802699289795479 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 164 +3802699289799779:3802699289800439 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 164 +3802699289801359:3802699289801969 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 164 +3802699289802969:3802699289803929 1976:1980 hsa_signal_store_screlease(, 164) = void +3802699289808029:3802699290069221 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699290071211:3802699290072051 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699290072881:3802699290073491 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 165 +3802699290074291:3802699290074861 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 164 +3802699290075621:3802699290076491 1976:1980 hsa_signal_store_screlease(, 165) = void +3802699290077391:3802699291122608 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699291125288:3802699291126118 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699291127788:3802699291128958 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699291129978:3802699291132118 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328e30) = 0 +3802699291133139:3802699291138379 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328df0) = 0 +3802699291139249:3802699291141369 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699292576989:3802699292581699 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699292584149:3802699292585299 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699292586339:3802699292587279 1976:1977 hsa_signal_load_relaxed() = 1 +3802699292588289:3802699292592569 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699292593449:3802699292594169 1976:1977 hsa_signal_destroy() = 0 +3802699291142269:3802699292609549 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699292614369:3802699292615409 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699292622919:3802699292623529 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699292618929:3802699292676560 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699299870243:3802699299871293 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699299916944:3802699300234806 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699300237626:3802699300238526 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699300240156:3802699300241166 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699300242316:3802699300243986 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328e90) = 0 +3802699300244926:3802699300249786 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328e50) = 0 +3802699300253846:3802699300255896 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699301748717:3802699301753427 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699301755657:3802699301756807 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699301757857:3802699301758777 1976:1977 hsa_signal_load_relaxed() = 1 +3802699301759627:3802699301763707 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699301764597:3802699301765307 1976:1977 hsa_signal_destroy() = 0 +3802699300256836:3802699301796798 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699301805448:3802699301806428 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699301814488:3802699301815088 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699301817538:3802699301818138 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699301819678:3802699301820268 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699301831048:3802699301831648 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699301833128:3802699301833718 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699301842348:3802699301842938 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699301847458:3802699301848058 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699301803988:3802699301864338 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699301870948:3802699301871678 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 166 +3802699301872908:3802699301873638 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 166 +3802699301874738:3802699301875338 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 166 +3802699301876298:3802699301877248 1976:1980 hsa_signal_store_screlease(, 166) = void +3802699301881368:3802699302142380 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699302144400:3802699302145280 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699302146110:3802699302146720 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 167 +3802699302147500:3802699302148080 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 166 +3802699302148840:3802699302149710 1976:1980 hsa_signal_store_screlease(, 167) = void +3802699302150600:3802699303190498 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699303193188:3802699303194018 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699303195698:3802699303196878 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699303201918:3802699303204228 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328ef0) = 0 +3802699303205318:3802699303210628 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328eb0) = 0 +3802699303211528:3802699303213668 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699304612589:3802699304617199 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699304619579:3802699304620759 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699304621809:3802699304622739 1976:1977 hsa_signal_load_relaxed() = 1 +3802699304623579:3802699304627949 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699304628819:3802699304629539 1976:1977 hsa_signal_destroy() = 0 +3802699303214558:3802699304636199 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699304640319:3802699304641339 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699304647029:3802699304648019 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699304644539:3802699304701469 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699311826752:3802699311827632 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699311877643:3802699312194005 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699312196685:3802699312197585 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699312198975:3802699312199985 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699312201145:3802699312203015 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328f50) = 0 +3802699312204175:3802699312208895 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328f10) = 0 +3802699312209975:3802699312211965 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699313704466:3802699313709386 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699313711626:3802699313712776 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699313713826:3802699313714746 1976:1977 hsa_signal_load_relaxed() = 1 +3802699313715586:3802699313719516 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699313720396:3802699313721126 1976:1977 hsa_signal_destroy() = 0 +3802699312212905:3802699313746197 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699313754987:3802699313756027 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699313770157:3802699313770957 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699313773647:3802699313774237 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699313775797:3802699313776397 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699313780097:3802699313780687 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699313781807:3802699313782407 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699313789627:3802699313790227 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699313793007:3802699313793597 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699313753577:3802699313813717 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699313820397:3802699313821127 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 168 +3802699313822047:3802699313822687 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 168 +3802699313823587:3802699313824197 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 168 +3802699313825107:3802699313826057 1976:1980 hsa_signal_store_screlease(, 168) = void +3802699313830127:3802699314084109 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699314086079:3802699314086969 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699314087789:3802699314088389 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 169 +3802699314089189:3802699314089749 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 168 +3802699314090509:3802699314091339 1976:1980 hsa_signal_store_screlease(, 169) = void +3802699314092219:3802699315136287 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699315138937:3802699315139767 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699315141537:3802699315142717 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699315143727:3802699315145847 1976:1980 hsa_signal_create(1, , 0, 0x7f5376328fb0) = 0 +3802699315146817:3802699315152207 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328f70) = 0 +3802699315153087:3802699315155177 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699316581548:3802699316586628 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699316589108:3802699316590268 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699316591398:3802699316592338 1976:1977 hsa_signal_load_relaxed() = 1 +3802699316593188:3802699316597398 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699316598278:3802699316598988 1976:1977 hsa_signal_destroy() = 0 +3802699315156067:3802699316605908 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699316609658:3802699316610558 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699316617878:3802699316618488 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699316613858:3802699316670688 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699323794380:3802699323795580 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699323840181:3802699324151773 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699324154613:3802699324155513 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699324160243:3802699324161273 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699324162453:3802699324164213 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329010) = 0 +3802699324165223:3802699324169993 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376328fd0) = 0 +3802699324171143:3802699324173133 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699325665654:3802699325670584 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699325672684:3802699325673834 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699325674894:3802699325675824 1976:1977 hsa_signal_load_relaxed() = 1 +3802699325676854:3802699325680775 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699325681655:3802699325682365 1976:1977 hsa_signal_destroy() = 0 +3802699324174073:3802699325707535 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699325716275:3802699325717255 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699325732365:3802699325733135 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699325735885:3802699325736475 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699325738135:3802699325738725 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699325740565:3802699325741155 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699325742605:3802699325743205 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699325755985:3802699325756585 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699325759625:3802699325760215 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699325714735:3802699325775845 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699325782625:3802699325783355 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 170 +3802699325784565:3802699325785205 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 170 +3802699325786335:3802699325786935 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 170 +3802699325787905:3802699325788855 1976:1980 hsa_signal_store_screlease(, 170) = void +3802699325792875:3802699326051197 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699326053177:3802699326054047 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699326058027:3802699326058647 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 171 +3802699326059437:3802699326060047 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 170 +3802699326060807:3802699326061647 1976:1980 hsa_signal_store_screlease(, 171) = void +3802699326062537:3802699327087145 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699327089835:3802699327090665 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699327092515:3802699327093685 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699327094705:3802699327096845 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329070) = 0 +3802699327097815:3802699327103205 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329030) = 0 +3802699327104095:3802699327106205 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699328607586:3802699328612306 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699328614696:3802699328615856 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699328617086:3802699328618006 1976:1977 hsa_signal_load_relaxed() = 1 +3802699328619036:3802699328623216 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699328624096:3802699328624816 1976:1977 hsa_signal_destroy() = 0 +3802699327107105:3802699328634206 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699328639217:3802699328640337 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699328645947:3802699328646937 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699328643777:3802699328701537 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699335824120:3802699335825430 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699335870340:3802699336185603 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699336188263:3802699336189173 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699336190723:3802699336191733 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699336192903:3802699336194693 1976:1980 hsa_signal_create(1, , 0, 0x7f53763290d0) = 0 +3802699336195843:3802699336200883 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329090) = 0 +3802699336201973:3802699336203943 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699337696854:3802699337701784 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699337704094:3802699337705274 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699337706504:3802699337707424 1976:1977 hsa_signal_load_relaxed() = 1 +3802699337711914:3802699337716074 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699337716984:3802699337717694 1976:1977 hsa_signal_destroy() = 0 +3802699336204833:3802699337742904 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699337751814:3802699337752794 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699337767514:3802699337768294 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699337771094:3802699337771694 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699337773364:3802699337773954 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699337776004:3802699337776604 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699337777984:3802699337778584 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699337786375:3802699337786965 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699337789555:3802699337790155 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699337750294:3802699337811585 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699337818785:3802699337819505 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 172 +3802699337820525:3802699337821165 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 172 +3802699337822055:3802699337822655 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 172 +3802699337823555:3802699337824515 1976:1980 hsa_signal_store_screlease(, 172) = void +3802699337828595:3802699338089527 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699338091597:3802699338092477 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699338093307:3802699338093907 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 173 +3802699338094717:3802699338095287 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 172 +3802699338096047:3802699338096877 1976:1980 hsa_signal_store_screlease(, 173) = void +3802699338097777:3802699339124645 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699339127305:3802699339128135 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699339129805:3802699339130975 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699339131985:3802699339134105 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329130) = 0 +3802699339135065:3802699339140375 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763290f0) = 0 +3802699339141245:3802699339143305 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699340578335:3802699340583275 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699340589745:3802699340590905 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699340591965:3802699340592995 1976:1977 hsa_signal_load_relaxed() = 1 +3802699340593845:3802699340598065 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699340598945:3802699340599665 1976:1977 hsa_signal_destroy() = 0 +3802699339144205:3802699340612836 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699340616946:3802699340618136 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699340625596:3802699340626206 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699340621626:3802699340679086 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699347801589:3802699347802699 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699347847979:3802699348171572 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699348174452:3802699348175362 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699348176962:3802699348177972 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699348179122:3802699348180792 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329190) = 0 +3802699348181742:3802699348186372 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329150) = 0 +3802699348187532:3802699348189632 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699349682103:3802699349687043 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699349689323:3802699349690473 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699349691523:3802699349692443 1976:1977 hsa_signal_load_relaxed() = 1 +3802699349693293:3802699349697223 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699349698103:3802699349698833 1976:1977 hsa_signal_destroy() = 0 +3802699348190552:3802699349730333 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699349738443:3802699349739603 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699349747263:3802699349747863 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699349750113:3802699349750703 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699349752073:3802699349752663 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699349754473:3802699349755063 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699349756723:3802699349757493 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699349773393:3802699349773993 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699349777223:3802699349777823 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699349738853:3802699349799724 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699349806294:3802699349807024 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 174 +3802699349807944:3802699349808584 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 174 +3802699349809494:3802699349810094 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 174 +3802699349811004:3802699349811944 1976:1980 hsa_signal_store_screlease(, 174) = void +3802699349816194:3802699350077476 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699350079546:3802699350080396 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699350081216:3802699350081816 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 175 +3802699350082606:3802699350083226 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 174 +3802699350084086:3802699350084946 1976:1980 hsa_signal_store_screlease(, 175) = void +3802699350085836:3802699351143093 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699351145753:3802699351146583 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699351148263:3802699351149443 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699351150443:3802699351152623 1976:1980 hsa_signal_create(1, , 0, 0x7f53763291f0) = 0 +3802699351153593:3802699351158863 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763291b0) = 0 +3802699351159733:3802699351161853 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699352583584:3802699352588174 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699352590604:3802699352591764 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699352593114:3802699352594044 1976:1977 hsa_signal_load_relaxed() = 1 +3802699352594894:3802699352599244 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699352600124:3802699352600844 1976:1977 hsa_signal_destroy() = 0 +3802699351162763:3802699352607444 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699352611564:3802699352612564 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699352618124:3802699352619134 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699352615894:3802699352672454 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699359800768:3802699359801908 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699359851918:3802699360169640 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699360172350:3802699360173240 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699360177930:3802699360178960 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699360179840:3802699360181720 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329250) = 0 +3802699360182560:3802699360187270 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329210) = 0 +3802699360188140:3802699360190100 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699361682121:3802699361687082 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699361689292:3802699361690442 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699361691492:3802699361692412 1976:1977 hsa_signal_load_relaxed() = 1 +3802699361693262:3802699361697342 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699361698242:3802699361698962 1976:1977 hsa_signal_destroy() = 0 +3802699360191010:3802699361724022 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699361732122:3802699361733292 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699361741052:3802699361741652 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699361751362:3802699361751962 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699361753482:3802699361754072 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699361756102:3802699361756692 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699361758072:3802699361758672 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699361766452:3802699361767052 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699361770242:3802699361770832 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699361732572:3802699361792942 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699361799582:3802699361800312 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 176 +3802699361801252:3802699361801892 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 176 +3802699361802792:3802699361803392 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 176 +3802699361804302:3802699361805292 1976:1980 hsa_signal_store_screlease(, 176) = void +3802699361809562:3802699362067954 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699362069934:3802699362070784 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699362071604:3802699362072204 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 177 +3802699362073004:3802699362073574 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 176 +3802699362074324:3802699362075174 1976:1980 hsa_signal_store_screlease(, 177) = void +3802699362076064:3802699363135242 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699363142392:3802699363143252 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699363145082:3802699363146312 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699363147382:3802699363149492 1976:1980 hsa_signal_create(1, , 0, 0x7f53763292b0) = 0 +3802699363150332:3802699363155352 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329270) = 0 +3802699363156232:3802699363158372 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699364580553:3802699364585633 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699364587853:3802699364589003 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699364590043:3802699364590973 1976:1977 hsa_signal_load_relaxed() = 1 +3802699364591823:3802699364596013 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699364596903:3802699364597623 1976:1977 hsa_signal_destroy() = 0 +3802699363159262:3802699364604793 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699364608583:3802699364609523 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699364617143:3802699364617753 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699364613013:3802699364670494 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699371820277:3802699371821317 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699371865567:3802699372176970 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699372179800:3802699372180790 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699372182400:3802699372183420 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699372184560:3802699372186300 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329310) = 0 +3802699372187330:3802699372192330 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763292d0) = 0 +3802699372193480:3802699372195750 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699373688341:3802699373693291 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699373695341:3802699373696491 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699373697541:3802699373698461 1976:1977 hsa_signal_load_relaxed() = 1 +3802699373699301:3802699373703221 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699373704121:3802699373704821 1976:1977 hsa_signal_destroy() = 0 +3802699372196680:3802699373729921 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699373738161:3802699373739161 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699373751501:3802699373752101 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699373754201:3802699373754791 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699373756651:3802699373757821 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699373759441:3802699373760031 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699373761181:3802699373761781 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699373774611:3802699373775211 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699373778331:3802699373778931 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699373738341:3802699373798822 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699373805572:3802699373806322 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 178 +3802699373807242:3802699373807882 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 178 +3802699373808792:3802699373809402 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 178 +3802699373810302:3802699373811252 1976:1980 hsa_signal_store_screlease(, 178) = void +3802699373815222:3802699374072824 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699374074784:3802699374075624 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699374076444:3802699374077044 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 179 +3802699374077854:3802699374078424 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 178 +3802699374079234:3802699374080084 1976:1980 hsa_signal_store_screlease(, 179) = void +3802699374080974:3802699375139482 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699375142162:3802699375142992 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699375144652:3802699375145832 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699375146842:3802699375148962 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329370) = 0 +3802699375149922:3802699375155232 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329330) = 0 +3802699375156122:3802699375158222 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699376579222:3802699376584362 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699376586622:3802699376587782 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699376588912:3802699376589842 1976:1977 hsa_signal_load_relaxed() = 1 +3802699376590692:3802699376595032 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699376595912:3802699376596622 1976:1977 hsa_signal_destroy() = 0 +3802699375159112:3802699376608832 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699376616392:3802699376617422 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699376622523:3802699376623583 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699376620382:3802699376677783 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699383814105:3802699383815155 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699383859886:3802699384170468 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699384173158:3802699384174058 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699384175388:3802699384176408 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699384177568:3802699384179438 1976:1980 hsa_signal_create(1, , 0, 0x7f53763293d0) = 0 +3802699384180578:3802699384185628 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329390) = 0 +3802699384186708:3802699384188698 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699385681239:3802699385686399 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699385688859:3802699385690009 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699385691259:3802699385692179 1976:1977 hsa_signal_load_relaxed() = 1 +3802699385693289:3802699385697219 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699385698169:3802699385698879 1976:1977 hsa_signal_destroy() = 0 +3802699384189628:3802699385730530 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699385739400:3802699385740180 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699385748290:3802699385748890 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699385758390:3802699385758990 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699385760530:3802699385761130 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699385763070:3802699385763660 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699385765090:3802699385765690 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699385773340:3802699385773940 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699385776900:3802699385777500 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699385738860:3802699385798790 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699385805760:3802699385806480 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 180 +3802699385807500:3802699385808140 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 180 +3802699385809040:3802699385809650 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 180 +3802699385814050:3802699385815010 1976:1980 hsa_signal_store_screlease(, 180) = void +3802699385819150:3802699386079532 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699386081462:3802699386082312 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699386083142:3802699386083752 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 181 +3802699386084562:3802699386085132 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 180 +3802699386085992:3802699386086832 1976:1980 hsa_signal_store_screlease(, 181) = void +3802699386087712:3802699387140300 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699387143050:3802699387143880 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699387145530:3802699387146710 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699387147700:3802699387149840 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329430) = 0 +3802699387150830:3802699387156310 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763293f0) = 0 +3802699387157190:3802699387159320 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699388580041:3802699388585131 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699388587711:3802699388588861 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699388589991:3802699388590931 1976:1977 hsa_signal_load_relaxed() = 1 +3802699388591771:3802699388595981 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699388596851:3802699388597571 1976:1977 hsa_signal_destroy() = 0 +3802699387160210:3802699388603981 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699388607811:3802699388609011 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699388616031:3802699388616641 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699388612981:3802699388670041 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699395805115:3802699395806185 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699395856085:3802699396170227 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699396173097:3802699396174017 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699396175617:3802699396176637 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699396177787:3802699396179537 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329490) = 0 +3802699396180487:3802699396185507 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329450) = 0 +3802699396186657:3802699396188647 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699397682088:3802699397687019 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699397692659:3802699397693819 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699397694869:3802699397695789 1976:1977 hsa_signal_load_relaxed() = 1 +3802699397696639:3802699397700749 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699397701619:3802699397702349 1976:1977 hsa_signal_destroy() = 0 +3802699396189577:3802699397727469 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699397737049:3802699397738249 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699397745639:3802699397746239 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699397748509:3802699397749099 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699397750809:3802699397751409 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699397753259:3802699397753849 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699397755639:3802699397756809 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699397775359:3802699397775959 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699397778979:3802699397779579 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699397737579:3802699397798259 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699397805269:3802699397806019 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 182 +3802699397807249:3802699397807889 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 182 +3802699397808999:3802699397809609 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 182 +3802699397810569:3802699397811509 1976:1980 hsa_signal_store_screlease(, 182) = void +3802699397815409:3802699398074441 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699398076421:3802699398077271 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699398078111:3802699398078711 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 183 +3802699398079521:3802699398080121 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 182 +3802699398080881:3802699398081701 1976:1980 hsa_signal_store_screlease(, 183) = void +3802699398082581:3802699399139619 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699399142299:3802699399143129 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699399144819:3802699399145999 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699399147009:3802699399149139 1976:1980 hsa_signal_create(1, , 0, 0x7f53763294f0) = 0 +3802699399150089:3802699399155409 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763294b0) = 0 +3802699399159909:3802699399162059 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699400584190:3802699400588890 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699400591130:3802699400592280 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699400593320:3802699400594250 1976:1977 hsa_signal_load_relaxed() = 1 +3802699400595100:3802699400599490 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699400600360:3802699400601080 1976:1977 hsa_signal_destroy() = 0 +3802699399162969:3802699400608260 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699400612360:3802699400613550 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699400618850:3802699400619840 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699400616620:3802699400675511 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699407931535:3802699407932785 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699407978765:3802699408298967 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699408301637:3802699408302477 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699408303897:3802699408304907 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699408306057:3802699408307907 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329550) = 0 +3802699408309077:3802699408314077 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329510) = 0 +3802699408315148:3802699408317158 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699409825008:3802699409829958 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699409832248:3802699409833408 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699409834448:3802699409835379 1976:1977 hsa_signal_load_relaxed() = 1 +3802699409836239:3802699409840159 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699409841049:3802699409841769 1976:1977 hsa_signal_destroy() = 0 +3802699408318068:3802699409866679 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699409875519:3802699409876549 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699409884439:3802699409885029 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699409895919:3802699409896519 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699409898299:3802699409898899 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699409900989:3802699409901579 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699409904689:3802699409905289 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699409913779:3802699409914379 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699409917739:3802699409918339 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699409874069:3802699409933609 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699409940409:3802699409941129 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 184 +3802699409942069:3802699409942709 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 184 +3802699409943619:3802699409944229 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 184 +3802699409945169:3802699409946119 1976:1980 hsa_signal_store_screlease(, 184) = void +3802699409950029:3802699410208741 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699410210691:3802699410211561 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699410212391:3802699410213011 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 185 +3802699410213811:3802699410214391 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 184 +3802699410215151:3802699410215991 1976:1980 hsa_signal_store_screlease(, 185) = void +3802699410216871:3802699411248079 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699411250759:3802699411251589 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699411253249:3802699411254429 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699411255439:3802699411257569 1976:1980 hsa_signal_create(1, , 0, 0x7f53763295b0) = 0 +3802699411258569:3802699411264049 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329570) = 0 +3802699411264939:3802699411267229 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699412666799:3802699412671779 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699412674269:3802699412675439 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699412676479:3802699412677399 1976:1977 hsa_signal_load_relaxed() = 1 +3802699412678249:3802699412682199 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699412683069:3802699412683779 1976:1977 hsa_signal_destroy() = 0 +3802699411268139:3802699412708469 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699412713789:3802699412715039 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699412720670:3802699412721680 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699412719030:3802699412775870 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699420027164:3802699420028254 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699420062624:3802699420371056 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699420373886:3802699420374756 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699420376126:3802699420377146 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699420378006:3802699420379677 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329610) = 0 +3802699420380537:3802699420385697 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763295d0) = 0 +3802699420386567:3802699420388547 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699421894918:3802699421899948 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699421902428:3802699421903578 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699421904618:3802699421905548 1976:1977 hsa_signal_load_relaxed() = 1 +3802699421906638:3802699421910728 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699421911628:3802699421912348 1976:1977 hsa_signal_destroy() = 0 +3802699420389467:3802699421943758 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699421954208:3802699421954818 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699421962188:3802699421962788 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699421965198:3802699421965788 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699421967508:3802699421968268 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699421970668:3802699421971258 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699421972538:3802699421973138 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699421950768:3802699422010189 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699422040289:3802699422040899 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699422044509:3802699422045109 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699422048659:3802699422049569 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 186 +3802699422051079:3802699422051729 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 186 +3802699422052879:3802699422053479 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 186 +3802699422054449:3802699422055409 1976:1980 hsa_signal_store_screlease(, 186) = void +3802699422060299:3802699422322371 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699422324411:3802699422325291 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699422326121:3802699422326671 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 187 +3802699422330681:3802699422331271 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 186 +3802699422332071:3802699422332921 1976:1980 hsa_signal_store_screlease(, 187) = void +3802699422333801:3802699423369629 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699423372299:3802699423373129 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699423374809:3802699423375979 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699423376999:3802699423379159 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329670) = 0 +3802699423380119:3802699423385529 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329630) = 0 +3802699423386399:3802699423388529 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699424795799:3802699424800369 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699424802799:3802699424803949 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699424804989:3802699424805909 1976:1977 hsa_signal_load_relaxed() = 1 +3802699424806759:3802699424810869 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699424811739:3802699424812459 1976:1977 hsa_signal_destroy() = 0 +3802699423389439:3802699424838120 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699424843650:3802699424845090 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699424852310:3802699424853300 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699424850150:3802699424907610 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699432142374:3802699432143474 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699432171994:3802699432479617 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699432482347:3802699432483157 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699432484567:3802699432485577 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699432486707:3802699432488497 1976:1980 hsa_signal_create(1, , 0, 0x7f53763296d0) = 0 +3802699432489657:3802699432494947 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329690) = 0 +3802699432496027:3802699432497977 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699434124979:3802699434129919 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699434132209:3802699434133369 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699434134599:3802699434135519 1976:1977 hsa_signal_load_relaxed() = 1 +3802699434136369:3802699434140479 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699434141369:3802699434142079 1976:1977 hsa_signal_destroy() = 0 +3802699432498877:3802699434167299 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699434175999:3802699434176999 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699434185799:3802699434186389 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699434196539:3802699434197139 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699434198899:3802699434199499 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699434201469:3802699434202059 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699434203359:3802699434203949 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699434211679:3802699434212269 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699434215129:3802699434215729 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699434174509:3802699434235490 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699434242400:3802699434243130 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 188 +3802699434244150:3802699434244790 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 188 +3802699434245890:3802699434246490 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 188 +3802699434247430:3802699434248380 1976:1980 hsa_signal_store_screlease(, 188) = void +3802699434252460:3802699434512482 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699434514452:3802699434515352 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699434516172:3802699434516782 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 189 +3802699434517592:3802699434518162 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 188 +3802699434518912:3802699434519732 1976:1980 hsa_signal_store_screlease(, 189) = void +3802699434520642:3802699435563329 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699435565999:3802699435566839 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699435568489:3802699435569669 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699435570680:3802699435572790 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329730) = 0 +3802699435573750:3802699435579280 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763296f0) = 0 +3802699435580150:3802699435582250 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699436847409:3802699436852149 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699436854429:3802699436855629 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699436856669:3802699436857589 1976:1977 hsa_signal_load_relaxed() = 1 +3802699436861909:3802699436865939 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699436866869:3802699436867579 1976:1977 hsa_signal_destroy() = 0 +3802699435583130:3802699436893159 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699436898619:3802699436900059 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699436907129:3802699436908119 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699436904949:3802699436962150 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699444197703:3802699444198783 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699444227153:3802699444536475 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699444539295:3802699444540165 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699444541815:3802699444542825 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699444543985:3802699444545655 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329790) = 0 +3802699444546595:3802699444551485 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329750) = 0 +3802699444552656:3802699444554586 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699446125017:3802699446129737 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699446132037:3802699446133187 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699446134237:3802699446135157 1976:1977 hsa_signal_load_relaxed() = 1 +3802699446135997:3802699446140087 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699446140987:3802699446141707 1976:1977 hsa_signal_destroy() = 0 +3802699444555506:3802699446166828 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699446182708:3802699446183318 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699446191898:3802699446193048 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699446195198:3802699446195798 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699446197318:3802699446197918 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699446199738:3802699446200328 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699446201698:3802699446202288 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699446210368:3802699446210968 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699446215618:3802699446216218 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699446173828:3802699446233988 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699446241108:3802699446241828 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 190 +3802699446246168:3802699446246828 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 190 +3802699446247748:3802699446248348 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 190 +3802699446249278:3802699446250228 1976:1980 hsa_signal_store_screlease(, 190) = void +3802699446254318:3802699446514480 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699446516460:3802699446517350 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699446518190:3802699446518800 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 191 +3802699446519590:3802699446520160 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 190 +3802699446520930:3802699446521760 1976:1980 hsa_signal_store_screlease(, 191) = void +3802699446522670:3802699447546138 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699447548798:3802699447549628 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699447551308:3802699447552488 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699447553498:3802699447555618 1976:1980 hsa_signal_create(1, , 0, 0x7f53763297f0) = 0 +3802699447556578:3802699447562038 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763297b0) = 0 +3802699447562928:3802699447565048 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699448830417:3802699448835097 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699448837437:3802699448838597 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699448839637:3802699448840557 1976:1977 hsa_signal_load_relaxed() = 1 +3802699448841407:3802699448845357 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699448846247:3802699448846967 1976:1977 hsa_signal_destroy() = 0 +3802699447565958:3802699448872608 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699448878078:3802699448879278 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699448886338:3802699448887148 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699448884558:3802699448943318 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699456162422:3802699456163632 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699456190972:3802699456500094 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699456502794:3802699456503684 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699456505084:3802699456506094 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699456507234:3802699456509014 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329850) = 0 +3802699456513174:3802699456518225 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329810) = 0 +3802699456519115:3802699456521085 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699458125856:3802699458130797 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699458133017:3802699458134167 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699458135217:3802699458136137 1976:1977 hsa_signal_load_relaxed() = 1 +3802699458136987:3802699458140997 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699458141887:3802699458142597 1976:1977 hsa_signal_destroy() = 0 +3802699456522005:3802699458167927 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699458176597:3802699458177627 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699458186667:3802699458187267 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699458196957:3802699458197547 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699458199167:3802699458199757 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699458201807:3802699458202397 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699458204057:3802699458204657 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699458212427:3802699458213017 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699458216227:3802699458216827 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699458175337:3802699458237137 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699458243977:3802699458244707 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 192 +3802699458245717:3802699458246357 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 192 +3802699458247267:3802699458247867 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 192 +3802699458248797:3802699458249737 1976:1980 hsa_signal_store_screlease(, 192) = void +3802699458253637:3802699458514299 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699458516289:3802699458517139 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699458517989:3802699458518549 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 193 +3802699458519359:3802699458519919 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 192 +3802699458520669:3802699458521509 1976:1980 hsa_signal_store_screlease(, 193) = void +3802699458522379:3802699459557007 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699459559707:3802699459560547 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699459562207:3802699459563387 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699459568817:3802699459571097 1976:1980 hsa_signal_create(1, , 0, 0x7f53763298b0) = 0 +3802699459572167:3802699459577147 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329870) = 0 +3802699459578027:3802699459580117 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699460844947:3802699460849677 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699460851897:3802699460853047 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699460854107:3802699460855037 1976:1977 hsa_signal_load_relaxed() = 1 +3802699460855877:3802699460859877 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699460860747:3802699460861467 1976:1977 hsa_signal_destroy() = 0 +3802699459581017:3802699460885937 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699460891217:3802699460892377 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699460899047:3802699460900147 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699460897457:3802699460956028 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699468177711:3802699468178851 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699468207841:3802699468516784 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699468519644:3802699468520594 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699468522234:3802699468523244 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699468524414:3802699468526074 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329910) = 0 +3802699468527034:3802699468532004 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763298d0) = 0 +3802699468533164:3802699468535144 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699470125235:3802699470130175 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699470132215:3802699470133365 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699470134425:3802699470135335 1976:1977 hsa_signal_load_relaxed() = 1 +3802699470136185:3802699470140085 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699470140975:3802699470141675 1976:1977 hsa_signal_destroy() = 0 +3802699468536054:3802699470173356 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699470189456:3802699470190066 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699470199006:3802699470200276 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699470202446:3802699470203036 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699470206466:3802699470207066 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699470208926:3802699470209526 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699470210836:3802699470211426 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699470219616:3802699470220206 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699470224986:3802699470225586 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699470180506:3802699470241276 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699470247996:3802699470248716 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 194 +3802699470249656:3802699470250296 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 194 +3802699470251206:3802699470251806 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 194 +3802699470252716:3802699470253656 1976:1980 hsa_signal_store_screlease(, 194) = void +3802699470257706:3802699470517058 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699470519078:3802699470519958 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699470520788:3802699470521388 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 195 +3802699470522168:3802699470522738 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 194 +3802699470523508:3802699470524358 1976:1980 hsa_signal_store_screlease(, 195) = void +3802699470525238:3802699471571286 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699471573966:3802699471574796 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699471576446:3802699471577616 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699471578626:3802699471580806 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329970) = 0 +3802699471581766:3802699471587276 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329930) = 0 +3802699471588166:3802699471590486 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699472855905:3802699472860825 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699472863135:3802699472864285 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699472865335:3802699472866255 1976:1977 hsa_signal_load_relaxed() = 1 +3802699472867105:3802699472871085 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699472871975:3802699472872685 1976:1977 hsa_signal_destroy() = 0 +3802699471591376:3802699472898326 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699472903876:3802699472905226 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699472916266:3802699472917256 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699472914106:3802699472971846 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699480185540:3802699480186910 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699480214600:3802699480522932 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699480525612:3802699480526492 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699480527882:3802699480528882 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699480530022:3802699480531812 1976:1980 hsa_signal_create(1, , 0, 0x7f53763299d0) = 0 +3802699480532932:3802699480537842 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329990) = 0 +3802699480538922:3802699480540862 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699482126404:3802699482131324 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699482133704:3802699482134854 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699482136074:3802699482137014 1976:1977 hsa_signal_load_relaxed() = 1 +3802699482138144:3802699482142224 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699482143194:3802699482143914 1976:1977 hsa_signal_destroy() = 0 +3802699480541772:3802699482169005 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699482177185:3802699482178205 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699482187415:3802699482188005 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699482189925:3802699482190515 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699482192065:3802699482192655 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699482205935:3802699482206535 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699482208355:3802699482208945 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699482217515:3802699482218115 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699482222075:3802699482222665 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699482176225:3802699482236535 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699482243305:3802699482244035 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 196 +3802699482245075:3802699482245725 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 196 +3802699482246815:3802699482247425 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 196 +3802699482248345:3802699482249285 1976:1980 hsa_signal_store_screlease(, 196) = void +3802699482253415:3802699482512897 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699482518027:3802699482518877 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699482519717:3802699482520327 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 197 +3802699482521137:3802699482521707 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 196 +3802699482522477:3802699482523337 1976:1980 hsa_signal_store_screlease(, 197) = void +3802699482524227:3802699483561215 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699483563895:3802699483564725 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699483566495:3802699483567675 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699483568685:3802699483570805 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329a30) = 0 +3802699483571765:3802699483577255 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f53763299f0) = 0 +3802699483578115:3802699483580235 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699484845634:3802699484850354 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699484852814:3802699484853964 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699484855004:3802699484855934 1976:1977 hsa_signal_load_relaxed() = 1 +3802699484856775:3802699484860785 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699484861655:3802699484862365 1976:1977 hsa_signal_destroy() = 0 +3802699483581125:3802699484887995 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699484893315:3802699484894755 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699484902035:3802699484903075 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699484899755:3802699484957345 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699492184229:3802699492185189 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699492213819:3802699492525312 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52745ff000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699492528132:3802699492528952 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699492530572:3802699492531582 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699492532762:3802699492534442 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329a90) = 0 +3802699492535392:3802699492540612 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329a50) = 0 +3802699492541762:3802699492543712 1976:1980 hsa_amd_memory_async_copy(0x7f51e6400000, , 0x7f51e4200010, , , , 0, ) = 0 +3802699494125593:3802699494130513 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699494132834:3802699494134014 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699494139034:3802699494140054 1976:1977 hsa_signal_load_relaxed() = 1 +3802699494140904:3802699494145004 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699494145894:3802699494146634 1976:1977 hsa_signal_destroy() = 0 +3802699492544622:3802699494171964 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699494186774:3802699494187384 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699494195744:3802699494196524 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699494199414:3802699494200004 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c20) = 0 +3802699494201704:3802699494202294 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699494204354:3802699494204944 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c00) = 0 +3802699494206214:3802699494206804 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699494214974:3802699494215564 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c10) = 0 +3802699494220074:3802699494220664 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699494179184:3802699494239354 1976:1980 hsa_amd_memory_unlock(0x7f52745ff000) = 0 +3802699494246334:3802699494247084 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 198 +3802699494248294:3802699494248964 1976:1980 hsa_queue_load_read_index_relaxed(0x7f5384da6000) = 198 +3802699494249874:3802699494250474 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 198 +3802699494251384:3802699494252334 1976:1980 hsa_signal_store_screlease(, 198) = void +3802699494256314:3802699494516066 1976:1980 hsa_amd_memory_lock_to_pool(0x7f52741fe000, , 0, 0, , , 0x7f51e01672b8) = 0 +3802699494518136:3802699494519036 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699494519866:3802699494520486 1976:1980 hsa_queue_add_write_index_screlease(0x7f5384da6000, ) = 199 +3802699494521276:3802699494521846 1976:1980 hsa_queue_load_read_index_scacquire(0x7f5384da6000) = 198 +3802699494522596:3802699494523436 1976:1980 hsa_signal_store_screlease(, 199) = void +3802699494524316:3802699495556404 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699495559064:3802699495559894 1976:1980 hsa_signal_store_relaxed(, 1) = void +3802699495561684:3802699495562874 1976:1980 hsa_system_get_info(2, 0x7f5384c97650) = 0 +3802699495563884:3802699495566004 1976:1980 hsa_signal_create(1, , 0, 0x7f5376329af0) = 0 +3802699495566984:3802699495572474 1976:1980 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f5376329ab0) = 0 +3802699495573354:3802699495575484 1976:1980 hsa_amd_memory_async_copy(0x7f51e4200010, , 0x7f51e5e00000, , , , 0, ) = 0 +3802699496841024:3802699496845954 1976:1977 hsa_amd_profiling_get_async_copy_time(, 0x7f5376323a60) = 0 +3802699496851604:3802699496852764 1976:1977 hsa_system_get_info(2, 0x7f5376323a58) = 0 +3802699496853844:3802699496854774 1976:1977 hsa_signal_load_relaxed() = 1 +3802699496855614:3802699496859784 1976:1977 hsa_signal_store_screlease(, 0) = void +3802699496860674:3802699496861384 1976:1977 hsa_signal_destroy() = 0 +3802699495576384:3802699496893494 1976:1980 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802699496899184:3802699496900294 1976:1980 hsa_amd_profiling_get_dispatch_time(, , 0x7f5384c97b30) = 0 +3802699496906804:3802699496907794 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699496904524:3802699496962665 1976:1980 hsa_amd_memory_unlock(0x7f52741fe000) = 0 +3802699504180137:3802699504181567 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699504197838:3802699504271628 1976:1976 hsa_amd_memory_pool_free(0x7f51e6400000) = 0 +3802699504275528:3802699504276058 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699504286938:3802699504287458 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802699504289348:3802699504306118 1976:1976 hsa_amd_memory_pool_free(0x7f51e5e00000) = 0 +3802699504307778:3802699504308298 1976:1976 hsa_system_get_info(2, 0x7fff4ce03c40) = 0 +3802698295957774 1976:1976 0:"before hipLaunchKernel" +3802698295968784 1976:1976 1:"hipLaunchKernel" +3802698296603369 1976:1976 0:"after hipLaunchKernel" +3802698296604059 1976:1976 1:"hipMemcpy" +3802698299913553 1976:1976 2:"" +3802698299914183 1976:1976 2:"" +3802698309839087 1976:1976 0:"before hipLaunchKernel" +3802698309840637 1976:1976 1:"hipLaunchKernel" +3802698309867077 1976:1976 0:"after hipLaunchKernel" +3802698309867867 1976:1976 1:"hipMemcpy" +3802698312829389 1976:1976 2:"" +3802698312829859 1976:1976 2:"" +3802698322149558 1976:1976 0:"before hipLaunchKernel" +3802698322150888 1976:1976 1:"hipLaunchKernel" +3802698322170628 1976:1976 0:"after hipLaunchKernel" +3802698322171188 1976:1976 1:"hipMemcpy" +3802698324997109 1976:1976 2:"" +3802698324997579 1976:1976 2:"" +3802698334536360 1976:1976 0:"before hipLaunchKernel" +3802698334537960 1976:1976 1:"hipLaunchKernel" +3802698334565450 1976:1976 0:"after hipLaunchKernel" +3802698334566090 1976:1976 1:"hipMemcpy" +3802698337583582 1976:1976 2:"" +3802698337584062 1976:1976 2:"" +3802698346849791 1976:1976 0:"before hipLaunchKernel" +3802698346851471 1976:1976 1:"hipLaunchKernel" +3802698346876891 1976:1976 0:"after hipLaunchKernel" +3802698346877441 1976:1976 1:"hipMemcpy" +3802698349817793 1976:1976 2:"" +3802698349818323 1976:1976 2:"" +3802698358951811 1976:1976 0:"before hipLaunchKernel" +3802698358953221 1976:1976 1:"hipLaunchKernel" +3802698358977411 1976:1976 0:"after hipLaunchKernel" +3802698358977931 1976:1976 1:"hipMemcpy" +3802698361842352 1976:1976 2:"" +3802698361842972 1976:1976 2:"" +3802698370984030 1976:1976 0:"before hipLaunchKernel" +3802698370985370 1976:1976 1:"hipLaunchKernel" +3802698371010560 1976:1976 0:"after hipLaunchKernel" +3802698371011080 1976:1976 1:"hipMemcpy" +3802698373839381 1976:1976 2:"" +3802698373840081 1976:1976 2:"" +3802698382999689 1976:1976 0:"before hipLaunchKernel" +3802698383001159 1976:1976 1:"hipLaunchKernel" +3802698383021039 1976:1976 0:"after hipLaunchKernel" +3802698383021649 1976:1976 1:"hipMemcpy" +3802698385839350 1976:1976 2:"" +3802698385839970 1976:1976 2:"" +3802698395136369 1976:1976 0:"before hipLaunchKernel" +3802698395138139 1976:1976 1:"hipLaunchKernel" +3802698395159429 1976:1976 0:"after hipLaunchKernel" +3802698395159969 1976:1976 1:"hipMemcpy" +3802698397934999 1976:1976 2:"" +3802698397935519 1976:1976 2:"" +3802698407066857 1976:1976 0:"before hipLaunchKernel" +3802698407068317 1976:1976 1:"hipLaunchKernel" +3802698407089567 1976:1976 0:"after hipLaunchKernel" +3802698407090117 1976:1976 1:"hipMemcpy" +3802698409930089 1976:1976 2:"" +3802698409930649 1976:1976 2:"" +3802698419047446 1976:1976 0:"before hipLaunchKernel" +3802698419048926 1976:1976 1:"hipLaunchKernel" +3802698419071767 1976:1976 0:"after hipLaunchKernel" +3802698419072297 1976:1976 1:"hipMemcpy" +3802698421931137 1976:1976 2:"" +3802698421931697 1976:1976 2:"" +3802698431061855 1976:1976 0:"before hipLaunchKernel" +3802698431063275 1976:1976 1:"hipLaunchKernel" +3802698431085505 1976:1976 0:"after hipLaunchKernel" +3802698431086075 1976:1976 1:"hipMemcpy" +3802698433922826 1976:1976 2:"" +3802698433923336 1976:1976 2:"" +3802698443044684 1976:1976 0:"before hipLaunchKernel" +3802698443046464 1976:1976 1:"hipLaunchKernel" +3802698443068804 1976:1976 0:"after hipLaunchKernel" +3802698443069324 1976:1976 1:"hipMemcpy" +3802698445934236 1976:1976 2:"" +3802698445934906 1976:1976 2:"" +3802698455541096 1976:1976 0:"before hipLaunchKernel" +3802698455542996 1976:1976 1:"hipLaunchKernel" +3802698455564246 1976:1976 0:"after hipLaunchKernel" +3802698455564796 1976:1976 1:"hipMemcpy" +3802698458586539 1976:1976 2:"" +3802698458587159 1976:1976 2:"" +3802698467753757 1976:1976 0:"before hipLaunchKernel" +3802698467755207 1976:1976 1:"hipLaunchKernel" +3802698467780567 1976:1976 0:"after hipLaunchKernel" +3802698467781107 1976:1976 1:"hipMemcpy" +3802698470823400 1976:1976 2:"" +3802698470823880 1976:1976 2:"" +3802698479969378 1976:1976 0:"before hipLaunchKernel" +3802698479970828 1976:1976 1:"hipLaunchKernel" +3802698479991938 1976:1976 0:"after hipLaunchKernel" +3802698479992478 1976:1976 1:"hipMemcpy" +3802698482849299 1976:1976 2:"" +3802698482849789 1976:1976 2:"" +3802698492126948 1976:1976 0:"before hipLaunchKernel" +3802698492128778 1976:1976 1:"hipLaunchKernel" +3802698492154628 1976:1976 0:"after hipLaunchKernel" +3802698492155238 1976:1976 1:"hipMemcpy" +3802698494987599 1976:1976 2:"" +3802698494988109 1976:1976 2:"" +3802698504563340 1976:1976 0:"before hipLaunchKernel" +3802698504568030 1976:1976 1:"hipLaunchKernel" +3802698504589370 1976:1976 0:"after hipLaunchKernel" +3802698504589910 1976:1976 1:"hipMemcpy" +3802698507589983 1976:1976 2:"" +3802698507590463 1976:1976 2:"" +3802698516908051 1976:1976 0:"before hipLaunchKernel" +3802698516909951 1976:1976 1:"hipLaunchKernel" +3802698516936761 1976:1976 0:"after hipLaunchKernel" +3802698516937311 1976:1976 1:"hipMemcpy" +3802698519827073 1976:1976 2:"" +3802698519827603 1976:1976 2:"" +3802698529111392 1976:1976 0:"before hipLaunchKernel" +3802698529112822 1976:1976 1:"hipLaunchKernel" +3802698529134262 1976:1976 0:"after hipLaunchKernel" +3802698529134792 1976:1976 1:"hipMemcpy" +3802698531958193 1976:1976 2:"" +3802698531958653 1976:1976 2:"" +3802698541539303 1976:1976 0:"before hipLaunchKernel" +3802698541541233 1976:1976 1:"hipLaunchKernel" +3802698541566384 1976:1976 0:"after hipLaunchKernel" +3802698541566974 1976:1976 1:"hipMemcpy" +3802698544544486 1976:1976 2:"" +3802698544544996 1976:1976 2:"" +3802698553770384 1976:1976 0:"before hipLaunchKernel" +3802698553772084 1976:1976 1:"hipLaunchKernel" +3802698553791185 1976:1976 0:"after hipLaunchKernel" +3802698553791715 1976:1976 1:"hipMemcpy" +3802698556827967 1976:1976 2:"" +3802698556828457 1976:1976 2:"" +3802698566112656 1976:1976 0:"before hipLaunchKernel" +3802698566114136 1976:1976 1:"hipLaunchKernel" +3802698566142756 1976:1976 0:"after hipLaunchKernel" +3802698566143366 1976:1976 1:"hipMemcpy" +3802698568980487 1976:1976 2:"" +3802698568981107 1976:1976 2:"" +3802698578112005 1976:1976 0:"before hipLaunchKernel" +3802698578113775 1976:1976 1:"hipLaunchKernel" +3802698578133955 1976:1976 0:"after hipLaunchKernel" +3802698578134485 1976:1976 1:"hipMemcpy" +3802698580959776 1976:1976 2:"" +3802698580960246 1976:1976 2:"" +3802698590073824 1976:1976 0:"before hipLaunchKernel" +3802698590075384 1976:1976 1:"hipLaunchKernel" +3802698590101764 1976:1976 0:"after hipLaunchKernel" +3802698590102294 1976:1976 1:"hipMemcpy" +3802698592944435 1976:1976 2:"" +3802698592944905 1976:1976 2:"" +3802698602572106 1976:1976 0:"before hipLaunchKernel" +3802698602573746 1976:1976 1:"hipLaunchKernel" +3802698602598766 1976:1976 0:"after hipLaunchKernel" +3802698602599286 1976:1976 1:"hipMemcpy" +3802698605591158 1976:1976 2:"" +3802698605591628 1976:1976 2:"" +3802698614815537 1976:1976 0:"before hipLaunchKernel" +3802698614817317 1976:1976 1:"hipLaunchKernel" +3802698614841927 1976:1976 0:"after hipLaunchKernel" +3802698614842447 1976:1976 1:"hipMemcpy" +3802698617805469 1976:1976 2:"" +3802698617806159 1976:1976 2:"" +3802698626952487 1976:1976 0:"before hipLaunchKernel" +3802698626953937 1976:1976 1:"hipLaunchKernel" +3802698626982867 1976:1976 0:"after hipLaunchKernel" +3802698626983437 1976:1976 1:"hipMemcpy" +3802698629846948 1976:1976 2:"" +3802698629847458 1976:1976 2:"" +3802698638993086 1976:1976 0:"before hipLaunchKernel" +3802698638994976 1976:1976 1:"hipLaunchKernel" +3802698639015786 1976:1976 0:"after hipLaunchKernel" +3802698639016316 1976:1976 1:"hipMemcpy" +3802698641846037 1976:1976 2:"" +3802698641846527 1976:1976 2:"" +3802698650991195 1976:1976 0:"before hipLaunchKernel" +3802698650992485 1976:1976 1:"hipLaunchKernel" +3802698651019065 1976:1976 0:"after hipLaunchKernel" +3802698651019615 1976:1976 1:"hipMemcpy" +3802698653845256 1976:1976 2:"" +3802698653845746 1976:1976 2:"" +3802698662979054 1976:1976 0:"before hipLaunchKernel" +3802698662981174 1976:1976 1:"hipLaunchKernel" +3802698663002894 1976:1976 0:"after hipLaunchKernel" +3802698663003444 1976:1976 1:"hipMemcpy" +3802698665833955 1976:1976 2:"" +3802698665834475 1976:1976 2:"" +3802698674987773 1976:1976 0:"before hipLaunchKernel" +3802698674989033 1976:1976 1:"hipLaunchKernel" +3802698675013433 1976:1976 0:"after hipLaunchKernel" +3802698675013983 1976:1976 1:"hipMemcpy" +3802698677841304 1976:1976 2:"" +3802698677841904 1976:1976 2:"" +3802698686981961 1976:1976 0:"before hipLaunchKernel" +3802698686983421 1976:1976 1:"hipLaunchKernel" +3802698687005391 1976:1976 0:"after hipLaunchKernel" +3802698687005941 1976:1976 1:"hipMemcpy" +3802698689839023 1976:1976 2:"" +3802698689839533 1976:1976 2:"" +3802698698983291 1976:1976 0:"before hipLaunchKernel" +3802698698984521 1976:1976 1:"hipLaunchKernel" +3802698699007521 1976:1976 0:"after hipLaunchKernel" +3802698699008051 1976:1976 1:"hipMemcpy" +3802698701851322 1976:1976 2:"" +3802698701851812 1976:1976 2:"" +3802698710997130 1976:1976 0:"before hipLaunchKernel" +3802698711001680 1976:1976 1:"hipLaunchKernel" +3802698711022540 1976:1976 0:"after hipLaunchKernel" +3802698711023060 1976:1976 1:"hipMemcpy" +3802698713847991 1976:1976 2:"" +3802698713848521 1976:1976 2:"" +3802698722995138 1976:1976 0:"before hipLaunchKernel" +3802698722996528 1976:1976 1:"hipLaunchKernel" +3802698723022069 1976:1976 0:"after hipLaunchKernel" +3802698723022629 1976:1976 1:"hipMemcpy" +3802698725844050 1976:1976 2:"" +3802698725844510 1976:1976 2:"" +3802698734989178 1976:1976 0:"before hipLaunchKernel" +3802698734990898 1976:1976 1:"hipLaunchKernel" +3802698735012968 1976:1976 0:"after hipLaunchKernel" +3802698735013508 1976:1976 1:"hipMemcpy" +3802698737900489 1976:1976 2:"" +3802698737900979 1976:1976 2:"" +3802698747037876 1976:1976 0:"before hipLaunchKernel" +3802698747039086 1976:1976 1:"hipLaunchKernel" +3802698747067357 1976:1976 0:"after hipLaunchKernel" +3802698747067987 1976:1976 1:"hipMemcpy" +3802698749891448 1976:1976 2:"" +3802698749891918 1976:1976 2:"" +3802698759039106 1976:1976 0:"before hipLaunchKernel" +3802698759040776 1976:1976 1:"hipLaunchKernel" +3802698759061686 1976:1976 0:"after hipLaunchKernel" +3802698759062216 1976:1976 1:"hipMemcpy" +3802698761935127 1976:1976 2:"" +3802698761935647 1976:1976 2:"" +3802698771184535 1976:1976 0:"before hipLaunchKernel" +3802698771186105 1976:1976 1:"hipLaunchKernel" +3802698771212756 1976:1976 0:"after hipLaunchKernel" +3802698771213306 1976:1976 1:"hipMemcpy" +3802698774030286 1976:1976 2:"" +3802698774030776 1976:1976 2:"" +3802698783157844 1976:1976 0:"before hipLaunchKernel" +3802698783159314 1976:1976 1:"hipLaunchKernel" +3802698783179004 1976:1976 0:"after hipLaunchKernel" +3802698783179534 1976:1976 1:"hipMemcpy" +3802698785953255 1976:1976 2:"" +3802698785953725 1976:1976 2:"" +3802698795101233 1976:1976 0:"before hipLaunchKernel" +3802698795102593 1976:1976 1:"hipLaunchKernel" +3802698795126553 1976:1976 0:"after hipLaunchKernel" +3802698795127113 1976:1976 1:"hipMemcpy" +3802698797934154 1976:1976 2:"" +3802698797934654 1976:1976 2:"" +3802698807055001 1976:1976 0:"before hipLaunchKernel" +3802698807056651 1976:1976 1:"hipLaunchKernel" +3802698807075891 1976:1976 0:"after hipLaunchKernel" +3802698807076421 1976:1976 1:"hipMemcpy" +3802698809937903 1976:1976 2:"" +3802698809938383 1976:1976 2:"" +3802698819068801 1976:1976 0:"before hipLaunchKernel" +3802698819070131 1976:1976 1:"hipLaunchKernel" +3802698819095621 1976:1976 0:"after hipLaunchKernel" +3802698819096191 1976:1976 1:"hipMemcpy" +3802698821926242 1976:1976 2:"" +3802698821926712 1976:1976 2:"" +3802698831041859 1976:1976 0:"before hipLaunchKernel" +3802698831043329 1976:1976 1:"hipLaunchKernel" +3802698831062809 1976:1976 0:"after hipLaunchKernel" +3802698831063339 1976:1976 1:"hipMemcpy" +3802698833849500 1976:1976 2:"" +3802698833849970 1976:1976 2:"" +3802698842996458 1976:1976 0:"before hipLaunchKernel" +3802698842997998 1976:1976 1:"hipLaunchKernel" +3802698843023668 1976:1976 0:"after hipLaunchKernel" +3802698843024228 1976:1976 1:"hipMemcpy" +3802698845855759 1976:1976 2:"" +3802698845856229 1976:1976 2:"" +3802698854998417 1976:1976 0:"before hipLaunchKernel" +3802698854999817 1976:1976 1:"hipLaunchKernel" +3802698855023747 1976:1976 0:"after hipLaunchKernel" +3802698855024277 1976:1976 1:"hipMemcpy" +3802698857841348 1976:1976 2:"" +3802698857841818 1976:1976 2:"" +3802698866968635 1976:1976 0:"before hipLaunchKernel" +3802698866969985 1976:1976 1:"hipLaunchKernel" +3802698866997786 1976:1976 0:"after hipLaunchKernel" +3802698866998346 1976:1976 1:"hipMemcpy" +3802698869841947 1976:1976 2:"" +3802698869842617 1976:1976 2:"" +3802698879133146 1976:1976 0:"before hipLaunchKernel" +3802698879134596 1976:1976 1:"hipLaunchKernel" +3802698879161626 1976:1976 0:"after hipLaunchKernel" +3802698879162156 1976:1976 1:"hipMemcpy" +3802698881942857 1976:1976 2:"" +3802698881943467 1976:1976 2:"" +3802698891085094 1976:1976 0:"before hipLaunchKernel" +3802698891086394 1976:1976 1:"hipLaunchKernel" +3802698891107454 1976:1976 0:"after hipLaunchKernel" +3802698891108014 1976:1976 1:"hipMemcpy" +3802698893941915 1976:1976 2:"" +3802698893942385 1976:1976 2:"" +3802698903069703 1976:1976 0:"before hipLaunchKernel" +3802698903071163 1976:1976 1:"hipLaunchKernel" +3802698903099163 1976:1976 0:"after hipLaunchKernel" +3802698903099693 1976:1976 1:"hipMemcpy" +3802698905929224 1976:1976 2:"" +3802698905929694 1976:1976 2:"" +3802698915063562 1976:1976 0:"before hipLaunchKernel" +3802698915065902 1976:1976 1:"hipLaunchKernel" +3802698915087492 1976:1976 0:"after hipLaunchKernel" +3802698915088052 1976:1976 1:"hipMemcpy" +3802698917894692 1976:1976 2:"" +3802698917895162 1976:1976 2:"" +3802698927016020 1976:1976 0:"before hipLaunchKernel" +3802698927017400 1976:1976 1:"hipLaunchKernel" +3802698927044411 1976:1976 0:"after hipLaunchKernel" +3802698927044941 1976:1976 1:"hipMemcpy" +3802698929938212 1976:1976 2:"" +3802698929938712 1976:1976 2:"" +3802698939071720 1976:1976 0:"before hipLaunchKernel" +3802698939073080 1976:1976 1:"hipLaunchKernel" +3802698939094810 1976:1976 0:"after hipLaunchKernel" +3802698939095370 1976:1976 1:"hipMemcpy" +3802698941981161 1976:1976 2:"" +3802698941981671 1976:1976 2:"" +3802698951107159 1976:1976 0:"before hipLaunchKernel" +3802698951108599 1976:1976 1:"hipLaunchKernel" +3802698951130489 1976:1976 0:"after hipLaunchKernel" +3802698951131009 1976:1976 1:"hipMemcpy" +3802698953923440 1976:1976 2:"" +3802698953924010 1976:1976 2:"" +3802698963062768 1976:1976 0:"before hipLaunchKernel" +3802698963064048 1976:1976 1:"hipLaunchKernel" +3802698963083908 1976:1976 0:"after hipLaunchKernel" +3802698963084458 1976:1976 1:"hipMemcpy" +3802698965969339 1976:1976 2:"" +3802698965969829 1976:1976 2:"" +3802698975096886 1976:1976 0:"before hipLaunchKernel" +3802698975098436 1976:1976 1:"hipLaunchKernel" +3802698975124147 1976:1976 0:"after hipLaunchKernel" +3802698975124677 1976:1976 1:"hipMemcpy" +3802698977952048 1976:1976 2:"" +3802698977952638 1976:1976 2:"" +3802698987551239 1976:1976 0:"before hipLaunchKernel" +3802698987552469 1976:1976 1:"hipLaunchKernel" +3802698987573289 1976:1976 0:"after hipLaunchKernel" +3802698987573849 1976:1976 1:"hipMemcpy" +3802698990600192 1976:1976 2:"" +3802698990600762 1976:1976 2:"" +3802698999759950 1976:1976 0:"before hipLaunchKernel" +3802698999761760 1976:1976 1:"hipLaunchKernel" +3802698999789040 1976:1976 0:"after hipLaunchKernel" +3802698999789580 1976:1976 1:"hipMemcpy" +3802699002820352 1976:1976 2:"" +3802699002820982 1976:1976 2:"" +3802699012111031 1976:1976 0:"before hipLaunchKernel" +3802699012112611 1976:1976 1:"hipLaunchKernel" +3802699012134161 1976:1976 0:"after hipLaunchKernel" +3802699012134821 1976:1976 1:"hipMemcpy" +3802699014951892 1976:1976 2:"" +3802699014952382 1976:1976 2:"" +3802699024585864 1976:1976 0:"before hipLaunchKernel" +3802699024587184 1976:1976 1:"hipLaunchKernel" +3802699024613644 1976:1976 0:"after hipLaunchKernel" +3802699024614164 1976:1976 1:"hipMemcpy" +3802699027595546 1976:1976 2:"" +3802699027596056 1976:1976 2:"" +3802699036915425 1976:1976 0:"before hipLaunchKernel" +3802699036916785 1976:1976 1:"hipLaunchKernel" +3802699036936805 1976:1976 0:"after hipLaunchKernel" +3802699036937415 1976:1976 1:"hipMemcpy" +3802699039834406 1976:1976 2:"" +3802699039834866 1976:1976 2:"" +3802699049116795 1976:1976 0:"before hipLaunchKernel" +3802699049118505 1976:1976 1:"hipLaunchKernel" +3802699049140836 1976:1976 0:"after hipLaunchKernel" +3802699049141366 1976:1976 1:"hipMemcpy" +3802699051977067 1976:1976 2:"" +3802699051977557 1976:1976 2:"" +3802699061586267 1976:1976 0:"before hipLaunchKernel" +3802699061587747 1976:1976 1:"hipLaunchKernel" +3802699061613208 1976:1976 0:"after hipLaunchKernel" +3802699061613748 1976:1976 1:"hipMemcpy" +3802699064566399 1976:1976 2:"" +3802699064566859 1976:1976 2:"" +3802699073761568 1976:1976 0:"before hipLaunchKernel" +3802699073763288 1976:1976 1:"hipLaunchKernel" +3802699073794758 1976:1976 0:"after hipLaunchKernel" +3802699073795288 1976:1976 1:"hipMemcpy" +3802699076479498 1976:1976 2:"" +3802699076479968 1976:1976 2:"" +3802699085608186 1976:1976 0:"before hipLaunchKernel" +3802699085609996 1976:1976 1:"hipLaunchKernel" +3802699085632966 1976:1976 0:"after hipLaunchKernel" +3802699085633586 1976:1976 1:"hipMemcpy" +3802699088547867 1976:1976 2:"" +3802699088548387 1976:1976 2:"" +3802699097659995 1976:1976 0:"before hipLaunchKernel" +3802699097661275 1976:1976 1:"hipLaunchKernel" +3802699097693835 1976:1976 0:"after hipLaunchKernel" +3802699097694405 1976:1976 1:"hipMemcpy" +3802699100515206 1976:1976 2:"" +3802699100515666 1976:1976 2:"" +3802699109625984 1976:1976 0:"before hipLaunchKernel" +3802699109627094 1976:1976 1:"hipLaunchKernel" +3802699109657514 1976:1976 0:"after hipLaunchKernel" +3802699109658094 1976:1976 1:"hipMemcpy" +3802699112546586 1976:1976 2:"" +3802699112547056 1976:1976 2:"" +3802699121665663 1976:1976 0:"before hipLaunchKernel" +3802699121667203 1976:1976 1:"hipLaunchKernel" +3802699121697983 1976:1976 0:"after hipLaunchKernel" +3802699121698553 1976:1976 1:"hipMemcpy" +3802699124544914 1976:1976 2:"" +3802699124545374 1976:1976 2:"" +3802699133661782 1976:1976 0:"before hipLaunchKernel" +3802699133663472 1976:1976 1:"hipLaunchKernel" +3802699133695042 1976:1976 0:"after hipLaunchKernel" +3802699133695582 1976:1976 1:"hipMemcpy" +3802699136516373 1976:1976 2:"" +3802699136516843 1976:1976 2:"" +3802699145650791 1976:1976 0:"before hipLaunchKernel" +3802699145652041 1976:1976 1:"hipLaunchKernel" +3802699145675981 1976:1976 0:"after hipLaunchKernel" +3802699145676571 1976:1976 1:"hipMemcpy" +3802699148515202 1976:1976 2:"" +3802699148515652 1976:1976 2:"" +3802699157632629 1976:1976 0:"before hipLaunchKernel" +3802699157634409 1976:1976 1:"hipLaunchKernel" +3802699157665830 1976:1976 0:"after hipLaunchKernel" +3802699157666660 1976:1976 1:"hipMemcpy" +3802699160515171 1976:1976 2:"" +3802699160515621 1976:1976 2:"" +3802699169662759 1976:1976 0:"before hipLaunchKernel" +3802699169664009 1976:1976 1:"hipLaunchKernel" +3802699169689719 1976:1976 0:"after hipLaunchKernel" +3802699169690279 1976:1976 1:"hipMemcpy" +3802699172516040 1976:1976 2:"" +3802699172516500 1976:1976 2:"" +3802699181748418 1976:1976 0:"before hipLaunchKernel" +3802699181749878 1976:1976 1:"hipLaunchKernel" +3802699181781418 1976:1976 0:"after hipLaunchKernel" +3802699181781998 1976:1976 1:"hipMemcpy" +3802699184627649 1976:1976 2:"" +3802699184628129 1976:1976 2:"" +3802699193626196 1976:1976 0:"before hipLaunchKernel" +3802699193627726 1976:1976 1:"hipLaunchKernel" +3802699193655016 1976:1976 0:"after hipLaunchKernel" +3802699193655586 1976:1976 1:"hipMemcpy" +3802699196565918 1976:1976 2:"" +3802699196566468 1976:1976 2:"" +3802699205687895 1976:1976 0:"before hipLaunchKernel" +3802699205689295 1976:1976 1:"hipLaunchKernel" +3802699205718665 1976:1976 0:"after hipLaunchKernel" +3802699205719515 1976:1976 1:"hipMemcpy" +3802699208559857 1976:1976 2:"" +3802699208560317 1976:1976 2:"" +3802699217684944 1976:1976 0:"before hipLaunchKernel" +3802699217686514 1976:1976 1:"hipLaunchKernel" +3802699217713745 1976:1976 0:"after hipLaunchKernel" +3802699217714325 1976:1976 1:"hipMemcpy" +3802699220645506 1976:1976 2:"" +3802699220645966 1976:1976 2:"" +3802699229773944 1976:1976 0:"before hipLaunchKernel" +3802699229775844 1976:1976 1:"hipLaunchKernel" +3802699229805694 1976:1976 0:"after hipLaunchKernel" +3802699229806234 1976:1976 1:"hipMemcpy" +3802699232625735 1976:1976 2:"" +3802699232626195 1976:1976 2:"" +3802699241739293 1976:1976 0:"before hipLaunchKernel" +3802699241740413 1976:1976 1:"hipLaunchKernel" +3802699241764243 1976:1976 0:"after hipLaunchKernel" +3802699241764803 1976:1976 1:"hipMemcpy" +3802699244619954 1976:1976 2:"" +3802699244620414 1976:1976 2:"" +3802699253732532 1976:1976 0:"before hipLaunchKernel" +3802699253733852 1976:1976 1:"hipLaunchKernel" +3802699253768182 1976:1976 0:"after hipLaunchKernel" +3802699253768832 1976:1976 1:"hipMemcpy" +3802699256620213 1976:1976 2:"" +3802699256620683 1976:1976 2:"" +3802699265758660 1976:1976 0:"before hipLaunchKernel" +3802699265759910 1976:1976 1:"hipLaunchKernel" +3802699265783691 1976:1976 0:"after hipLaunchKernel" +3802699265784421 1976:1976 1:"hipMemcpy" +3802699268619642 1976:1976 2:"" +3802699268620102 1976:1976 2:"" +3802699277738019 1976:1976 0:"before hipLaunchKernel" +3802699277739670 1976:1976 1:"hipLaunchKernel" +3802699277768890 1976:1976 0:"after hipLaunchKernel" +3802699277769430 1976:1976 1:"hipMemcpy" +3802699280616321 1976:1976 2:"" +3802699280616781 1976:1976 2:"" +3802699289740138 1976:1976 0:"before hipLaunchKernel" +3802699289741688 1976:1976 1:"hipLaunchKernel" +3802699289765059 1976:1976 0:"after hipLaunchKernel" +3802699289765769 1976:1976 1:"hipMemcpy" +3802699292625459 1976:1976 2:"" +3802699292625919 1976:1976 2:"" +3802699301811248 1976:1976 0:"before hipLaunchKernel" +3802699301812898 1976:1976 1:"hipLaunchKernel" +3802699301844388 1976:1976 0:"after hipLaunchKernel" +3802699301846728 1976:1976 1:"hipMemcpy" +3802699304649839 1976:1976 2:"" +3802699304650309 1976:1976 2:"" +3802699313767287 1976:1976 0:"before hipLaunchKernel" +3802699313768337 1976:1976 1:"hipLaunchKernel" +3802699313791587 1976:1976 0:"after hipLaunchKernel" +3802699313792287 1976:1976 1:"hipMemcpy" +3802699316621268 1976:1976 2:"" +3802699316621738 1976:1976 2:"" +3802699325721265 1976:1976 0:"before hipLaunchKernel" +3802699325722395 1976:1976 1:"hipLaunchKernel" +3802699325758255 1976:1976 0:"after hipLaunchKernel" +3802699325758845 1976:1976 1:"hipMemcpy" +3802699328648747 1976:1976 2:"" +3802699328649207 1976:1976 2:"" +3802699337764504 1976:1976 0:"before hipLaunchKernel" +3802699337765674 1976:1976 1:"hipLaunchKernel" +3802699337788345 1976:1976 0:"after hipLaunchKernel" +3802699337788895 1976:1976 1:"hipMemcpy" +3802699340628126 1976:1976 2:"" +3802699340628596 1976:1976 2:"" +3802699349743423 1976:1976 0:"before hipLaunchKernel" +3802699349745353 1976:1976 1:"hipLaunchKernel" +3802699349775723 1976:1976 0:"after hipLaunchKernel" +3802699349776413 1976:1976 1:"hipMemcpy" +3802699352620654 1976:1976 2:"" +3802699352621114 1976:1976 2:"" +3802699361737882 1976:1976 0:"before hipLaunchKernel" +3802699361739082 1976:1976 1:"hipLaunchKernel" +3802699361768572 1976:1976 0:"after hipLaunchKernel" +3802699361769292 1976:1976 1:"hipMemcpy" +3802699364621153 1976:1976 2:"" +3802699364621623 1976:1976 2:"" +3802699373747841 1976:1976 0:"before hipLaunchKernel" +3802699373749541 1976:1976 1:"hipLaunchKernel" +3802699373776941 1976:1976 0:"after hipLaunchKernel" +3802699373777471 1976:1976 1:"hipMemcpy" +3802699376625193 1976:1976 2:"" +3802699376625663 1976:1976 2:"" +3802699385744350 1976:1976 0:"before hipLaunchKernel" +3802699385746600 1976:1976 1:"hipLaunchKernel" +3802699385775400 1976:1976 0:"after hipLaunchKernel" +3802699385776080 1976:1976 1:"hipMemcpy" +3802699388618461 1976:1976 2:"" +3802699388618921 1976:1976 2:"" +3802699397742279 1976:1976 0:"before hipLaunchKernel" +3802699397744059 1976:1976 1:"hipLaunchKernel" +3802699397777549 1976:1976 0:"after hipLaunchKernel" +3802699397778079 1976:1976 1:"hipMemcpy" +3802699400621600 1976:1976 2:"" +3802699400622070 1976:1976 2:"" +3802699409880849 1976:1976 0:"before hipLaunchKernel" +3802699409882539 1976:1976 1:"hipLaunchKernel" +3802699409916089 1976:1976 0:"after hipLaunchKernel" +3802699409916879 1976:1976 1:"hipMemcpy" +3802699412723740 1976:1976 2:"" +3802699412724220 1976:1976 2:"" +3802699421958768 1976:1976 0:"before hipLaunchKernel" +3802699421959938 1976:1976 1:"hipLaunchKernel" +3802699422042859 1976:1976 0:"after hipLaunchKernel" +3802699422043599 1976:1976 1:"hipMemcpy" +3802699424855020 1976:1976 2:"" +3802699424855490 1976:1976 2:"" +3802699434182409 1976:1976 0:"before hipLaunchKernel" +3802699434183819 1976:1976 1:"hipLaunchKernel" +3802699434213659 1976:1976 0:"after hipLaunchKernel" +3802699434214319 1976:1976 1:"hipMemcpy" +3802699436909869 1976:1976 2:"" +3802699436910339 1976:1976 2:"" +3802699446188408 1976:1976 0:"before hipLaunchKernel" +3802699446189688 1976:1976 1:"hipLaunchKernel" +3802699446214068 1976:1976 0:"after hipLaunchKernel" +3802699446214728 1976:1976 1:"hipMemcpy" +3802699448889358 1976:1976 2:"" +3802699448889818 1976:1976 2:"" +3802699458183327 1976:1976 0:"before hipLaunchKernel" +3802699458184847 1976:1976 1:"hipLaunchKernel" +3802699458214737 1976:1976 0:"after hipLaunchKernel" +3802699458215517 1976:1976 1:"hipMemcpy" +3802699460902347 1976:1976 2:"" +3802699460902827 1976:1976 2:"" +3802699470195376 1976:1976 0:"before hipLaunchKernel" +3802699470196956 1976:1976 1:"hipLaunchKernel" +3802699470222916 1976:1976 0:"after hipLaunchKernel" +3802699470223856 1976:1976 1:"hipMemcpy" +3802699472918936 1976:1976 2:"" +3802699472919396 1976:1976 2:"" +3802699482183955 1976:1976 0:"before hipLaunchKernel" +3802699482185625 1976:1976 1:"hipLaunchKernel" +3802699482219905 1976:1976 0:"after hipLaunchKernel" +3802699482220795 1976:1976 1:"hipMemcpy" +3802699484904915 1976:1976 2:"" +3802699484905385 1976:1976 2:"" +3802699494192104 1976:1976 0:"before hipLaunchKernel" +3802699494193804 1976:1976 1:"hipLaunchKernel" +3802699494218554 1976:1976 0:"after hipLaunchKernel" +3802699494219244 1976:1976 1:"hipMemcpy" +3802699496909784 1976:1976 2:"" +3802699496910254 1976:1976 2:"" +3802698294571570:3802698295835634 async-copy:0:1976 +3802698298468070:3802698299647537 async-copy:1:1976 +3802698308471288:3802698309738019 async-copy:2:1976 +3802698311527883:3802698312709869 async-copy:3:1976 +3802698320758026:3802698322024757 async-copy:4:1976 +3802698323694472:3802698324876309 async-copy:5:1976 +3802698332849809:3802698334116243 async-copy:6:1976 +3802698335955481:3802698337137763 async-copy:7:1976 +3802698345454627:3802698346721209 async-copy:8:1976 +3802698348507214:3802698349689200 async-copy:9:1976 +3802698357545761:3802698358812195 async-copy:10:1976 +3802698360538281:3802698361720415 async-copy:11:1976 +3802698369590099:3802698370856681 async-copy:12:1976 +3802698372538468:3802698373720454 async-copy:13:1976 +3802698381602361:3802698382868943 async-copy:14:1976 +3802698384538467:3802698385720749 async-copy:15:1976 +3802698393738963:3802698395005545 async-copy:16:1976 +3802698396633442:3802698397815427 async-copy:17:1976 +3802698405657402:3802698406924133 async-copy:18:1976 +3802698408628869:3802698409810706 async-copy:19:1976 +3802698417653655:3802698418920386 async-copy:20:1976 +3802698420629380:3802698421811514 async-copy:21:1976 +3802698429662090:3802698430929117 async-copy:22:1976 +3802698432620240:3802698433802966 async-copy:23:1976 +3802698441649564:3802698442915998 async-copy:24:1976 +3802698444632211:3802698445814493 async-copy:25:1976 +3802698453874073:3802698455137989 async-copy:26:1976 +3802698456944614:3802698458127044 async-copy:27:1976 +3802698466350048:3802698467616927 async-copy:28:1976 +3802698469523006:3802698470704547 async-copy:29:1976 +3802698478573269:3802698479839852 async-copy:30:1976 +3802698481547641:3802698482729775 async-copy:31:1976 +3802698490744232:3802698492011259 async-copy:32:1976 +3802698493680962:3802698494862799 async-copy:33:1976 +3802698502958511:3802698504222575 async-copy:34:1976 +3802698505969154:3802698507151436 async-copy:35:1976 +3802698515508679:3802698516775261 async-copy:36:1976 +3802698518524886:3802698519706575 async-copy:37:1976 +3802698527711374:3802698528978105 async-copy:38:1976 +3802698530656674:3802698531838363 async-copy:39:1976 +3802698539908965:3802698541173029 async-copy:40:1976 +3802698542957219:3802698544139204 async-copy:41:1976 +3802698552362848:3802698553629875 async-copy:42:1976 +3802698555522230:3802698556704216 async-copy:43:1976 +3802698564719315:3802698565985750 async-copy:44:1976 +3802698567668129:3802698568849966 async-copy:45:1976 +3802698576706958:3802698577973688 async-copy:46:1976 +3802698579654220:3802698580836058 async-copy:47:1976 +3802698588680004:3802698589946735 async-copy:48:1976 +3802698591638379:3802698592820512 async-copy:49:1976 +3802698601008800:3802698602276272 async-copy:50:1976 +3802698603995096:3802698605177230 async-copy:51:1976 +3802698613422522:3802698614689104 async-copy:52:1976 +3802698616501136:3802698617683122 async-copy:53:1976 +3802698625559215:3802698626825798 async-copy:54:1976 +3802698628545199:3802698629727036 async-copy:55:1976 +3802698637590357:3802698638857236 async-copy:56:1976 +3802698640545268:3802698641727550 async-copy:57:1976 +3802698649597648:3802698650864230 async-copy:58:1976 +3802698652540014:3802698653721999 async-copy:59:1976 +3802698661580287:3802698662847017 async-copy:60:1976 +3802698664533103:3802698665715089 async-copy:61:1976 +3802698673587944:3802698674854823 async-copy:62:1976 +3802698676539213:3802698677721642 async-copy:63:1976 +3802698685582472:3802698686849055 async-copy:64:1976 +3802698688537065:3802698689719199 async-copy:65:1976 +3802698697588472:3802698698855203 async-copy:66:1976 +3802698700550934:3802698701733512 async-copy:67:1976 +3802698709592039:3802698710858622 async-copy:68:1976 +3802698712547476:3802698713729313 async-copy:69:1976 +3802698721599736:3802698722866466 async-copy:70:1976 +3802698724541962:3802698725723947 async-copy:71:1976 +3802698733591852:3802698734858434 async-copy:72:1976 +3802698736599775:3802698737781612 async-copy:73:1976 +3802698745643935:3802698746910517 async-copy:74:1976 +3802698748589196:3802698749771182 async-copy:75:1976 +3802698757638162:3802698758904892 async-copy:76:1976 +3802698760633236:3802698761815074 async-copy:77:1976 +3802698769788236:3802698771054819 async-copy:78:1976 +3802698772725733:3802698773907571 async-copy:79:1976 +3802698781758013:3802698783024299 async-copy:80:1976 +3802698784648696:3802698785830533 async-copy:81:1976 +3802698793698253:3802698794964983 async-copy:82:1976 +3802698796632440:3802698797814721 async-copy:83:1976 +3802698805655272:3802698806922003 async-copy:84:1976 +3802698808631799:3802698809813785 async-copy:85:1976 +3802698817675724:3802698818942454 async-copy:86:1976 +3802698820624829:3802698821806666 async-copy:87:1976 +3802698829639145:3802698830905579 async-copy:88:1976 +3802698832546786:3802698833728624 async-copy:89:1976 +3802698841603279:3802698842869861 async-copy:90:1976 +3802698844553884:3802698845736017 async-copy:91:1976 +3802698853599019:3802698854865749 async-copy:92:1976 +3802698856538310:3802698857720147 async-copy:93:1976 +3802698865574185:3802698866841063 async-copy:94:1976 +3802698868537067:3802698869719201 async-copy:95:1976 +3802698877739300:3802698879006179 async-copy:96:1976 +3802698880641103:3802698881823384 async-copy:97:1976 +3802698889688934:3802698890955665 async-copy:98:1976 +3802698892640230:3802698893822363 async-copy:99:1976 +3802698901675331:3802698902941913 async-copy:100:1976 +3802698904626385:3802698905808667 async-copy:101:1976 +3802698913663923:3802698914930654 async-copy:102:1976 +3802698916592735:3802698917774869 async-copy:103:1976 +3802698925619462:3802698926886044 async-copy:104:1976 +3802698928633509:3802698929815790 async-copy:105:1976 +3802698937671699:3802698938938577 async-copy:106:1976 +3802698940679959:3802698941861499 async-copy:107:1976 +3802698949712842:3802698950979720 async-copy:108:1976 +3802698952622142:3802698953804424 async-copy:109:1976 +3802698961663041:3802698962929919 async-copy:110:1976 +3802698964668625:3802698965850610 async-copy:111:1976 +3802698973703082:3802698974969812 async-copy:112:1976 +3802698976650562:3802698977832547 async-copy:113:1976 +3802698985801043:3802698987067773 async-copy:114:1976 +3802698988966336:3802698990148618 async-copy:115:1976 +3802698998366627:3802698999633653 async-copy:116:1976 +3802699001519718:3802699002701555 async-copy:117:1976 +3802699010720998:3802699011987728 async-copy:118:1976 +3802699013649526:3802699014831363 async-copy:119:1976 +3802699022933001:3802699024196916 async-copy:120:1976 +3802699025999444:3802699027181282 async-copy:121:1976 +3802699035515661:3802699036782391 async-copy:122:1976 +3802699038531652:3802699039713637 async-copy:123:1976 +3802699047720919:3802699048987650 async-copy:124:1976 +3802699050677175:3802699051858864 async-copy:125:1976 +3802699059953997:3802699061218357 async-copy:126:1976 +3802699063004286:3802699064186419 async-copy:127:1976 +3802699072224332:3802699073491803 async-copy:128:1976 +3802699075183774:3802699076365314 async-copy:129:1976 +3802699084051209:3802699085315272 async-copy:130:1976 +3802699087023403:3802699088205388 async-copy:131:1976 +3802699096119742:3802699097386769 async-copy:132:1976 +3802699099061220:3802699100243057 async-copy:133:1976 +3802699108083678:3802699109350853 async-copy:134:1976 +3802699111025067:3802699112206904 async-copy:135:1976 +3802699120120651:3802699121387381 async-copy:136:1976 +3802699123067305:3802699124249142 async-copy:137:1976 +3802699132116072:3802699133382951 async-copy:138:1976 +3802699135063622:3802699136245460 async-copy:139:1976 +3802699144100532:3802699145367855 async-copy:140:1976 +3802699147052169:3802699148234006 async-copy:141:1976 +3802699156091872:3802699157358899 async-copy:142:1976 +3802699159037167:3802699160219300 async-copy:143:1976 +3802699168113587:3802699169380613 async-copy:144:1976 +3802699171070653:3802699172252490 async-copy:145:1976 +3802699180202461:3802699181469488 async-copy:146:1976 +3802699183151933:3802699184333771 async-copy:147:1976 +3802699192207984:3802699193474862 async-copy:148:1976 +3802699195028013:3802699196210147 async-copy:149:1976 +3802699204146465:3802699205413344 async-copy:150:1976 +3802699207107882:3802699208289571 async-copy:151:1976 +3802699216127532:3802699217394559 async-copy:152:1976 +3802699219088720:3802699220270558 async-copy:153:1976 +3802699228231340:3802699229498070 async-copy:154:1976 +3802699231192131:3802699232374116 async-copy:155:1976 +3802699240187923:3802699241454654 async-copy:156:1976 +3802699243146342:3802699244328328 async-copy:157:1976 +3802699252192866:3802699253459892 async-copy:158:1976 +3802699255161757:3802699256343891 async-copy:159:1976 +3802699264203968:3802699265470847 async-copy:160:1976 +3802699267152455:3802699268334441 async-copy:161:1976 +3802699276197837:3802699277464864 async-copy:162:1976 +3802699279160129:3802699280341966 async-copy:163:1976 +3802699288194738:3802699289461616 async-copy:164:1976 +3802699291155040:3802699292337322 async-copy:165:1976 +3802699300263987:3802699301530866 async-copy:166:1976 +3802699303227579:3802699304409416 async-copy:167:1976 +3802699312219946:3802699313486676 async-copy:168:1976 +3802699315169155:3802699316351140 async-copy:169:1976 +3802699324181589:3802699325448615 async-copy:170:1976 +3802699327120162:3802699328301999 async-copy:171:1976 +3802699336212344:3802699337479371 async-copy:172:1976 +3802699339157219:3802699340338908 async-copy:173:1976 +3802699348198196:3802699349465222 async-copy:174:1976 +3802699351175738:3802699352357723 async-copy:175:1976 +3802699360198393:3802699361465420 async-copy:176:1976 +3802699363172456:3802699364354590 async-copy:177:1976 +3802699372203851:3802699373470878 async-copy:178:1976 +3802699375171964:3802699376354098 async-copy:179:1976 +3802699384196959:3802699385463986 async-copy:180:1976 +3802699387172991:3802699388354829 async-copy:181:1976 +3802699396197135:3802699397464013 async-copy:182:1976 +3802699399175861:3802699400358143 async-copy:183:1976 +3802699408325703:3802699409592581 async-copy:184:1976 +3802699411281270:3802699412463255 async-copy:185:1976 +3802699420396582:3802699421664053 async-copy:186:1976 +3802699423402314:3802699424584151 async-copy:187:1976 +3802699432506102:3802699433773277 async-copy:188:1976 +3802699435596314:3802699436778595 async-copy:189:1976 +3802699444562812:3802699445829690 async-copy:190:1976 +3802699447579271:3802699448761109 async-copy:191:1976 +3802699456529500:3802699457796378 async-copy:192:1976 +3802699459593990:3802699460775975 async-copy:193:1976 +3802699468543249:3802699469810127 async-copy:194:1976 +3802699471604249:3802699472786086 async-copy:195:1976 +3802699480549583:3802699481816314 async-copy:196:1976 +3802699483594370:3802699484775911 async-copy:197:1976 +3802699492551745:3802699493818476 async-copy:198:1976 +3802699495589526:3802699496771067 async-copy:199:1976 diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_sys_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_sys_trace.txt index 784ca1aef8..22303861e8 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_sys_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_sys_trace.txt @@ -1,31 +1,10 @@ -ROCTracer (pid=26036): ++ ./test/MatrixTranspose +ROCTracer (pid=1969): rocTX-trace() +3802696357873955 HSA-trace() HIP-trace() -43925811393411:43925811393872 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b03b4) = 0 -43925811393411:43925811395633 26036:26036 hsa_iterate_agents(1, 0x7fff229b0510) = 1 -43925811396833:43925811397158 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b03b4) = 0 -43925811396833:43925811397876 26036:26036 hsa_iterate_agents(1, 0x7fff229b0510) = 1 -43925811400917:43925811401498 26036:26036 hsa_region_get_info(, 0, 0x7fff229b04d4) = 0 -43925811402322:43925811402677 26036:26036 hsa_region_get_info(, 1, 0x7fff229b04d0) = 0 -43925811403770:43925811404097 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b0224) = 0 -43925811403770:43925811404810 26036:26036 hsa_iterate_agents(1, 0x7fff229b0380) = 1 -43925811406396:43925811407167 26036:26036 hsa_amd_agent_memory_pool_get_info(, , 0, 0x7fff229b04cc) = 0 -43925811407942:43925811408297 26036:26036 hsa_region_get_info(, 0, 0x7fff229b04d4) = 0 -43925811409113:43925811409444 26036:26036 hsa_region_get_info(, 0, 0x7fff229b04d4) = 0 -43925811410178:43925811410527 26036:26036 hsa_region_get_info(, 1, 0x7fff229b04d0) = 0 -43925811411304:43925811411626 26036:26036 hsa_region_get_info(, 0, 0x7fff229b0504) = 0 -43925811412350:43925811412680 26036:26036 hsa_region_get_info(, 1, 0x7fff229b0500) = 0 -43925811413788:43925811414113 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b0254) = 0 -43925811413788:43925811414821 26036:26036 hsa_iterate_agents(1, 0x7fff229b03b0) = 1 -43925811415561:43925811415928 26036:26036 hsa_amd_agent_memory_pool_get_info(, , 0, 0x7fff229b04fc) = 0 -43925811415561:43925811416660 26036:26036 hsa_agent_iterate_regions(, 1, 0x7fff229b07af) = 0 -43925811415561:43925811417411 26036:26036 hsa_iterate_agents(1, 0x7fff229b07af) = 0 -ROCTracer (pid=26036): - rocTX-trace() - HSA-trace() - HIP-trace() -Device name Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device name Device 687f ## Iteration (99) ################# PASSED! ## Iteration (98) ################# @@ -226,5914 +205,5761 @@ PASSED! PASSED! ## Iteration (0) ################# PASSED! -43925830291858:43925830326901 26036:26036 hipGetDeviceProperties() -43925832519247:43925832571262 26036:26036 hipMalloc(ptr(0x902800000) size(0x400000)) -43925832573916:43925832596843 26036:26036 hipMalloc(ptr(0x903000000) size(0x400000)) -43925832607391:43925837942666 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43925837944545:43925837944546 26036:26036 MARK(name(before HIP LaunchKernel)) -43926122599667:43926124638349 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926124652448:43926124652449 26036:26036 MARK(name(after HIP LaunchKernel)) -43926124662801:43926126128091 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926140560237:43926141412987 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926141414198:43926141414199 26036:26036 MARK(name(before HIP LaunchKernel)) -43926141428295:43926141474368 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926141476054:43926141476055 26036:26036 MARK(name(after HIP LaunchKernel)) -43926141480612:43926142878317 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926157274364:43926158120797 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926158122250:43926158122251 26036:26036 MARK(name(before HIP LaunchKernel)) -43926158135466:43926158190370 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926158192301:43926158192302 26036:26036 MARK(name(after HIP LaunchKernel)) -43926158196966:43926159592565 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926173976841:43926174824308 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926174825564:43926174825565 26036:26036 MARK(name(before HIP LaunchKernel)) -43926174841660:43926174898732 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926174900848:43926174900849 26036:26036 MARK(name(after HIP LaunchKernel)) -43926174905491:43926176313892 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926190693281:43926191539056 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926191540290:43926191540291 26036:26036 MARK(name(before HIP LaunchKernel)) -43926191552980:43926191600146 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926191611865:43926191611866 26036:26036 MARK(name(after HIP LaunchKernel)) -43926191629445:43926193016360 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926207396082:43926208242780 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926208243960:43926208243961 26036:26036 MARK(name(before HIP LaunchKernel)) -43926208255862:43926208311787 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926208313617:43926208313618 26036:26036 MARK(name(after HIP LaunchKernel)) -43926208318394:43926209723739 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926224101316:43926224958904 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926224960190:43926224960191 26036:26036 MARK(name(before HIP LaunchKernel)) -43926224973005:43926225019482 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926225031013:43926225031014 26036:26036 MARK(name(after HIP LaunchKernel)) -43926225035874:43926227824740 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926242200733:43926243058428 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926243059714:43926243059715 26036:26036 MARK(name(before HIP LaunchKernel)) -43926243072321:43926243134193 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926243136569:43926243136570 26036:26036 MARK(name(after HIP LaunchKernel)) -43926243141248:43926245921568 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926260304059:43926261159973 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926261161141:43926261161142 26036:26036 MARK(name(before HIP LaunchKernel)) -43926261174080:43926261220185 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926261221665:43926261221666 26036:26036 MARK(name(after HIP LaunchKernel)) -43926261236174:43926264031840 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926278411087:43926279274273 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926279275492:43926279275493 26036:26036 MARK(name(before HIP LaunchKernel)) -43926279287331:43926279350469 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926279352290:43926279352291 26036:26036 MARK(name(after HIP LaunchKernel)) -43926279357061:43926282149834 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926296538395:43926297421366 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926297424106:43926297424107 26036:26036 MARK(name(before HIP LaunchKernel)) -43926297436167:43926297478618 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926297490336:43926297490337 26036:26036 MARK(name(after HIP LaunchKernel)) -43926297494929:43926300281029 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926314660474:43926315541758 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926315542952:43926315542953 26036:26036 MARK(name(before HIP LaunchKernel)) -43926315555009:43926315612423 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926315614228:43926315614229 26036:26036 MARK(name(after HIP LaunchKernel)) -43926315627978:43926318385980 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926332791494:43926333657465 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926333658691:43926333658692 26036:26036 MARK(name(before HIP LaunchKernel)) -43926333672673:43926333728033 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926333730029:43926333730030 26036:26036 MARK(name(after HIP LaunchKernel)) -43926333734623:43926336515418 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926350895070:43926351757048 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926351758288:43926351758289 26036:26036 MARK(name(before HIP LaunchKernel)) -43926351770313:43926351831998 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926351833943:43926351833944 26036:26036 MARK(name(after HIP LaunchKernel)) -43926351847557:43926354611920 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926368998896:43926369881321 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926369882471:43926369882472 26036:26036 MARK(name(before HIP LaunchKernel)) -43926369894793:43926369938064 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926369939799:43926369939800 26036:26036 MARK(name(after HIP LaunchKernel)) -43926369954683:43926372738999 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926387115743:43926387975738 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926387976979:43926387976980 26036:26036 MARK(name(before HIP LaunchKernel)) -43926387988882:43926388050663 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926388056022:43926388056023 26036:26036 MARK(name(after HIP LaunchKernel)) -43926388070878:43926390836291 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926405217257:43926406081546 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926406082786:43926406082787 26036:26036 MARK(name(before HIP LaunchKernel)) -43926406095391:43926406142618 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926406154388:43926406154389 26036:26036 MARK(name(after HIP LaunchKernel)) -43926406159098:43926408937106 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926423313114:43926424175543 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926424176843:43926424176844 26036:26036 MARK(name(before HIP LaunchKernel)) -43926424193645:43926424246980 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926424248933:43926424248934 26036:26036 MARK(name(after HIP LaunchKernel)) -43926424253559:43926427041734 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926441433576:43926442295605 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926442296812:43926442296813 26036:26036 MARK(name(before HIP LaunchKernel)) -43926442309481:43926442351483 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926442353376:43926442353377 26036:26036 MARK(name(after HIP LaunchKernel)) -43926442368033:43926445143144 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926459520191:43926460382219 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926460383454:43926460383455 26036:26036 MARK(name(before HIP LaunchKernel)) -43926460395516:43926460443663 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926460455402:43926460455403 26036:26036 MARK(name(after HIP LaunchKernel)) -43926460459904:43926463235758 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926477621665:43926478483453 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926478484673:43926478484674 26036:26036 MARK(name(before HIP LaunchKernel)) -43926478497266:43926478553440 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926478555355:43926478555356 26036:26036 MARK(name(after HIP LaunchKernel)) -43926478559877:43926481338575 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926495714063:43926496565395 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926496566681:43926496566682 26036:26036 MARK(name(before HIP LaunchKernel)) -43926496579268:43926496626120 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926496627656:43926496627657 26036:26036 MARK(name(after HIP LaunchKernel)) -43926496642290:43926498033640 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926512423116:43926513273702 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926513274941:43926513274942 26036:26036 MARK(name(before HIP LaunchKernel)) -43926513287564:43926513344476 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926513346369:43926513346370 26036:26036 MARK(name(after HIP LaunchKernel)) -43926513350964:43926514744562 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926529133006:43926529980629 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926529981900:43926529981901 26036:26036 MARK(name(before HIP LaunchKernel)) -43926529993951:43926530036843 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926530038368:43926530038369 26036:26036 MARK(name(after HIP LaunchKernel)) -43926530053107:43926531439867 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926545824337:43926546672038 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926546673234:43926546673235 26036:26036 MARK(name(before HIP LaunchKernel)) -43926546689738:43926546746560 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926546748370:43926546748371 26036:26036 MARK(name(after HIP LaunchKernel)) -43926546752993:43926548160466 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926562541742:43926563387637 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926563388849:43926563388850 26036:26036 MARK(name(before HIP LaunchKernel)) -43926563400574:43926563447268 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926563448796:43926563448797 26036:26036 MARK(name(after HIP LaunchKernel)) -43926563463275:43926564868593 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926579245240:43926580088102 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926580089345:43926580089346 26036:26036 MARK(name(before HIP LaunchKernel)) -43926580106104:43926580159868 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926580161750:43926580161751 26036:26036 MARK(name(after HIP LaunchKernel)) -43926580166621:43926581566167 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926595943160:43926596822372 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926596823563:43926596823564 26036:26036 MARK(name(before HIP LaunchKernel)) -43926596835300:43926596882389 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926596894649:43926596894650 26036:26036 MARK(name(after HIP LaunchKernel)) -43926596899381:43926598297439 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926612679678:43926613524206 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926613525375:43926613525376 26036:26036 MARK(name(before HIP LaunchKernel)) -43926613537588:43926613594154 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926613596008:43926613596009 26036:26036 MARK(name(after HIP LaunchKernel)) -43926613600714:43926615000374 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926629390862:43926630237041 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926630238215:43926630238216 26036:26036 MARK(name(before HIP LaunchKernel)) -43926630250386:43926630293697 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926630295261:43926630295262 26036:26036 MARK(name(after HIP LaunchKernel)) -43926630310339:43926631704847 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926646087745:43926646935031 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926646936309:43926646936310 26036:26036 MARK(name(before HIP LaunchKernel)) -43926646948709:43926646999937 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926647001718:43926647001719 26036:26036 MARK(name(after HIP LaunchKernel)) -43926647006291:43926648448720 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926663055595:43926663910438 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926663911731:43926663911732 26036:26036 MARK(name(before HIP LaunchKernel)) -43926663926939:43926663980961 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926663982848:43926663982849 26036:26036 MARK(name(after HIP LaunchKernel)) -43926663990412:43926665394789 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926679774679:43926680623151 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926680624373:43926680624374 26036:26036 MARK(name(before HIP LaunchKernel)) -43926680637690:43926680700889 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926680702525:43926680702526 26036:26036 MARK(name(after HIP LaunchKernel)) -43926680716180:43926682100053 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926696493405:43926697361327 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926697362528:43926697362529 26036:26036 MARK(name(before HIP LaunchKernel)) -43926697374795:43926697418949 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926697420530:43926697420531 26036:26036 MARK(name(after HIP LaunchKernel)) -43926697435142:43926698827879 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926713211332:43926714080692 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926714081915:43926714081916 26036:26036 MARK(name(before HIP LaunchKernel)) -43926714097323:43926714146311 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926714148192:43926714148193 26036:26036 MARK(name(after HIP LaunchKernel)) -43926714152944:43926715552059 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926729935201:43926730784647 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926730785837:43926730785838 26036:26036 MARK(name(before HIP LaunchKernel)) -43926730798074:43926730854633 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926730856465:43926730856466 26036:26036 MARK(name(after HIP LaunchKernel)) -43926730861039:43926732266151 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926746645178:43926747490987 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926747492218:43926747492219 26036:26036 MARK(name(before HIP LaunchKernel)) -43926747504355:43926747559488 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926747561440:43926747561441 26036:26036 MARK(name(after HIP LaunchKernel)) -43926747579516:43926748969467 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926763348277:43926764198298 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926764201080:43926764201081 26036:26036 MARK(name(before HIP LaunchKernel)) -43926764213810:43926764267069 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926764268950:43926764268951 26036:26036 MARK(name(after HIP LaunchKernel)) -43926764273444:43926765671758 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926780055807:43926780898874 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926780900042:43926780900043 26036:26036 MARK(name(before HIP LaunchKernel)) -43926780912036:43926780955637 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926780957351:43926780957352 26036:26036 MARK(name(after HIP LaunchKernel)) -43926780971997:43926782371210 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926796760442:43926797611110 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926797612301:43926797612302 26036:26036 MARK(name(before HIP LaunchKernel)) -43926797625105:43926797667860 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926797669377:43926797669378 26036:26036 MARK(name(after HIP LaunchKernel)) -43926797684155:43926799079016 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926813471164:43926814319238 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926814320442:43926814320443 26036:26036 MARK(name(before HIP LaunchKernel)) -43926814332594:43926814389004 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926814390950:43926814390951 26036:26036 MARK(name(after HIP LaunchKernel)) -43926814395848:43926815796456 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926830182860:43926831027528 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926831028771:43926831028772 26036:26036 MARK(name(before HIP LaunchKernel)) -43926831041934:43926831098217 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926831100126:43926831100127 26036:26036 MARK(name(after HIP LaunchKernel)) -43926831104601:43926832504490 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926846900927:43926847758759 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926847759886:43926847759887 26036:26036 MARK(name(before HIP LaunchKernel)) -43926847771628:43926847819139 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926847835514:43926847835515 26036:26036 MARK(name(after HIP LaunchKernel)) -43926847840166:43926850614546 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926865002651:43926865868409 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926865869718:43926865869719 26036:26036 MARK(name(before HIP LaunchKernel)) -43926865883046:43926865935739 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926865937627:43926865937628 26036:26036 MARK(name(after HIP LaunchKernel)) -43926865942163:43926868722506 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926883102004:43926883965569 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926883966731:43926883966732 26036:26036 MARK(name(before HIP LaunchKernel)) -43926883978766:43926884041129 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926884043077:43926884043078 26036:26036 MARK(name(after HIP LaunchKernel)) -43926884047815:43926886827702 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926901215734:43926902076943 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926902078162:43926902078163 26036:26036 MARK(name(before HIP LaunchKernel)) -43926902094678:43926902147078 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926902148943:43926902148944 26036:26036 MARK(name(after HIP LaunchKernel)) -43926902153777:43926904937338 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926919314982:43926920173358 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926920174699:43926920174700 26036:26036 MARK(name(before HIP LaunchKernel)) -43926920186482:43926920229921 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926920231448:43926920231449 26036:26036 MARK(name(after HIP LaunchKernel)) -43926920246279:43926923029522 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926937425440:43926938305373 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926938306618:43926938306619 26036:26036 MARK(name(before HIP LaunchKernel)) -43926938318593:43926938375845 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926938377606:43926938377607 26036:26036 MARK(name(after HIP LaunchKernel)) -43926938382358:43926941168837 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926955548346:43926956411880 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926956413052:43926956413053 26036:26036 MARK(name(before HIP LaunchKernel)) -43926956425430:43926956472206 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926956473925:43926956473926 26036:26036 MARK(name(after HIP LaunchKernel)) -43926956488617:43926959272799 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926973659199:43926974540510 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926974541837:43926974541838 26036:26036 MARK(name(before HIP LaunchKernel)) -43926974554023:43926974601608 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926974613508:43926974613509 26036:26036 MARK(name(after HIP LaunchKernel)) -43926974617988:43926977399394 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43926991777579:43926992660536 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43926992661831:43926992661832 26036:26036 MARK(name(before HIP LaunchKernel)) -43926992674550:43926992717394 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43926992719151:43926992719152 26036:26036 MARK(name(after HIP LaunchKernel)) -43926992733639:43926995529618 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927009907399:43927010766525 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927010767814:43927010767815 26036:26036 MARK(name(before HIP LaunchKernel)) -43927010784266:43927010838401 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927010840335:43927010840336 26036:26036 MARK(name(after HIP LaunchKernel)) -43927010844940:43927013630373 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927028014785:43927028872184 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927028873374:43927028873375 26036:26036 MARK(name(before HIP LaunchKernel)) -43927028886168:43927028928568 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927028930119:43927028930120 26036:26036 MARK(name(after HIP LaunchKernel)) -43927028944889:43927031736014 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927046119830:43927046998627 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927046999940:43927046999941 26036:26036 MARK(name(before HIP LaunchKernel)) -43927047016421:43927047070221 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927047072042:43927047072043 26036:26036 MARK(name(after HIP LaunchKernel)) -43927047085472:43927049860008 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927064245364:43927065108724 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927065110082:43927065110083 26036:26036 MARK(name(before HIP LaunchKernel)) -43927065122103:43927065164606 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927065166114:43927065166115 26036:26036 MARK(name(after HIP LaunchKernel)) -43927065180644:43927067962938 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927082347039:43927083209538 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927083210726:43927083210727 26036:26036 MARK(name(before HIP LaunchKernel)) -43927083222728:43927083279396 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927083281314:43927083281315 26036:26036 MARK(name(after HIP LaunchKernel)) -43927083286064:43927086056626 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927100437312:43927101282469 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927101283620:43927101283621 26036:26036 MARK(name(before HIP LaunchKernel)) -43927101296386:43927101338015 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927101339539:43927101339540 26036:26036 MARK(name(after HIP LaunchKernel)) -43927101353985:43927102745388 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927117135006:43927117981844 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927117983014:43927117983015 26036:26036 MARK(name(before HIP LaunchKernel)) -43927117994607:43927118037901 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927118039472:43927118039473 26036:26036 MARK(name(after HIP LaunchKernel)) -43927118058142:43927119443038 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927133827385:43927134671954 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927134673179:43927134673180 26036:26036 MARK(name(before HIP LaunchKernel)) -43927134685198:43927134727615 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927134729164:43927134729165 26036:26036 MARK(name(after HIP LaunchKernel)) -43927134745242:43927136143016 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927150519330:43927151364667 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927151365955:43927151365956 26036:26036 MARK(name(before HIP LaunchKernel)) -43927151378743:43927151434654 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927151436582:43927151436583 26036:26036 MARK(name(after HIP LaunchKernel)) -43927151441223:43927152846934 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927167225401:43927168076782 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927168078140:43927168078141 26036:26036 MARK(name(before HIP LaunchKernel)) -43927168090432:43927168147435 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927168149232:43927168149233 26036:26036 MARK(name(after HIP LaunchKernel)) -43927168154120:43927169548661 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927183927169:43927184777601 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927184778963:43927184778964 26036:26036 MARK(name(before HIP LaunchKernel)) -43927184791025:43927184847441 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927184849661:43927184849662 26036:26036 MARK(name(after HIP LaunchKernel)) -43927184854622:43927186249511 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927200632043:43927201473364 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927201474527:43927201474528 26036:26036 MARK(name(before HIP LaunchKernel)) -43927201486386:43927201544155 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927201545973:43927201545974 26036:26036 MARK(name(after HIP LaunchKernel)) -43927201550639:43927202953592 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927217334059:43927218181690 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927218182942:43927218182943 26036:26036 MARK(name(before HIP LaunchKernel)) -43927218194738:43927218251440 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927218253315:43927218253316 26036:26036 MARK(name(after HIP LaunchKernel)) -43927218258088:43927219645270 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927234027885:43927234877916 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927234879970:43927234879971 26036:26036 MARK(name(before HIP LaunchKernel)) -43927234907091:43927234939497 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927234941047:43927234941048 26036:26036 MARK(name(after HIP LaunchKernel)) -43927234945356:43927236349176 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927250728700:43927251571647 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927251572908:43927251572909 26036:26036 MARK(name(before HIP LaunchKernel)) -43927251584594:43927251641544 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927251643508:43927251643509 26036:26036 MARK(name(after HIP LaunchKernel)) -43927251648224:43927253043153 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927267418718:43927268265260 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927268266469:43927268266470 26036:26036 MARK(name(before HIP LaunchKernel)) -43927268295843:43927268328556 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927268330536:43927268330537 26036:26036 MARK(name(after HIP LaunchKernel)) -43927268334924:43927269738450 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927284357344:43927285205745 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927285207087:43927285207088 26036:26036 MARK(name(before HIP LaunchKernel)) -43927285222080:43927285271558 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927285273896:43927285273897 26036:26036 MARK(name(after HIP LaunchKernel)) -43927285278508:43927286685878 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927301206744:43927302057748 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927302058937:43927302058938 26036:26036 MARK(name(before HIP LaunchKernel)) -43927302078387:43927302123262 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927302124935:43927302124936 26036:26036 MARK(name(after HIP LaunchKernel)) -43927302129494:43927303535506 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927318080313:43927318928853 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927318930326:43927318930327 26036:26036 MARK(name(before HIP LaunchKernel)) -43927318945494:43927318995301 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927319001334:43927319001335 26036:26036 MARK(name(after HIP LaunchKernel)) -43927319006464:43927320412032 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927334962934:43927335807302 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927335808416:43927335808417 26036:26036 MARK(name(before HIP LaunchKernel)) -43927335822046:43927335885614 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927335887536:43927335887537 26036:26036 MARK(name(after HIP LaunchKernel)) -43927335892238:43927337291279 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927351671072:43927352523166 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927352524432:43927352524433 26036:26036 MARK(name(before HIP LaunchKernel)) -43927352537095:43927352596415 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927352598421:43927352598422 26036:26036 MARK(name(after HIP LaunchKernel)) -43927352603057:43927354003565 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927368414908:43927369255760 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927369256893:43927369256894 26036:26036 MARK(name(before HIP LaunchKernel)) -43927369269019:43927369329169 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927369331003:43927369331004 26036:26036 MARK(name(after HIP LaunchKernel)) -43927369335927:43927370739168 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927385135193:43927385999734 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927386000948:43927386000949 26036:26036 MARK(name(before HIP LaunchKernel)) -43927386013206:43927386070933 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927386073018:43927386073019 26036:26036 MARK(name(after HIP LaunchKernel)) -43927386077754:43927387475878 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927401861573:43927402709153 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927402710364:43927402710365 26036:26036 MARK(name(before HIP LaunchKernel)) -43927402722989:43927402783987 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927402785720:43927402785721 26036:26036 MARK(name(after HIP LaunchKernel)) -43927402799813:43927404185085 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927418562796:43927419411814 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927419413145:43927419413146 26036:26036 MARK(name(before HIP LaunchKernel)) -43927419425552:43927419468076 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927419469816:43927419469817 26036:26036 MARK(name(after HIP LaunchKernel)) -43927419484467:43927420831010 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927435210977:43927436054427 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927436055699:43927436055700 26036:26036 MARK(name(before HIP LaunchKernel)) -43927436068084:43927436126280 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927436127935:43927436127936 26036:26036 MARK(name(after HIP LaunchKernel)) -43927436141483:43927437527385 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927451904021:43927452759504 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927452760765:43927452760766 26036:26036 MARK(name(before HIP LaunchKernel)) -43927452772676:43927452815354 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927452817109:43927452817110 26036:26036 MARK(name(after HIP LaunchKernel)) -43927452832346:43927454217527 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927468606039:43927469485647 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927469486946:43927469486947 26036:26036 MARK(name(before HIP LaunchKernel)) -43927469499156:43927469556925 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927469558799:43927469558800 26036:26036 MARK(name(after HIP LaunchKernel)) -43927469576540:43927472356678 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927486730015:43927487591316 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927487592712:43927487592713 26036:26036 MARK(name(before HIP LaunchKernel)) -43927487605035:43927487651711 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927487653487:43927487653488 26036:26036 MARK(name(after HIP LaunchKernel)) -43927487668321:43927490445227 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927504835167:43927505693771 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927505694902:43927505694903 26036:26036 MARK(name(before HIP LaunchKernel)) -43927505710793:43927505768577 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927505770415:43927505770416 26036:26036 MARK(name(after HIP LaunchKernel)) -43927505775025:43927508562617 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927522943086:43927523807232 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927523808390:43927523808391 26036:26036 MARK(name(before HIP LaunchKernel)) -43927523820671:43927523864025 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927523865609:43927523865610 26036:26036 MARK(name(after HIP LaunchKernel)) -43927523880073:43927526656063 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927541044737:43927541902426 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927541903644:43927541903645 26036:26036 MARK(name(before HIP LaunchKernel)) -43927541915068:43927541963190 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927541964916:43927541964917 26036:26036 MARK(name(after HIP LaunchKernel)) -43927541979704:43927544753179 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927559128993:43927559991723 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927559993052:43927559993053 26036:26036 MARK(name(before HIP LaunchKernel)) -43927560010181:43927560068164 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927560069843:43927560069844 26036:26036 MARK(name(after HIP LaunchKernel)) -43927560074486:43927562856810 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927577240175:43927578099570 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927578100828:43927578100829 26036:26036 MARK(name(before HIP LaunchKernel)) -43927578112669:43927578160246 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927578161886:43927578161887 26036:26036 MARK(name(after HIP LaunchKernel)) -43927578176453:43927580946777 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927595322188:43927596187989 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927596189151:43927596189152 26036:26036 MARK(name(before HIP LaunchKernel)) -43927596202369:43927596255121 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927596257033:43927596257034 26036:26036 MARK(name(after HIP LaunchKernel)) -43927596262533:43927599041030 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927613430488:43927614290596 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927614291817:43927614291818 26036:26036 MARK(name(before HIP LaunchKernel)) -43927614303289:43927614346783 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927614348384:43927614348385 26036:26036 MARK(name(after HIP LaunchKernel)) -43927614362978:43927617142560 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927631520235:43927632383794 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927632385106:43927632385107 26036:26036 MARK(name(before HIP LaunchKernel)) -43927632400212:43927632453209 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927632455038:43927632455039 26036:26036 MARK(name(after HIP LaunchKernel)) -43927632459828:43927635240098 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927649630393:43927650489274 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927650490550:43927650490551 26036:26036 MARK(name(before HIP LaunchKernel)) -43927650501929:43927650549583 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927650551126:43927650551127 26036:26036 MARK(name(after HIP LaunchKernel)) -43927650565619:43927653342484 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927667721323:43927668587741 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927668588959:43927668588960 26036:26036 MARK(name(before HIP LaunchKernel)) -43927668600815:43927668663069 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927668665053:43927668665054 26036:26036 MARK(name(after HIP LaunchKernel)) -43927668670105:43927671453022 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927685838820:43927686701057 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927686702234:43927686702235 26036:26036 MARK(name(before HIP LaunchKernel)) -43927686713823:43927686757879 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927686759588:43927686759589 26036:26036 MARK(name(after HIP LaunchKernel)) -43927686774441:43927689556138 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927703934120:43927704804352 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927704810139:43927704810140 26036:26036 MARK(name(before HIP LaunchKernel)) -43927704822333:43927704867948 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927704869987:43927704869988 26036:26036 MARK(name(after HIP LaunchKernel)) -43927704874494:43927707707729 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927722297339:43927723146133 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927723147476:43927723147477 26036:26036 MARK(name(before HIP LaunchKernel)) -43927723163247:43927723214123 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927723216175:43927723216176 26036:26036 MARK(name(after HIP LaunchKernel)) -43927723220937:43927724629931 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927739011523:43927739859423 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927739860685:43927739860686 26036:26036 MARK(name(before HIP LaunchKernel)) -43927739874330:43927739923637 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927739925419:43927739925420 26036:26036 MARK(name(after HIP LaunchKernel)) -43927739930026:43927741337783 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927755926069:43927756799938 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927756801378:43927756801379 26036:26036 MARK(name(before HIP LaunchKernel)) -43927756816208:43927756865779 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927756867802:43927756867803 26036:26036 MARK(name(after HIP LaunchKernel)) -43927756872511:43927758278389 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927772698836:43927773540822 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927773542112:43927773542113 26036:26036 MARK(name(before HIP LaunchKernel)) -43927773555938:43927773615351 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927773617028:43927773617029 26036:26036 MARK(name(after HIP LaunchKernel)) -43927773630611:43927775023509 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927789419278:43927790270237 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927790271383:43927790271384 26036:26036 MARK(name(before HIP LaunchKernel)) -43927790285789:43927790339397 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927790341306:43927790341307 26036:26036 MARK(name(after HIP LaunchKernel)) -43927790345995:43927791746659 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927806135057:43927806980352 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927806981544:43927806981545 26036:26036 MARK(name(before HIP LaunchKernel)) -43927806993683:43927807055412 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927807057236:43927807057237 26036:26036 MARK(name(after HIP LaunchKernel)) -43927807070795:43927808461177 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927822842919:43927823692101 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927823693524:43927823693525 26036:26036 MARK(name(before HIP LaunchKernel)) -43927823705858:43927823762705 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927823764605:43927823764606 26036:26036 MARK(name(after HIP LaunchKernel)) -43927823769245:43927825169022 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927839565623:43927840416010 26036:26036 hipMemcpy(dst(0x902800000) src(0x1482170) size(0x400000) kind(1)) -43927840417186:43927840417187 26036:26036 MARK(name(before HIP LaunchKernel)) -43927840429458:43927840472555 26036:26036 hipModuleLaunchKernel(kernel(matrixTranspose(float*, float*, int)) stream((nil))) -43927840474268:43927840474269 26036:26036 MARK(name(after HIP LaunchKernel)) -43927840492835:43927841877272 26036:26036 hipMemcpy(dst(0x1882180) src(0x903000000) size(0x400000) kind(2)) -43927856258320:43927856338177 26036:26036 hipFree(ptr(0x902800000)) -43927856344212:43927856363353 26036:26036 hipFree(ptr(0x903000000)) -43925827907260:43925827907776 26036:26036 hsa_agent_get_info(, 17, 0x7fff229af804) = 0 -43925827909268:43925827909715 26036:26036 hsa_agent_get_info(, 17, 0x7fff229af804) = 0 -43925827909268:43925827910576 26036:26036 hsa_iterate_agents(1, 0x1098a28) = 0 -43925827911767:43925827912109 26036:26036 hsa_agent_get_info(, 17, 0x7fff229afa0c) = 0 -43925827911767:43925827912843 26036:26036 hsa_iterate_agents(1, 0x1098a20) = 1 -43925827915951:43925827916343 26036:26036 hsa_agent_get_info(, 4, 0x7fff229af720) = 0 -43925827917319:43925827920422 26036:26036 hsa_agent_get_info(, 0, 0x7fff229af6e0) = 0 -43925827921199:43925827921566 26036:26036 hsa_agent_get_info(, 16, 0x1091a98) = 0 -43925827934105:43925827934535 26036:26036 hsa_agent_get_info(, 21, 0x1091a30) = 0 -43925827935322:43925827935660 26036:26036 hsa_agent_get_info(, 22, 0x1091a32) = 0 -43925827936471:43925827936824 26036:26036 hsa_agent_get_info(, 14, 0x10918d0) = 0 -43925827938465:43925827938992 26036:26036 hsa_amd_profiling_async_copy_enable() = 0 -43925827941816:43925827942418 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af3ac) = 0 -43925827943259:43925827943604 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af3ac) = 0 -43925827944348:43925827944686 26036:26036 hsa_amd_memory_pool_get_info(, 2, 0x7fff229af3b0) = 0 -43925827944348:43925827945418 26036:26036 hsa_amd_agent_iterate_memory_pools(, 1, 0x10918c8) = 1 -43925827946556:43925827946898 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af204) = 0 -43925827947640:43925827947987 26036:26036 hsa_amd_memory_pool_get_info(, 1, 0x7fff229af1f4) = 0 -43925827948732:43925827949072 26036:26036 hsa_amd_memory_pool_get_info(, 2, 0x7fff229af1f8) = 0 -43925827949993:43925827950338 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af204) = 0 -43925827949993:43925827951093 26036:26036 hsa_amd_agent_iterate_memory_pools(, 1, 0x1091988) = 0 -43925827952253:43925827952582 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af3bc) = 0 -43925827953322:43925827953670 26036:26036 hsa_amd_memory_pool_get_info(, 1, 0x7fff229af22c) = 0 -43925827954406:43925827954745 26036:26036 hsa_amd_memory_pool_get_info(, 2, 0x7fff229af220) = 0 -43925827955763:43925827956104 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af3bc) = 0 -43925827956842:43925827957185 26036:26036 hsa_amd_memory_pool_get_info(, 1, 0x7fff229af22c) = 0 -43925827957917:43925827958253 26036:26036 hsa_amd_memory_pool_get_info(, 2, 0x7fff229af220) = 0 -43925827957917:43925827959000 26036:26036 hsa_amd_agent_iterate_memory_pools(, 1, 0x1091988) = 0 -43925827960909:43925828052119 26036:26036 hsa_amd_memory_pool_allocate(, , , 0x7fff229af4b8) = 0 -43925828055031:43925828068247 26036:26036 hsa_amd_agents_allow_access(, 0x10918c0, 0, 0x2f00000) = 0 -43925828074900:43925828075371 26036:26036 hsa_agent_get_info(, 8, 0x10919e4) = 0 -43925828076125:43925828076495 26036:26036 hsa_agent_get_info(, 7, 0x10919e8) = 0 -43925828077253:43925828077605 26036:26036 hsa_agent_get_info(, 4, 0x7fff229af920) = 0 -43925828079890:43925828080303 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af26c) = 0 -43925828081451:43925828081800 26036:26036 hsa_amd_memory_pool_get_info(, 1, 0x7fff229af268) = 0 -43925828082615:43925828082954 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af26c) = 0 -43925828083745:43925828084089 26036:26036 hsa_amd_memory_pool_get_info(, 1, 0x7fff229af268) = 0 -43925828083745:43925828084871 26036:26036 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fff229af4b0) = 0 -43925828086103:43925828086463 26036:26036 hsa_agent_get_info(, 17, 0x7fff229af294) = 0 -43925828087232:43925828087590 26036:26036 hsa_agent_get_info(, 17, 0x7fff229af294) = 0 -43925828087232:43925828088413 26036:26036 hsa_iterate_agents(1, 0x7fff229af410) = 0 -43925828089425:43925828564879 26036:26036 hsa_amd_memory_pool_allocate(, , , 0x1091e40) = 0 -43925828566109:43925828587729 26036:26036 hsa_amd_agents_allow_access(, 0x1091f20, 0, 0x3200000) = 0 -43925828589808:43925828592128 26036:26036 hsa_signal_create(0, , 0, 0x1091e60) = 0 -43925828592902:43925828593821 26036:26036 hsa_signal_create(0, , 0, 0x1091e80) = 0 -43925828594651:43925829058680 26036:26036 hsa_amd_memory_pool_allocate(, , , 0x1091e48) = 0 -43925829059856:43925829079662 26036:26036 hsa_amd_agents_allow_access(, 0x1091f20, 0, 0x3a00000) = 0 -43925829080624:43925829081763 26036:26036 hsa_signal_create(0, , 0, 0x1091e68) = 0 -43925829082552:43925829083404 26036:26036 hsa_signal_create(0, , 0, 0x1091e88) = 0 -43925829085142:43925829085627 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af26c) = 0 -43925829086609:43925829086946 26036:26036 hsa_amd_memory_pool_get_info(, 1, 0x7fff229af268) = 0 -43925829087782:43925829088163 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229af26c) = 0 -43925829088967:43925829089294 26036:26036 hsa_amd_memory_pool_get_info(, 1, 0x7fff229af268) = 0 -43925829088967:43925829090068 26036:26036 hsa_amd_agent_iterate_memory_pools(, 1, 0x7fff229af4b0) = 0 -43925829091417:43925829091830 26036:26036 hsa_agent_get_info(, 17, 0x7fff229af294) = 0 -43925829092582:43925829093026 26036:26036 hsa_agent_get_info(, 17, 0x7fff229af294) = 0 -43925829092582:43925829093838 26036:26036 hsa_iterate_agents(1, 0x7fff229af410) = 0 -43925829096308:43925829563188 26036:26036 hsa_amd_memory_pool_allocate(, , , 0x10924f0) = 0 -43925829564492:43925829584042 26036:26036 hsa_amd_agents_allow_access(, 0x1091f20, 0, 0x4200000) = 0 -43925829584951:43925829586054 26036:26036 hsa_signal_create(0, , 0, 0x1092510) = 0 -43925829586806:43925829587740 26036:26036 hsa_signal_create(0, , 0, 0x1092530) = 0 -43925829588552:43925830052914 26036:26036 hsa_amd_memory_pool_allocate(, , , 0x10924f8) = 0 -43925830054109:43925830073789 26036:26036 hsa_amd_agents_allow_access(, 0x1091f20, 0, 0x4a00000) = 0 -43925830074677:43925830076108 26036:26036 hsa_signal_create(0, , 0, 0x1092518) = 0 -43925830076868:43925830077742 26036:26036 hsa_signal_create(0, , 0, 0x1092538) = 0 -43925830083888:43925830103443 26036:26036 hsa_amd_memory_lock(0x7f210cdf7380, , 0x1078270, 1, 0x7f210cdf7388) = 0 -43925830113078:43925830113479 26036:26036 hsa_agent_get_info(, 17, 0x7fff229afd44) = 0 -43925830113078:43925830114245 26036:26036 hsa_iterate_agents(1, 0x7f210c1ae1d8) = 1 -43925830116556:43925830117479 26036:26036 hsa_agent_get_info(, 40962, 0x1092ca8) = 0 -43925830119017:43925830119358 26036:26036 hsa_agent_get_info(, 17, 0x7fff229afb5c) = 0 -43925830120141:43925830120492 26036:26036 hsa_agent_get_info(, 17, 0x7fff229afb5c) = 0 -43925830120141:43925830121231 26036:26036 hsa_iterate_agents(1, 0x7fff229afcbc) = 0 -43925830121982:43925830122521 26036:26036 hsa_agent_get_info(, 40969, 0x1092cb0) = 0 -43925830123277:43925830131878 26036:26036 hsa_agent_get_info(, 0, 0x7fff229afd30) = 0 -43925830134227:43925830134616 26036:26036 hsa_agent_get_info(, 16, 0x7fff229afcec) = 0 -43925830135371:43925830135724 26036:26036 hsa_agent_get_info(, 6, 0x1092dc4) = 0 -43925830136477:43925830136838 26036:26036 hsa_agent_get_info(, 8, 0x1092dc8) = 0 -43925830137663:43925830138067 26036:26036 hsa_agent_get_info(, 7, 0x7fff229afcae) = 0 -43925830138822:43925830139191 26036:26036 hsa_agent_get_info(, 9, 0x7fff229afcd0) = 0 -43925830139944:43925830140310 26036:26036 hsa_agent_get_info(, 40963, 0x1092de4) = 0 -43925830141823:43925830142233 26036:26036 hsa_system_get_info(3, 0x7fff229afce0) = 0 -43925830142981:43925830143346 26036:26036 hsa_agent_get_info(, 40966, 0x7fff229afcac) = 0 -43925830144097:43925830144510 26036:26036 hsa_agent_get_info(, 40975, 0x1092e1c) = 0 -43925830145273:43925830145634 26036:26036 hsa_agent_get_info(, 40962, 0x1092e00) = 0 -43925830146387:43925830146753 26036:26036 hsa_agent_get_info(, 18, 0x7fff229afd20) = 0 -43925830147671:43925830148043 26036:26036 hsa_agent_get_info(, 40970, 0x7fff229afcb8) = 0 -43925830153569:43925830154028 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229afb1c) = 0 -43925830156470:43925830156847 26036:26036 hsa_amd_memory_pool_get_info(, 0, 0x7fff229afb1c) = 0 -43925830157844:43925830158190 26036:26036 hsa_amd_memory_pool_get_info(, 2, 0x1092db8) = 0 -43925830157844:43925830158933 26036:26036 hsa_amd_agent_iterate_memory_pools(, 1, 0x1092cb0) = 0 -43925830173429:43925830174730 26036:26036 hsa_signal_create(1, , 0x7fff229af9e8, 0x1093068) = 0 -43925830180458:43925830181007 26036:26036 hsa_region_get_info(, 2, 0x1092db0) = 0 -43925830181767:43925830182216 26036:26036 hsa_region_get_info(, 40963, 0x1092de8) = 0 -43925830182954:43925830183294 26036:26036 hsa_region_get_info(, 40962, 0x1092dec) = 0 -43925830184037:43925830184449 26036:26036 hsa_agent_get_info(, 4, 0x7fff229afcb4) = 0 -43925830185227:43925830231206 26036:26036 hsa_agent_get_info(, 12288, 0x1092e48) = 0 -43925830232192:43925830232633 26036:26036 hsa_agent_get_info(, 12291, 0x1092e4c) = 0 -43925830233396:43925830233778 26036:26036 hsa_agent_get_info(, 12295, 0x1092e54) = 0 -43925830234515:43925830234875 26036:26036 hsa_agent_get_info(, 40974, 0x7fff229afd10) = 0 -43925830235624:43925830235978 26036:26036 hsa_agent_get_info(, 19, 0x7fff229afcc8) = 0 -43925830237667:43925830260280 26036:26036 hsa_isa_get_info_alt(, 0, 0x7fff229afcc0) = 0 -43925830263686:43925830267460 26036:26036 hsa_isa_get_info_alt(, 1, 0x1091cf0) = 0 -43925830287332:43925830287723 26036:26036 hsa_system_get_info(3, 0x7fff229b0050) = 0 -43925830288654:43925830289297 26036:26036 hsa_system_get_info(2, 0x7fff229b0080) = 0 -43925830293485:43925830294136 26036:26036 hsa_system_get_info(2, 0x7fff229b0080) = 0 -43925832517439:43925832518256 26036:26036 hsa_system_get_info(2, 0x7fff229b0080) = 0 -43925832528316:43925832564744 26036:26036 hsa_amd_memory_pool_allocate(, , , 0x7fff229afe48) = 0 -43925832569077:43925832569746 26036:26036 hsa_system_get_info(2, 0x7fff229b0080) = 0 -43925832572520:43925832573168 26036:26036 hsa_system_get_info(2, 0x7fff229b0080) = 0 -43925832574584:43925832593809 26036:26036 hsa_amd_memory_pool_allocate(, , , 0x7fff229afe48) = 0 -43925832595008:43925832595641 26036:26036 hsa_system_get_info(2, 0x7fff229b0080) = 0 -43925832605937:43925832606606 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43925832612296:43925832613779 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43925832614775:43925832615287 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43925832617712:43925832618278 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43925832619045:43925832619419 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43925832620973:43925832621295 26036:26036 hsa_agent_get_info(, 17, 0x7fff229afd04) = 0 -43925832620973:43925832622025 26036:26036 hsa_iterate_agents(1, 0x7fff229afe60) = 1 -43925832623761:43925832624206 26036:26036 hsa_region_get_info(, 0, 0x7fff229afe5c) = 0 -43925832625012:43925832625351 26036:26036 hsa_region_get_info(, 1, 0x7fff229afe58) = 0 -43925832626123:43925832626460 26036:26036 hsa_region_get_info(, 0, 0x7fff229afe5c) = 0 -43925832627190:43925832637619 26036:26036 hsa_region_get_info(, 1, 0x7fff229afe58) = 0 -43925832627190:43925832638514 26036:26036 hsa_agent_iterate_regions(, 1, 0x7fff229affa0) = 1 -43925832640170:43925833166775 26036:26036 hsa_memory_allocate(, , 0x7fff229affa8) = 0 -43925833168812:43925833169178 26036:26036 hsa_agent_get_info(, 17, 0x7fff229afd04) = 0 -43925833168812:43925833169954 26036:26036 hsa_iterate_agents(1, 0x7fff229afe60) = 1 -43925833171326:43925833173421 26036:26036 hsa_signal_create(1, , 0x7fff229affa8, 0x7fff229affa0) = 0 -43925833415303:43925833415884 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43925833417464:43925837539074 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43925837541709:43925837939048 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43925837940414:43925837941068 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43925942670138:43925942672376 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925942813755:43925942814416 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946129693:43925946131688 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946136572:43925946137370 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946139394:43925946140098 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946142070:43925946142690 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946189940:43925946190487 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946192653:43925946193182 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946195367:43925946195880 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946197734:43925946198232 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946244898:43925946245429 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946247452:43925946248036 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946256881:43925946257416 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946259630:43925946260165 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946307469:43925946308028 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946309901:43925946310517 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946312379:43925946312887 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946314731:43925946315249 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946361990:43925946362519 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946364705:43925946365209 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946367186:43925946367753 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946369743:43925946370313 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946415992:43925946416511 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946418392:43925946418975 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946420754:43925946421264 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946423095:43925946423616 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946470366:43925946470878 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946472683:43925946473205 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946474990:43925946475512 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946477572:43925946478077 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946524430:43925946524984 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946526853:43925946527374 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946529065:43925946529584 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946531325:43925946531835 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946578543:43925946579104 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946581154:43925946581670 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946583732:43925946584190 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946586114:43925946586631 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946737589:43925946738202 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946740934:43925946741435 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946746106:43925946746756 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946749179:43925946749672 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946794062:43925946794598 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946796344:43925946796846 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946798738:43925946799235 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946800963:43925946801586 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946845114:43925946845615 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946847486:43925946847998 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946849758:43925946850231 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946851848:43925946852337 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946926009:43925946926564 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946929014:43925946929505 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946931481:43925946932002 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946934262:43925946934743 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925946978845:43925946979355 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925946981080:43925946981641 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925946983468:43925946983953 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925946985602:43925946986085 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925947029251:43925947029781 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925947031530:43925947032143 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925947034023:43925947034517 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925947036375:43925947036867 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925947080851:43925947081441 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925947083205:43925947083719 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925947085411:43925947085959 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925947087997:43925947088496 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925947132734:43925947133248 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925947135515:43925947136003 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925947138207:43925947138911 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925947142318:43925947142905 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925947187541:43925947188054 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925947189761:43925947190255 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925947192157:43925947192642 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925947194392:43925947194869 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925947237750:43925947238282 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925947239969:43925947240478 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925947242154:43925947242655 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925947244217:43925947244721 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43925947289322:43925947289837 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx803, 0x7fff229affc0) = 0 -43925947291608:43925947292105 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx900, 0x7fff229affc0) = 0 -43925947293989:43925947294489 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx906, 0x7fff229affc0) = 0 -43925947296294:43925947296778 26036:26036 hsa_isa_from_name(amdgcn-amd-amdhsa--gfx908, 0x7fff229affc0) = 0 -43926006421738:43926006429823 26036:26036 hsa_executable_create_alt(1, 0, -43926086100741:43926086103267 26036:26036 hsa_code_object_reader_create_from_memory(0x7f20f40d2380, , 0x2149550) = 0 -43926086106442:43926086272707 26036:26036 hsa_executable_load_agent_code_object(, , , -43926086274903:43926086300304 26036:26036 hsa_executable_freeze(, -43926086307830:43926086309182 26036:26036 hsa_executable_create_alt(1, 0, -43926086332728:43926086333229 26036:26036 hsa_code_object_reader_create_from_memory(0x209fbd0, , 0x7f20f4515840) = 0 -43926086334172:43926086401120 26036:26036 hsa_executable_load_agent_code_object(, , , -43926086402448:43926086420221 26036:26036 hsa_executable_freeze(, -43926086422849:43926086423791 26036:26036 hsa_executable_create_alt(1, 0, -43926086435023:43926086435520 26036:26036 hsa_code_object_reader_create_from_memory(0x20a1140, , 0x7f2091d08fd0) = 0 -43926086436371:43926086513005 26036:26036 hsa_executable_load_agent_code_object(, , , -43926086514290:43926086531259 26036:26036 hsa_executable_freeze(, -43926086533851:43926086534751 26036:26036 hsa_executable_create_alt(1, 0, -43926086545153:43926086545558 26036:26036 hsa_code_object_reader_create_from_memory(0x20a26b0, , 0x7f20f401c2e0) = 0 -43926086546436:43926086620754 26036:26036 hsa_executable_load_agent_code_object(, , , -43926086623558:43926086640585 26036:26036 hsa_executable_freeze(, -43926086643101:43926086644051 26036:26036 hsa_executable_create_alt(1, 0, -43926086654273:43926086654661 26036:26036 hsa_code_object_reader_create_from_memory(0x20a3c20, , 0x21e71e0) = 0 -43926086655483:43926086728782 26036:26036 hsa_executable_load_agent_code_object(, , , -43926086729989:43926086747033 26036:26036 hsa_executable_freeze(, -43926086749715:43926086750565 26036:26036 hsa_executable_create_alt(1, 0, -43926086760821:43926086761232 26036:26036 hsa_code_object_reader_create_from_memory(0x20a5190, , 0x2186430) = 0 -43926086762041:43926086834322 26036:26036 hsa_executable_load_agent_code_object(, , , -43926086835523:43926086852537 26036:26036 hsa_executable_freeze(, -43926086854967:43926086855788 26036:26036 hsa_executable_create_alt(1, 0, -43926086865879:43926086866265 26036:26036 hsa_code_object_reader_create_from_memory(0x20a6700, , 0x7f20f4041e20) = 0 -43926086867086:43926086939353 26036:26036 hsa_executable_load_agent_code_object(, , , -43926086940585:43926086957474 26036:26036 hsa_executable_freeze(, -43926086959882:43926086960706 26036:26036 hsa_executable_create_alt(1, 0, -43926086970414:43926086970811 26036:26036 hsa_code_object_reader_create_from_memory(0x20a7c70, , 0x7f20f4049880) = 0 -43926086971629:43926087032040 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087033255:43926087049968 26036:26036 hsa_executable_freeze(, -43926087052435:43926087053412 26036:26036 hsa_executable_create_alt(1, 0, -43926087063273:43926087063692 26036:26036 hsa_code_object_reader_create_from_memory(0x20a91e0, , 0x7f20f408a530) = 0 -43926087064499:43926087113908 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087115158:43926087131977 26036:26036 hsa_executable_freeze(, -43926087134755:43926087135417 26036:26036 hsa_executable_create_alt(1, 0, -43926087152807:43926087153253 26036:26036 hsa_code_object_reader_create_from_memory(0x20d6910, , 0x7f20f40bb900) = 0 -43926087154091:43926087223174 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087224488:43926087242757 26036:26036 hsa_executable_freeze(, -43926087245466:43926087246422 26036:26036 hsa_executable_create_alt(1, 0, -43926087257396:43926087257820 26036:26036 hsa_code_object_reader_create_from_memory(0x20d1a50, , 0x7f20f40bc010) = 0 -43926087258665:43926087310536 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087313394:43926087330448 26036:26036 hsa_executable_freeze(, -43926087332882:43926087333790 26036:26036 hsa_executable_create_alt(1, 0, -43926087343806:43926087344216 26036:26036 hsa_code_object_reader_create_from_memory(0x20d2fc0, , 0x7f20f40e81a0) = 0 -43926087345041:43926087395324 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087396555:43926087413368 26036:26036 hsa_executable_freeze(, -43926087415815:43926087416714 26036:26036 hsa_executable_create_alt(1, 0, -43926087428051:43926087428466 26036:26036 hsa_code_object_reader_create_from_memory(0x20acd10, , 0x7f20f4103e90) = 0 -43926087429302:43926087484456 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087485728:43926087503019 26036:26036 hsa_executable_freeze(, -43926087505565:43926087506384 26036:26036 hsa_executable_create_alt(1, 0, -43926087517409:43926087517816 26036:26036 hsa_code_object_reader_create_from_memory(0x20aa750, , 0x7f2092d400d0) = 0 -43926087518655:43926087570539 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087571800:43926087588792 26036:26036 hsa_executable_freeze(, -43926087591309:43926087592117 26036:26036 hsa_executable_create_alt(1, 0, -43926087602196:43926087602594 26036:26036 hsa_code_object_reader_create_from_memory(0x7f20f40d64a0, , 0x7f2092dc45a0) = 0 -43926087603422:43926087652792 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087654012:43926087670919 26036:26036 hsa_executable_freeze(, -43926087673380:43926087674221 26036:26036 hsa_executable_create_alt(1, 0, -43926087684453:43926087684912 26036:26036 hsa_code_object_reader_create_from_memory(0x20af2d0, , 0x7f2092db16f0) = 0 -43926087685750:43926087734323 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087735525:43926087752596 26036:26036 hsa_executable_freeze(, -43926087755007:43926087756046 26036:26036 hsa_executable_create_alt(1, 0, -43926087765964:43926087766423 26036:26036 hsa_code_object_reader_create_from_memory(0x20b0840, , 0x7f2092d8cd90) = 0 -43926087767250:43926087815873 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087817088:43926087834083 26036:26036 hsa_executable_freeze(, -43926087836861:43926087837543 26036:26036 hsa_executable_create_alt(1, 0, -43926087847719:43926087848137 26036:26036 hsa_code_object_reader_create_from_memory(0x20d4530, , 0x7f2092de4ba0) = 0 -43926087848938:43926087899051 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087900280:43926087917626 26036:26036 hsa_executable_freeze(, -43926087921452:43926087922348 26036:26036 hsa_executable_create_alt(1, 0, -43926087932568:43926087932975 26036:26036 hsa_code_object_reader_create_from_memory(0x20db290, , 0x7f2092e08930) = 0 -43926087933819:43926087983380 26036:26036 hsa_executable_load_agent_code_object(, , , -43926087984607:43926088010294 26036:26036 hsa_executable_freeze(, -43926088023052:43926088023980 26036:26036 hsa_executable_create_alt(1, 0, -43926088034985:43926088035479 26036:26036 hsa_code_object_reader_create_from_memory(0x20dc800, , 0x7f2092e14a90) = 0 -43926088036321:43926088098329 26036:26036 hsa_executable_load_agent_code_object(, , , -43926088099583:43926088116689 26036:26036 hsa_executable_freeze(, -43926088149891:43926088150634 26036:26036 hsa_executable_create_alt(1, 0, -43926088163192:43926088163600 26036:26036 hsa_code_object_reader_create_from_memory(0x11d56e0, , 0x7f2092e2e800) = 0 -43926088164436:43926088222226 26036:26036 hsa_executable_load_agent_code_object(, , , -43926088223507:43926088241490 26036:26036 hsa_executable_freeze(, -43926088244437:43926088245538 26036:26036 hsa_executable_create_alt(1, 0, -43926088257938:43926088258370 26036:26036 hsa_code_object_reader_create_from_memory(0x2210cd0, , 0x7f2092e3c730) = 0 -43926088259220:43926088316014 26036:26036 hsa_executable_load_agent_code_object(, , , -43926088317259:43926088334828 26036:26036 hsa_executable_freeze(, -43926088317259:43926088338787 26036:26036 hsa_agent_iterate_isas(, 1, 0x7fff229aff08) = 0 -43926088341893:43926088342792 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088343594:43926088343977 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088344771:43926088345152 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088345909:43926088346308 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088347069:43926088347448 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088348213:43926088348582 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088349339:43926088349705 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088350475:43926088350851 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088351608:43926088351998 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088354210:43926088354704 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088355654:43926088356012 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088358400:43926088358821 26036:26036 hsa_executable_symbol_get_info(, 2, 0x2debd60) = 0 -43926088360095:43926088360455 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088361239:43926088361587 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088362399:43926088362751 26036:26036 hsa_executable_symbol_get_info(, 2, 0x7f2092b26b10) = 0 -43926088363827:43926088364179 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088364944:43926088365295 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088366103:43926088366472 26036:26036 hsa_executable_symbol_get_info(, 2, 0x7f2092b97ee0) = 0 -43926088367358:43926088367707 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088368469:43926088368807 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088369606:43926088369966 26036:26036 hsa_executable_symbol_get_info(, 2, 0x212fa20) = 0 -43926088371062:43926088371409 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088372182:43926088372524 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088373380:43926088373731 26036:26036 hsa_executable_symbol_get_info(, 2, 0x7f20f59197a0) = 0 -43926088374799:43926088375151 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088375913:43926088376262 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088377069:43926088377414 26036:26036 hsa_executable_symbol_get_info(, 2, 0x7f2092cb1410) = 0 -43926088377069:43926088378348 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088379116:43926088379509 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088380282:43926088380652 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088381849:43926088382198 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088382958:43926088383296 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088384107:43926088384476 26036:26036 hsa_executable_symbol_get_info(, 2, 0x7f2092cb2580) = 0 -43926088384107:43926088385364 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088386127:43926088386494 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088387254:43926088387629 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088388391:43926088388764 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088389522:43926088389889 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088390648:43926088391014 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088391775:43926088392152 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088393760:43926088394130 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088395304:43926088395653 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088396411:43926088396757 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088397560:43926088397914 26036:26036 hsa_executable_symbol_get_info(, 2, 0x7f2092820910) = 0 -43926088397560:43926088398781 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926088399975:43926088400324 26036:26036 hsa_executable_symbol_get_info(, 0, 0x7fff229afe28) = 0 -43926088401082:43926088401423 26036:26036 hsa_executable_symbol_get_info(, 1, 0x7fff229afe24) = 0 -43926088402226:43926088402580 26036:26036 hsa_executable_symbol_get_info(, 2, 0x7f2092d34940) = 0 -43926088402226:43926088403566 26036:26036 hsa_executable_iterate_agent_symbols(, , 1, 0x1082860) = 0 -43926119084395:43926119085919 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926119091500:43926119091973 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926119093907:43926119094413 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926119928519:43926119929026 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926119930101:43926119930487 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926119931326:43926119931705 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926119949705:43926119950201 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926119951140:43926119951476 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926119952280:43926119952629 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926119958475:43926119958921 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926119959800:43926119960159 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926119960961:43926119961304 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926119968999:43926119969414 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926119970345:43926119970676 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926119971438:43926119971773 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926119974799:43926119975207 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926119976106:43926119976442 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926119977237:43926119977575 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926119979215:43926119979607 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926119984012:43926119984359 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926119985126:43926119985476 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926120646379:43926120646962 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926120647949:43926120648309 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926120649101:43926120649454 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926120652137:43926120652548 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926120653398:43926120653737 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926120654486:43926120654828 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926120731756:43926120732117 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926120732955:43926120733290 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926120734051:43926120734395 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926120735729:43926120736074 26036:26036 hsa_executable_symbol_get_info(, 22, 0x7fff229b00a0) = 0 -43926120736917:43926120737275 26036:26036 hsa_system_major_extension_supported(, , , ) = 0 -43926120738035:43926120738374 26036:26036 hsa_system_get_major_extension_table(, , , 0x7fff229b0030) = 0 -43926122597621:43926122598361 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926122612671:43926122613103 26036:26036 hsa_system_get_info(3, 0x7fff229afe38) = 0 -43926122642932:43926124596934 26036:26036 hsa_queue_create(, , , 1, 0, , , ) = 0 -43926124605232:43926124605992 26036:26036 hsa_amd_profiling_set_profiler_enabled(, 1) = 0 -43926124613521:43926124614105 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 0 -43926124616021:43926124616547 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 0 -43926124617960:43926124620629 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926124622218:43926124622627 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926124624978:43926124626940 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e512a0) = 0 -43926124628959:43926124629943 26036:26036 hsa_signal_store_relaxed(, 0) = void -43926124635167:43926124635880 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926124661248:43926124661942 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926124678596:43926124680310 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926124681151:43926124681555 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 1 -43926124682363:43926124682732 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 0 -43926124686397:43926124686761 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926124687663:43926124688868 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e5a060) = 0 -43926124689701:43926124690126 26036:26036 hsa_signal_store_relaxed(, 1) = void -43926124692306:43926125149465 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926125152470:43926125154605 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926125149732:43926125154546 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926125155731:43926125156344 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926125156447:43926125156912 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926125157545:43926125158272 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926125159065:43926125159569 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926125160655:43926125161131 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926125163452:43926125164082 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926125162136:43926125164318 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926125178005:43926125178635 26036:26041 hsa_signal_destroy() = 0 -43926125180934:43926125181404 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926125182170:43926125182530 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926125165148:43926125580653 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926126125950:43926126126687 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926140557058:43926140558327 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926140562907:43926140563997 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926140566738:43926140570091 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926140571342:43926140571990 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926140573091:43926140573775 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926140574564:43926140575034 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926141027628:43926141028393 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926141029882:43926141031695 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926141032484:43926141405163 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926141406414:43926141407043 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926141426883:43926141427521 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926141457879:43926141458654 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 2 -43926141459632:43926141460102 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 2 -43926141461140:43926141462551 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926141463528:43926141463932 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926141465224:43926141469189 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f210d8c4370) = 0 -43926141470147:43926141470816 26036:26036 hsa_signal_store_relaxed(, 2) = void -43926141472541:43926141473174 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926141479211:43926141479843 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926141482958:43926141485366 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926141486198:43926141486576 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 3 -43926141487338:43926141487671 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 2 -43926141488667:43926141489013 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926141489861:43926141491735 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e74290) = 0 -43926141492490:43926141492942 26036:26036 hsa_signal_store_relaxed(, 3) = void -43926141493901:43926141964865 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926141965956:43926141966365 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926141967596:43926141968559 26036:26036 hsa_signal_destroy() = 0 -43926141969817:43926141971077 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926141972064:43926141972507 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926141973255:43926141973715 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926141974513:43926141974910 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926141989894:43926141990265 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926141991066:43926141991726 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926142045671:43926142049042 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926142050786:43926142051162 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926142053927:43926142054488 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926142056226:43926142056676 26036:26041 hsa_signal_destroy() = 0 -43926142059310:43926142059740 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926142064811:43926142065264 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926141992511:43926142413478 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926142876120:43926142876900 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926157271526:43926157272571 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926157276884:43926157277942 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926157279569:43926157282491 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926157283629:43926157284385 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926157285348:43926157285949 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926157286844:43926157287312 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926157740303:43926157741162 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926157742379:43926157744050 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926157745017:43926158117402 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926158118632:43926158119266 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926158134004:43926158134649 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926158153984:43926158154626 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 4 -43926158155587:43926158155988 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 4 -43926158157031:43926158158393 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926158159558:43926158160025 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926158161267:43926158174987 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e81680) = 0 -43926158176162:43926158176736 26036:26036 hsa_signal_store_relaxed(, 4) = void -43926158178353:43926158178995 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926158195499:43926158196162 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926158198732:43926158208578 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926158209481:43926158209862 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 5 -43926158210633:43926158210978 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 4 -43926158211989:43926158212310 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926158213182:43926158214840 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e80600) = 0 -43926158215795:43926158216242 26036:26036 hsa_signal_store_relaxed(, 5) = void -43926158221086:43926158681249 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926158682240:43926158682641 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926158683922:43926158684575 26036:26036 hsa_signal_destroy() = 0 -43926158685708:43926158686742 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926158687574:43926158687962 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926158688710:43926158689210 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926158690004:43926158690350 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926158691199:43926158691540 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926158706657:43926158707317 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926158762226:43926158765471 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926158766910:43926158767285 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926158769943:43926158770497 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926158772261:43926158772708 26036:26041 hsa_signal_destroy() = 0 -43926158774802:43926158775275 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926158776049:43926158776408 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926158708140:43926159129343 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926159590378:43926159591166 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926173973789:43926173974777 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926173979175:43926173980143 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926173981976:43926173984887 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926173985957:43926173986519 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926173987431:43926173988031 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926173988932:43926173989410 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926174443365:43926174444184 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926174445403:43926174447114 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926174448047:43926174820849 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926174822072:43926174822711 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926174836266:43926174836921 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926174863700:43926174864403 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 6 -43926174865449:43926174865863 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 6 -43926174867033:43926174868288 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926174878212:43926174878753 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926174879935:43926174883804 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e8b5e0) = 0 -43926174884608:43926174885177 26036:26036 hsa_signal_store_relaxed(, 6) = void -43926174886791:43926174897437 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926174904026:43926174904685 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926174916413:43926174916999 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926174917853:43926174918233 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 7 -43926174919039:43926174919374 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 6 -43926174920353:43926174920698 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926174921539:43926174923156 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e8f040) = 0 -43926174923916:43926174924363 26036:26036 hsa_signal_store_relaxed(, 7) = void -43926174925397:43926175393801 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926175394860:43926175395266 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926175396433:43926175397128 26036:26036 hsa_signal_destroy() = 0 -43926175398252:43926175399216 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926175400046:43926175400432 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926175401197:43926175401635 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926175402537:43926175402883 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926175403732:43926175418079 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926175418981:43926175419627 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926175475006:43926175478199 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926175479770:43926175480150 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926175482934:43926175483490 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926175485258:43926175485708 26036:26041 hsa_signal_destroy() = 0 -43926175487814:43926175488241 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926175489013:43926175489377 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926175420431:43926175841900 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926176311609:43926176312398 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926190690419:43926190691482 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926190695509:43926190696379 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926190698243:43926190701055 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926190702246:43926190702828 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926190703702:43926190704359 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926190705237:43926190705644 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926191158250:43926191158969 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926191160152:43926191161709 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926191162680:43926191535321 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926191536570:43926191537207 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926191551520:43926191552175 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926191575468:43926191576192 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 8 -43926191577145:43926191577547 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 8 -43926191578605:43926191579731 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926191580651:43926191581123 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926191582286:43926191595092 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e947e0) = 0 -43926191596111:43926191596683 26036:26036 hsa_signal_store_relaxed(, 8) = void -43926191598300:43926191598943 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926191618866:43926191619542 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926191631231:43926191631821 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926191632693:43926191633086 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 9 -43926191633914:43926191634252 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 8 -43926191635175:43926191635498 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926191636366:43926191637975 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e8f8e0) = 0 -43926191638769:43926191639229 26036:26036 hsa_signal_store_relaxed(, 9) = void -43926191640218:43926192103376 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926192105472:43926192105868 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926192107057:43926192107700 26036:26036 hsa_signal_destroy() = 0 -43926192108819:43926192109798 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926192110669:43926192111065 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926192111832:43926192112273 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926192113013:43926192113358 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926192128482:43926192128869 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926192129663:43926192130371 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926192185291:43926192188474 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926192190021:43926192190394 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926192193269:43926192193843 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926192195649:43926192196111 26036:26041 hsa_signal_destroy() = 0 -43926192198342:43926192198779 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926192199553:43926192199909 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926192131153:43926192552081 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926193014215:43926193014954 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926207393040:43926207394079 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926207398259:43926207399679 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926207401665:43926207404242 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926207405430:43926207405988 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926207406902:43926207407552 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926207408491:43926207408980 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926207861731:43926207862446 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926207863606:43926207865023 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926207865891:43926208239123 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926208240520:43926208241158 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926208254301:43926208254939 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926208263022:43926208273903 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 10 -43926208274879:43926208275280 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 10 -43926208280066:43926208281414 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926208282333:43926208282838 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926208293023:43926208296732 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e95d70) = 0 -43926208297650:43926208298224 26036:26036 hsa_signal_store_relaxed(, 10) = void -43926208299717:43926208300350 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926208316977:43926208317626 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926208320409:43926208329801 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926208330644:43926208331025 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 11 -43926208331843:43926208332181 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 10 -43926208333175:43926208333501 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926208334334:43926208335894 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092e98c50) = 0 -43926208336644:43926208337031 26036:26036 hsa_signal_store_relaxed(, 11) = void -43926208338028:43926208812497 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926208813372:43926208813760 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926208814899:43926208815529 26036:26036 hsa_signal_destroy() = 0 -43926208816694:43926208817581 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926208818438:43926208818849 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926208819651:43926208820071 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926208820865:43926208821206 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926208822062:43926208822403 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926208837587:43926208838226 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926208893565:43926208896879 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926208898367:43926208898750 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926208901567:43926208902130 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926208903955:43926208904420 26036:26041 hsa_signal_destroy() = 0 -43926208906554:43926208906981 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926208907756:43926208908115 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926208839040:43926209260275 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926209721575:43926209722359 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926224098488:43926224099489 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926224103570:43926224104761 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926224106390:43926224108571 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926224109669:43926224110491 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926224111366:43926224112013 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926224112922:43926224113337 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926224562670:43926224563550 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926224564740:43926224566255 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926224567416:43926224955554 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926224956772:43926224957420 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926224971531:43926224972176 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926224994744:43926224995393 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 12 -43926224996401:43926224996805 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 12 -43926224997823:43926224999129 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926225000046:43926225000617 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926225001838:43926225014398 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ea23e0) = 0 -43926225015409:43926225016074 26036:26036 hsa_signal_store_relaxed(, 12) = void -43926225017646:43926225018291 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926225034199:43926225034857 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926225037648:43926225038273 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926225039169:43926225039550 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 13 -43926225049584:43926225049933 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 12 -43926225050897:43926225051219 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926225052080:43926225053698 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ead4f0) = 0 -43926225054494:43926225054948 26036:26036 hsa_signal_store_relaxed(, 13) = void -43926225055964:43926226900981 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926226902116:43926226902534 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926226903730:43926226904670 26036:26036 hsa_signal_destroy() = 0 -43926226909301:43926226919068 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926226920017:43926226920456 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926226921200:43926226921630 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926226922421:43926226922775 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926226923630:43926226923980 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926226924740:43926226925363 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926226957685:43926226960964 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926226962472:43926226962842 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926226976019:43926226976602 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926226978441:43926226978898 26036:26041 hsa_signal_destroy() = 0 -43926226981091:43926226981620 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926226982413:43926226982782 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926226926122:43926227361433 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926227822602:43926227823346 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926242197831:43926242198833 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926242203066:43926242204189 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926242206291:43926242208557 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926242209647:43926242210247 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926242211090:43926242211867 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926242212757:43926242213152 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926242662919:43926242663658 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926242664794:43926242666377 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926242667500:43926243055043 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926243056221:43926243056856 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926243070669:43926243071332 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926243094508:43926243095226 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 14 -43926243096284:43926243096681 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 14 -43926243097720:43926243099065 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926243113414:43926243113934 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926243115110:43926243119016 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ea6db0) = 0 -43926243120172:43926243120902 26036:26036 hsa_signal_store_relaxed(, 14) = void -43926243122405:43926243123045 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926243139798:43926243140455 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926243152500:43926243153100 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926243153922:43926243154269 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 15 -43926243155070:43926243155413 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 14 -43926243156397:43926243156721 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926243157548:43926243159106 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092eaf290) = 0 -43926243159865:43926243160255 26036:26036 hsa_signal_store_relaxed(, 15) = void -43926243161289:43926245007204 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926245008229:43926245008632 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926245009797:43926245010448 26036:26036 hsa_signal_destroy() = 0 -43926245011605:43926245012769 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926245013713:43926245014119 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926245014904:43926245024442 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926245025323:43926245025684 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926245026542:43926245026893 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926245027662:43926245028274 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926245063378:43926245066701 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926245068108:43926245068480 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926245081621:43926245082211 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926245084028:43926245084492 26036:26041 hsa_signal_destroy() = 0 -43926245086700:43926245087261 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926245088056:43926245088425 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926245029036:43926245459471 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926245919436:43926245920171 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926260296923:43926260298076 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926260306478:43926260308133 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926260309820:43926260311929 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926260313548:43926260314160 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926260315083:43926260315697 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926260316551:43926260316962 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926260763851:43926260764562 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926260765761:43926260767674 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926260768514:43926261156726 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926261157870:43926261158502 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926261172655:43926261173306 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926261182139:43926261182853 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 16 -43926261197193:43926261197606 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 16 -43926261198608:43926261199903 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926261200829:43926261201390 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926261202596:43926261215153 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092eb0f00) = 0 -43926261216171:43926261216745 26036:26036 hsa_signal_store_relaxed(, 16) = void -43926261218343:43926261218982 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926261234729:43926261235390 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926261238405:43926261239000 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926261239843:43926261240243 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 17 -43926261241087:43926261241436 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 16 -43926261251538:43926261251885 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926261252718:43926261254916 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092eb4c60) = 0 -43926261255686:43926261256140 26036:26036 hsa_signal_store_relaxed(, 17) = void -43926261257147:43926263104360 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926263105381:43926263105799 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926263107010:43926263107771 26036:26036 hsa_signal_destroy() = 0 -43926263109024:43926263109813 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926263121400:43926263121846 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926263122636:43926263123090 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926263123886:43926263124236 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926263125087:43926263125438 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926263126198:43926263126823 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926263160479:43926263163607 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926263165112:43926263165489 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926263178737:43926263179328 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926263181178:43926263181649 26036:26041 hsa_signal_destroy() = 0 -43926263183953:43926263184414 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926263185208:43926263185576 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926263127583:43926263563954 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926264029702:43926264030430 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926278408082:43926278409201 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926278413288:43926278414585 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926278416525:43926278419168 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926278420247:43926278420932 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926278421758:43926278422422 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926278423380:43926278423844 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926278877072:43926278877724 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926278879090:43926278880631 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926278881488:43926279270698 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926279271921:43926279272559 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926279285886:43926279286537 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926279309983:43926279310695 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 18 -43926279311739:43926279312143 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 18 -43926279313260:43926279314553 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926279315725:43926279316247 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926279331806:43926279335588 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092eba4b0) = 0 -43926279336480:43926279337050 26036:26036 hsa_signal_store_relaxed(, 18) = void -43926279338649:43926279349222 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926279355619:43926279356280 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926279368149:43926279368743 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926279369596:43926279369977 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 19 -43926279370776:43926279371118 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 18 -43926279372089:43926279372421 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926279373325:43926279374897 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ebcb90) = 0 -43926279375667:43926279376118 26036:26036 hsa_signal_store_relaxed(, 19) = void -43926279377113:43926281234537 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926281235626:43926281236026 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926281237203:43926281237864 26036:26036 hsa_signal_destroy() = 0 -43926281239059:43926281239992 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926281240930:43926281241342 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926281242105:43926281251395 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926281252211:43926281252568 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926281253417:43926281253767 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926281254529:43926281255158 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926281290381:43926281293551 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926281294969:43926281295343 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926281308169:43926281308767 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926281310601:43926281311079 26036:26041 hsa_signal_destroy() = 0 -43926281313288:43926281313787 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926281314571:43926281314936 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926281255917:43926281686574 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926282147734:43926282148464 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926296535197:43926296536324 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926296540513:43926296541526 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926296548400:43926296550693 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926296551914:43926296552571 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926296553400:43926296554084 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926296554956:43926296555429 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926297025537:43926297026202 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926297027340:43926297028978 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926297029890:43926297417967 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926297419195:43926297419844 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926297434727:43926297435384 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926297454287:43926297454927 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 20 -43926297455950:43926297456356 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 20 -43926297457421:43926297458649 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926297459607:43926297460077 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926297461260:43926297473804 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ec5b50) = 0 -43926297474761:43926297475332 26036:26036 hsa_signal_store_relaxed(, 20) = void -43926297476833:43926297477471 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926297493497:43926297494162 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926297496887:43926297497478 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926297507182:43926297507631 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 21 -43926297508451:43926297508796 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 20 -43926297509776:43926297510100 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926297510933:43926297512564 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ecbf10) = 0 -43926297513324:43926297513758 26036:26036 hsa_signal_store_relaxed(, 21) = void -43926297514758:43926299359526 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926299360566:43926299360967 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926299362192:43926299362842 26036:26036 hsa_signal_destroy() = 0 -43926299363972:43926299364812 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926299365710:43926299366152 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926299376913:43926299377379 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926299378195:43926299378551 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926299379400:43926299379748 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926299380505:43926299381130 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926299415613:43926299418852 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926299420293:43926299420666 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926299433900:43926299434471 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926299436260:43926299436728 26036:26041 hsa_signal_destroy() = 0 -43926299438989:43926299439434 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926299440234:43926299440610 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926299381900:43926299811868 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926300278844:43926300279604 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926314657311:43926314658344 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926314662756:43926314663833 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926314665806:43926314667838 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926314668988:43926314669614 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926314670440:43926314671102 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926314671988:43926314672465 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926315145863:43926315146535 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926315147826:43926315149374 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926315150254:43926315538184 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926315539478:43926315540117 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926315553539:43926315554210 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926315572787:43926315573491 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 22 -43926315574449:43926315574847 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 22 -43926315575984:43926315577173 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926315578125:43926315578646 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926315579845:43926315592948 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ecc630) = 0 -43926315593935:43926315594591 26036:26036 hsa_signal_store_relaxed(, 22) = void -43926315610464:43926315611150 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926315617464:43926315618151 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926315629846:43926315630449 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926315631274:43926315631663 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 23 -43926315632464:43926315632805 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 22 -43926315633778:43926315634100 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926315634993:43926315636600 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ecf730) = 0 -43926315637361:43926315637746 26036:26036 hsa_signal_store_relaxed(, 23) = void -43926315638736:43926317469722 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926317470701:43926317471110 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926317472243:43926317472891 26036:26036 hsa_signal_destroy() = 0 -43926317474079:43926317474931 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926317475808:43926317476254 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926317477041:43926317477454 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926317487184:43926317487550 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926317488409:43926317488757 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926317489525:43926317490160 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926317526507:43926317529714 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926317531184:43926317531555 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926317544922:43926317545507 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926317547319:43926317547785 26036:26041 hsa_signal_destroy() = 0 -43926317549986:43926317550469 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926317551263:43926317551629 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926317490918:43926317922419 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926318383851:43926318384594 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926332788391:43926332789359 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926332794125:43926332795145 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926332797074:43926332799676 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926332805501:43926332806153 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926332806984:43926332807677 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926332808542:43926332808943 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926333260860:43926333261552 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926333262714:43926333264710 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926333265796:43926333653993 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926333655069:43926333655704 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926333671243:43926333671897 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926333692128:43926333692755 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 24 -43926333693717:43926333694251 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 24 -43926333695504:43926333696922 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926333706917:43926333707347 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926333708630:43926333712781 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ec6c70) = 0 -43926333713694:43926333714263 26036:26036 hsa_signal_store_relaxed(, 24) = void -43926333715908:43926333726788 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926333733185:43926333733839 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926333745786:43926333746412 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926333747241:43926333747571 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 25 -43926333748318:43926333748657 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 24 -43926333749615:43926333749944 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926333750795:43926333752618 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ed27a0) = 0 -43926333753376:43926333753821 26036:26036 hsa_signal_store_relaxed(, 25) = void -43926333754759:43926335601143 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926335602179:43926335602586 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926335603789:43926335604469 26036:26036 hsa_signal_destroy() = 0 -43926335605786:43926335606629 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926335607421:43926335607846 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926335608619:43926335609057 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926335618626:43926335618996 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926335621414:43926335621752 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926335622515:43926335623161 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926335657465:43926335660710 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926335662161:43926335662533 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926335675808:43926335676384 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926335678197:43926335678655 26036:26041 hsa_signal_destroy() = 0 -43926335680901:43926335681378 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926335682172:43926335682540 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926335623925:43926336052980 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926336513282:43926336514028 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926350892266:43926350893209 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926350897489:43926350898831 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926350900693:43926350903011 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926350904114:43926350904705 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926350905544:43926350906189 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926350907133:43926350907546 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926351360749:43926351361606 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926351362829:43926351364330 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926351365222:43926351753320 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926351754595:43926351755243 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926351768846:43926351769511 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926351792711:43926351793490 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 26 -43926351794416:43926351794817 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 26 -43926351795916:43926351797199 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926351798162:43926351798681 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926351800041:43926351812869 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ed5440) = 0 -43926351813837:43926351814406 26036:26036 hsa_signal_store_relaxed(, 26) = void -43926351815950:43926351816607 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926351837195:43926351837847 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926351849580:43926351850175 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926351850990:43926351851322 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 27 -43926351852119:43926351852452 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 26 -43926351853430:43926351853755 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926351854590:43926351856209 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ee4440) = 0 -43926351856966:43926351857415 26036:26036 hsa_signal_store_relaxed(, 27) = void -43926351858404:43926353697266 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926353698457:43926353698865 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926353700038:43926353700742 26036:26036 hsa_signal_destroy() = 0 -43926353702004:43926353703020 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926353703924:43926353704347 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926353705119:43926353705578 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926353715155:43926353715524 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926353716330:43926353716679 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926353717445:43926353718154 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926353753394:43926353756591 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926353758077:43926353758447 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926353771922:43926353772519 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926353774324:43926353774803 26036:26041 hsa_signal_destroy() = 0 -43926353777042:43926353777564 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926353778371:43926353778738 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926353718916:43926354148922 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926354609463:43926354610212 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926368995864:43926368997044 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926369001114:43926369002285 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926369004156:43926369006311 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926369007678:43926369008255 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926369009196:43926369009841 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926369014687:43926369015092 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926369485916:43926369486627 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926369487898:43926369489457 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926369490406:43926369877863 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926369879096:43926369879739 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926369893368:43926369894033 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926369913054:43926369913977 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 28 -43926369914946:43926369915347 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 28 -43926369916406:43926369917687 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926369918624:43926369919089 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926369920563:43926369933235 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ee9d10) = 0 -43926369934178:43926369934754 26036:26036 hsa_signal_store_relaxed(, 28) = void -43926369936258:43926369936898 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926369953240:43926369953895 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926369956744:43926369957340 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926369958264:43926369958614 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 29 -43926369968582:43926369968941 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 28 -43926369969876:43926369970196 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926369971024:43926369971515 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ee8b50) = 0 -43926369972269:43926369972663 26036:26036 hsa_signal_store_relaxed(, 29) = void -43926369973659:43926371814915 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926371815936:43926371816338 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926371817516:43926371818244 26036:26036 hsa_signal_destroy() = 0 -43926371819410:43926371820248 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926371821099:43926371821540 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926371822314:43926371822759 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926371832666:43926371833080 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926371833987:43926371834340 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926371836935:43926371837630 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926371871358:43926371874573 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926371876002:43926371876383 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926371889695:43926371890279 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926371892100:43926371892573 26036:26041 hsa_signal_destroy() = 0 -43926371894788:43926371895258 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926371896043:43926371896417 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926371838412:43926372274457 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926372736801:43926372737535 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926387112726:43926387113779 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926387117875:43926387119056 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926387121116:43926387123778 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926387125066:43926387125663 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926387126484:43926387127107 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926387127997:43926387128401 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926387579750:43926387580589 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926387581785:43926387583313 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926387584167:43926387972260 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926387973561:43926387974195 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926387987430:43926387988079 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926388015523:43926388016421 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 30 -43926388017443:43926388017927 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 30 -43926388019048:43926388029106 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926388030083:43926388030545 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926388031834:43926388035636 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092eeec50) = 0 -43926388036532:43926388037097 26036:26036 hsa_signal_store_relaxed(, 30) = void -43926388038623:43926388039264 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926388068412:43926388069048 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926388073179:43926388073764 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926388074798:43926388075146 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 31 -43926388075949:43926388076285 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 30 -43926388077254:43926388077577 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926388078414:43926388080049 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ef6d10) = 0 -43926388080814:43926388081208 26036:26036 hsa_signal_store_relaxed(, 31) = void -43926388082259:43926389921201 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926389922221:43926389922616 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926389923808:43926389924644 26036:26036 hsa_signal_destroy() = 0 -43926389925850:43926389926719 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926389927576:43926389927989 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926389928751:43926389938380 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926389939211:43926389939566 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926389940407:43926389940755 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926389941526:43926389942216 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926389977094:43926389980334 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926389981756:43926389982128 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926389995441:43926389996024 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926389997830:43926389998302 26036:26041 hsa_signal_destroy() = 0 -43926390000480:43926390000933 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926390001728:43926390002092 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926389942977:43926390373314 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926390834152:43926390834910 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926405214280:43926405215351 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926405219393:43926405220625 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926405222231:43926405224291 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926405225321:43926405225912 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926405226810:43926405227484 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926405228540:43926405228934 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926405684772:43926405685483 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926405686767:43926405688294 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926405689166:43926406078061 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926406079338:43926406079969 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926406093941:43926406094587 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926406117433:43926406118229 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 32 -43926406119232:43926406119634 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 32 -43926406120889:43926406122255 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926406123189:43926406123612 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926406124802:43926406137804 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ef1d40) = 0 -43926406138767:43926406139355 26036:26036 hsa_signal_store_relaxed(, 32) = void -43926406140826:43926406141465 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926406157673:43926406158331 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926406161061:43926406161706 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926406162582:43926406162945 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 33 -43926406172649:43926406173001 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 32 -43926406173936:43926406174262 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926406175105:43926406175608 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ef8d40) = 0 -43926406176387:43926406176839 26036:26036 hsa_signal_store_relaxed(, 33) = void -43926406177835:43926408021786 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926408022854:43926408023259 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926408024383:43926408025044 26036:26036 hsa_signal_destroy() = 0 -43926408026259:43926408027266 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926408028186:43926408028584 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926408029354:43926408029792 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926408039405:43926408039770 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926408040672:43926408041020 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926408041811:43926408042656 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926408078669:43926408081981 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926408083415:43926408083791 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926408096844:43926408097440 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926408099255:43926408099728 26036:26041 hsa_signal_destroy() = 0 -43926408101950:43926408102427 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926408103213:43926408103588 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926408045329:43926408473358 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926408934950:43926408935716 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926423310053:43926423311270 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926423315579:43926423317092 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926423319040:43926423321134 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926423322439:43926423323006 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926423323831:43926423324453 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926423325361:43926423325845 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926423778468:43926423779178 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926423780465:43926423781948 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926423782810:43926424172004 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926424173331:43926424173973 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926424192220:43926424192861 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926424211397:43926424212053 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 34 -43926424213027:43926424213428 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 34 -43926424214443:43926424225283 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926424226259:43926424226672 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926424228124:43926424231926 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092efb730) = 0 -43926424232826:43926424233394 26036:26036 hsa_signal_store_relaxed(, 34) = void -43926424234939:43926424235575 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926424252104:43926424252760 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926424264766:43926424265381 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926424266246:43926424266572 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 35 -43926424268564:43926424268900 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 34 -43926424269869:43926424270194 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926424271015:43926424272563 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092efde50) = 0 -43926424273315:43926424273716 26036:26036 hsa_signal_store_relaxed(, 35) = void -43926424274730:43926426124790 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926426125850:43926426126261 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926426127426:43926426128069 26036:26036 hsa_signal_destroy() = 0 -43926426129270:43926426130117 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926426130991:43926426131395 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926426132170:43926426132601 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926426142523:43926426142937 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926426143824:43926426144166 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926426144932:43926426145572 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926426181452:43926426184634 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926426186067:43926426186440 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926426199778:43926426200362 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926426202169:43926426202631 26036:26041 hsa_signal_destroy() = 0 -43926426204819:43926426205332 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926426206128:43926426206492 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926426146327:43926426576035 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926427039610:43926427040348 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926441430720:43926441431713 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926441435488:43926441436346 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926441438233:43926441441164 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926441442385:43926441443010 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926441443921:43926441444706 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926441445602:43926441446001 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926441895700:43926441896458 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926441901503:43926441903054 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926441903930:43926442292130 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926442293374:43926442293997 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926442308047:43926442308713 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926442327186:43926442327780 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 36 -43926442328693:43926442329091 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 36 -43926442330178:43926442331388 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926442332331:43926442332782 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926442333937:43926442346572 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092f06d10) = 0 -43926442347532:43926442348126 26036:26036 hsa_signal_store_relaxed(, 36) = void -43926442349688:43926442350329 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926442366597:43926442367245 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926442370357:43926442371025 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926442371906:43926442372247 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 37 -43926442382031:43926442382428 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 36 -43926442383399:43926442383723 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926442384571:43926442385058 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092f04a40) = 0 -43926442385799:43926442386249 26036:26036 hsa_signal_store_relaxed(, 37) = void -43926442387268:43926444228599 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926444229644:43926444230058 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926444231239:43926444231902 26036:26036 hsa_signal_destroy() = 0 -43926444233151:43926444234045 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926444234905:43926444235352 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926444236127:43926444236578 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926444246142:43926444246513 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926444247392:43926444247757 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926444248524:43926444249171 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926444284834:43926444288166 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926444289583:43926444289956 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926444306314:43926444306912 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926444308785:43926444309241 26036:26041 hsa_signal_destroy() = 0 -43926444311446:43926444311963 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926444312753:43926444313120 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926444249935:43926444680186 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926445140951:43926445141764 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926459516997:43926459518200 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926459522384:43926459523702 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926459525450:43926459528024 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926459529172:43926459529749 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926459530626:43926459531337 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926459532193:43926459532589 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926459985786:43926459986518 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926459987729:43926459989189 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926459990064:43926460378606 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926460379814:43926460380445 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926460394065:43926460394727 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926460418009:43926460418704 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 38 -43926460419703:43926460420098 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 38 -43926460421124:43926460422546 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926460423552:43926460423972 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926460425473:43926460438634 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092f0e600) = 0 -43926460439676:43926460440252 26036:26036 hsa_signal_store_relaxed(, 38) = void -43926460441780:43926460442437 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926460458450:43926460459105 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926460461826:43926460462479 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926460463373:43926460472807 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 39 -43926460473735:43926460474076 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 38 -43926460478809:43926460479139 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926460479978:43926460481639 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092f0d9e0) = 0 -43926460482390:43926460482843 26036:26036 hsa_signal_store_relaxed(, 39) = void -43926460483845:43926462320534 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926462321552:43926462321953 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926462323272:43926462324039 26036:26036 hsa_signal_destroy() = 0 -43926462325295:43926462326073 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926462326941:43926462327384 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926462328200:43926462328639 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926462338217:43926462338582 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926462339444:43926462339788 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926462340551:43926462341165 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926462376853:43926462380024 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926462381427:43926462381795 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926462395177:43926462395774 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926462397620:43926462398093 26036:26041 hsa_signal_destroy() = 0 -43926462400324:43926462400825 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926462401617:43926462401986 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926462341929:43926462772358 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926463233595:43926463234381 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926477618756:43926477619758 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926477624068:43926477625299 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926477626895:43926477628940 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926477629980:43926477630572 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926477631610:43926477632264 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926477633165:43926477633788 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926478083550:43926478084257 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926478085410:43926478086940 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926478087837:43926478476180 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926478481221:43926478481868 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926478495838:43926478496496 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926478519004:43926478519644 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 40 -43926478520619:43926478521033 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 40 -43926478522045:43926478523397 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926478533211:43926478533692 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926478534852:43926478538540 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092f04640) = 0 -43926478539506:43926478540094 26036:26036 hsa_signal_store_relaxed(, 40) = void -43926478541581:43926478552170 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926478558453:43926478559110 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926478570788:43926478571527 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926478572348:43926478572724 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 41 -43926478573535:43926478573875 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 40 -43926478574803:43926478575125 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926478575952:43926478577588 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092f177a0) = 0 -43926478578336:43926478578783 26036:26036 hsa_signal_store_relaxed(, 41) = void -43926478579768:43926480424955 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926480426010:43926480426407 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926480427520:43926480428268 26036:26036 hsa_signal_destroy() = 0 -43926480429594:43926480430433 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926480431306:43926480431765 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926480432533:43926480432968 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926480442680:43926480443049 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926480443917:43926480444264 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926480445028:43926480445671 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926480481696:43926480484960 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926480486346:43926480486720 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926480500139:43926480500724 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926480505729:43926480506187 26036:26041 hsa_signal_destroy() = 0 -43926480508449:43926480508957 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926480509755:43926480510132 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926480446433:43926480876238 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926481336384:43926481337122 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926495711324:43926495712316 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926495716207:43926495717320 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926495719030:43926495721172 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926495722543:43926495723180 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926495724034:43926495724662 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926495725558:43926495726025 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926496184288:43926496184973 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926496186392:43926496187889 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926496188796:43926496561620 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926496563046:43926496563677 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926496577807:43926496578480 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926496600987:43926496601780 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 42 -43926496602765:43926496603177 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 42 -43926496604387:43926496605681 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926496606646:43926496607125 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926496608347:43926496621227 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092f21540) = 0 -43926496622183:43926496622756 26036:26036 hsa_signal_store_relaxed(, 42) = void -43926496624294:43926496624936 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926496640825:43926496641469 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926496644012:43926496644636 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926496645531:43926496645933 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 43 -43926496655903:43926496656298 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 42 -43926496657316:43926496657659 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926496662376:43926496663979 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ccbe20) = 0 -43926496664737:43926496665185 26036:26036 hsa_signal_store_relaxed(, 43) = void -43926496666204:43926497123153 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926497124101:43926497124515 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926497125728:43926497126389 26036:26036 hsa_signal_destroy() = 0 -43926497127580:43926497128416 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926497129254:43926497129695 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926497130497:43926497130926 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926497131719:43926497132069 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926497132943:43926497133292 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926497148431:43926497149084 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926497204312:43926497207564 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926497208994:43926497209368 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926497212388:43926497212950 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926497214751:43926497215210 26036:26041 hsa_signal_destroy() = 0 -43926497217323:43926497217777 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926497218548:43926497218903 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926497149887:43926497571176 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926498031533:43926498032268 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926512420275:43926512421317 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926512425367:43926512426489 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926512428100:43926512430182 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926512431361:43926512432033 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926512432914:43926512433559 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926512434447:43926512434856 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926512889367:43926512890079 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926512891215:43926512893052 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926512893950:43926513266581 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926513267855:43926513268482 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926513286138:43926513286794 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926513309426:43926513310453 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 44 -43926513311381:43926513311791 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 44 -43926513312808:43926513314336 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926513324228:43926513324707 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926513325921:43926513329703 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092cc5950) = 0 -43926513330622:43926513331189 26036:26036 hsa_signal_store_relaxed(, 44) = void -43926513332694:43926513333331 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926513349529:43926513350190 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926513362268:43926513362929 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926513363752:43926513364123 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 45 -43926513364923:43926513365261 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 44 -43926513366200:43926513366521 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926513367351:43926513368912 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092cccd00) = 0 -43926513369665:43926513370116 26036:26036 hsa_signal_store_relaxed(, 45) = void -43926513371107:43926513834159 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926513835110:43926513835504 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926513836573:43926513837195 26036:26036 hsa_signal_destroy() = 0 -43926513838393:43926513839222 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926513840212:43926513840603 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926513841349:43926513841788 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926513842578:43926513842927 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926513843778:43926513844108 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926513859183:43926513859823 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926513915890:43926513919147 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926513920648:43926513921030 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926513924134:43926513924691 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926513926467:43926513926915 26036:26041 hsa_signal_destroy() = 0 -43926513932179:43926513932704 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926513933476:43926513933834 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926513860649:43926514281392 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926514742452:43926514743189 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926529130075:43926529131130 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926529135455:43926529136715 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926529138344:43926529140443 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926529141808:43926529142801 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926529143630:43926529144269 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926529145173:43926529145656 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926529599985:43926529600795 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926529602043:43926529603662 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926529604527:43926529977177 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926529978423:43926529979052 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926529992488:43926529993143 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926530001536:43926530012646 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 46 -43926530013688:43926530014089 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 46 -43926530015381:43926530016619 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926530017581:43926530018008 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926530019224:43926530031893 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092cd4c20) = 0 -43926530032844:43926530033416 26036:26036 hsa_signal_store_relaxed(, 46) = void -43926530035012:43926530035654 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926530051638:43926530052288 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926530054972:43926530055731 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926530056576:43926530056940 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 47 -43926530057817:43926530058171 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 46 -43926530068204:43926530068556 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926530069432:43926530069860 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092cdd6e0) = 0 -43926530070610:43926530071005 26036:26036 hsa_signal_store_relaxed(, 47) = void -43926530075834:43926530527590 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926530528628:43926530529120 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926530530290:43926530530916 26036:26036 hsa_signal_destroy() = 0 -43926530532077:43926530532968 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926530534004:43926530534444 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926530535190:43926530535633 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926530536430:43926530536778 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926530537641:43926530551966 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926530552858:43926530553580 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926530608905:43926530612277 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926530613740:43926530614108 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926530617108:43926530617655 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926530619467:43926530619873 26036:26041 hsa_signal_destroy() = 0 -43926530622027:43926530622473 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926530623245:43926530623600 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926530554378:43926530976154 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926531437738:43926531438476 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926545821584:43926545822572 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926545826664:43926545827878 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926545829581:43926545831716 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926545833184:43926545833773 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926545834687:43926545835306 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926545836223:43926545836623 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926546290968:43926546291714 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926546292890:43926546294547 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926546295591:43926546668686 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926546669863:43926546670497 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926546684060:43926546684710 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926546711364:43926546712141 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 48 -43926546713368:43926546713773 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 48 -43926546715046:43926546716406 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926546726239:43926546726715 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926546727876:43926546731698 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092cdfc30) = 0 -43926546732611:43926546733209 26036:26036 hsa_signal_store_relaxed(, 48) = void -43926546734733:43926546745342 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926546751550:43926546752201 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926546764017:43926546764831 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926546765672:43926546766050 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 49 -43926546766850:43926546767191 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 48 -43926546768139:43926546768460 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926546769288:43926546770813 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092943d40) = 0 -43926546771565:43926546772015 26036:26036 hsa_signal_store_relaxed(, 49) = void -43926546773033:43926547245006 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926547246024:43926547246417 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926547247539:43926547248176 26036:26036 hsa_signal_destroy() = 0 -43926547249276:43926547250068 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926547250907:43926547251300 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926547252053:43926547252478 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926547253269:43926547253620 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926547254473:43926547254811 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926547269711:43926547270352 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926547325566:43926547328882 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926547330392:43926547330775 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926547333900:43926547334457 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926547336269:43926547336686 26036:26041 hsa_signal_destroy() = 0 -43926547338812:43926547339237 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926547340011:43926547340370 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926547271167:43926547692392 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926548158304:43926548159033 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926562538511:43926562539556 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926562543753:43926562544954 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926562546890:43926562549950 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926562551003:43926562551591 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926562552415:43926562553038 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926562553929:43926562554330 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926563006919:43926563007763 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926563009187:43926563010704 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926563011571:43926563384197 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926563385431:43926563386062 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926563399109:43926563399766 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926563407549:43926563423029 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 50 -43926563423973:43926563424376 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 50 -43926563425428:43926563426630 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926563427585:43926563428019 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926563429224:43926563442299 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929489f0) = 0 -43926563443245:43926563443818 26036:26036 hsa_signal_store_relaxed(, 50) = void -43926563445400:43926563446056 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926563461811:43926563462454 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926563465496:43926563466206 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926563467048:43926563467398 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 51 -43926563468265:43926563468614 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 50 -43926563478786:43926563479124 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926563479988:43926563480422 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092945ee0) = 0 -43926563481182:43926563481649 26036:26036 hsa_signal_store_relaxed(, 51) = void -43926563482681:43926563952448 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926563957912:43926563958326 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926563959510:43926563960141 26036:26036 hsa_signal_destroy() = 0 -43926563961288:43926563962126 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926563976982:43926563977496 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926563978312:43926563978777 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926563979594:43926563979952 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926563980817:43926563981181 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926563981954:43926563982617 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926564034023:43926564037389 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926564038913:43926564039297 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926564042278:43926564042835 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926564044605:43926564045062 26036:26041 hsa_signal_destroy() = 0 -43926564047197:43926564047636 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926564048414:43926564048776 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926563983414:43926564404843 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926564866476:43926564867218 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926579242518:43926579243457 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926579247490:43926579248664 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926579250442:43926579252951 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926579254012:43926579254627 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926579255503:43926579256086 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926579256975:43926579257389 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926579707657:43926579708368 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926579709601:43926579711038 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926579712179:43926580084743 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926580085977:43926580086615 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926580104645:43926580105309 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926580123787:43926580124416 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 52 -43926580125508:43926580125912 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 52 -43926580137063:43926580138336 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926580139325:43926580139792 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926580140949:43926580144820 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929547d0) = 0 -43926580145738:43926580146328 26036:26036 hsa_signal_store_relaxed(, 52) = void -43926580147746:43926580148382 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926580165179:43926580165840 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926580177664:43926580178447 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926580179271:43926580179607 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 53 -43926580180411:43926580180752 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 52 -43926580181692:43926580182017 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926580182837:43926580184367 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092950190) = 0 -43926580185117:43926580185504 26036:26036 hsa_signal_store_relaxed(, 53) = void -43926580186492:43926580655351 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926580656285:43926580656683 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926580657804:43926580658449 26036:26036 hsa_signal_destroy() = 0 -43926580659681:43926580660563 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926580661407:43926580661802 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926580662549:43926580662979 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926580663783:43926580664134 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926580664984:43926580665314 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926580680171:43926580680878 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926580736670:43926580739899 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926580741328:43926580741714 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926580744824:43926580745386 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926580747155:43926580747617 26036:26041 hsa_signal_destroy() = 0 -43926580749763:43926580750204 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926580750980:43926580751338 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926580681704:43926581102546 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926581564002:43926581564791 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926595939665:43926595940713 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926595945356:43926595946681 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926595948614:43926595950584 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926595951593:43926595952511 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926595953337:43926595953984 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926595954894:43926595955476 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926596441094:43926596441996 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926596443289:43926596445155 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926596446084:43926596818719 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926596819893:43926596820536 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926596833862:43926596834519 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926596857534:43926596858170 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 54 -43926596859089:43926596859573 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 54 -43926596860881:43926596862039 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926596863164:43926596863635 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926596864915:43926596877694 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209295acb0) = 0 -43926596878626:43926596879200 26036:26036 hsa_signal_store_relaxed(, 54) = void -43926596880528:43926596881167 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926596897744:43926596898394 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926596901251:43926596902022 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926596902860:43926596912037 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 55 -43926596912954:43926596913292 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 54 -43926596914335:43926596914657 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926596915679:43926596917209 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092959cd0) = 0 -43926596917962:43926596918410 26036:26036 hsa_signal_store_relaxed(, 55) = void -43926596919417:43926597378625 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926597379561:43926597379982 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926597386610:43926597387342 26036:26036 hsa_signal_destroy() = 0 -43926597388629:43926597403963 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926597404877:43926597405280 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926597406046:43926597406480 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926597407293:43926597407649 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926597408531:43926597408892 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926597409673:43926597410305 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926597459619:43926597462979 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926597464421:43926597464795 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926597467584:43926597468143 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926597469969:43926597470398 26036:26041 hsa_signal_destroy() = 0 -43926597472539:43926597472997 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926597473776:43926597474136 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926597411081:43926597833349 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926598295209:43926598296030 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926612677020:43926612677948 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926612681800:43926612683023 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926612684592:43926612687270 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926612688400:43926612688990 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926612689865:43926612690515 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926612691408:43926612691815 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926613143309:43926613144160 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926613145603:43926613147345 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926613148420:43926613520759 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926613522053:43926613522682 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926613536098:43926613536751 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926613555534:43926613556146 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 56 -43926613557170:43926613557571 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 56 -43926613558597:43926613559955 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926613573795:43926613574273 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926613575462:43926613579233 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209296b900) = 0 -43926613580149:43926613580725 26036:26036 hsa_signal_store_relaxed(, 56) = void -43926613582220:43926613592913 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926613599267:43926613599930 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926613611862:43926613612691 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926613613534:43926613613874 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 57 -43926613614676:43926613615018 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 56 -43926613615937:43926613616258 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926613617086:43926613618740 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092963350) = 0 -43926613619490:43926613619880 26036:26036 hsa_signal_store_relaxed(, 57) = void -43926613620899:43926614088498 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926614089448:43926614089849 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926614090998:43926614091627 26036:26036 hsa_signal_destroy() = 0 -43926614092683:43926614093565 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926614094405:43926614094798 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926614095543:43926614095973 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926614096765:43926614097114 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926614097964:43926614098297 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926614113388:43926614114080 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926614170008:43926614173440 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926614174890:43926614175276 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926614178254:43926614178818 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926614180604:43926614181064 26036:26041 hsa_signal_destroy() = 0 -43926614183263:43926614183684 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926614184461:43926614184828 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926614114911:43926614535965 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926614996729:43926614997512 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926629388083:43926629389031 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926629393364:43926629394536 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926629396168:43926629398231 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926629399332:43926629399971 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926629400794:43926629401701 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926629402594:43926629402991 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926629856144:43926629856909 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926629858176:43926629859708 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926629860645:43926630233373 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926630234556:43926630235183 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926630248926:43926630249580 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926630268633:43926630269495 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 58 -43926630270474:43926630270954 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 58 -43926630272017:43926630273287 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926630274262:43926630274734 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926630275972:43926630288782 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209296c6b0) = 0 -43926630289730:43926630290303 26036:26036 hsa_signal_store_relaxed(, 58) = void -43926630291860:43926630292500 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926630308866:43926630309516 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926630312427:43926630313196 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926630314048:43926630314395 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 59 -43926630315269:43926630324485 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 58 -43926630325536:43926630325869 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926630326772:43926630327196 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092972b90) = 0 -43926630327941:43926630328393 26036:26036 hsa_signal_store_relaxed(, 59) = void -43926630329441:43926630791689 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926630792634:43926630793052 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926630794159:43926630794772 26036:26036 hsa_signal_destroy() = 0 -43926630795925:43926630796707 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926630801255:43926630801697 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926630816679:43926630817155 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926630817988:43926630818351 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926630819296:43926630819656 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926630820439:43926630821091 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926630873518:43926630876799 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926630878284:43926630878669 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926630881730:43926630882285 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926630884067:43926630884532 26036:26041 hsa_signal_destroy() = 0 -43926630886696:43926630887136 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926630887913:43926630888276 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926630821883:43926631240739 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926631702662:43926631703404 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926646084750:43926646085868 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926646089836:43926646091493 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926646093165:43926646095214 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926646096546:43926646097129 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926646098139:43926646098969 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926646099857:43926646100259 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926646554041:43926646554892 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926646556294:43926646558010 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926646558930:43926646931344 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926646932820:43926646933453 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926646947257:43926646947910 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926646970381:43926646971086 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 60 -43926646972095:43926646972569 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 60 -43926646973622:43926646983857 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926646984796:43926646985262 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926646991509:43926646994878 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929764a0) = 0 -43926646995812:43926646996546 26036:26036 hsa_signal_store_relaxed(, 60) = void -43926646998129:43926646998768 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926647004919:43926647005552 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926647008429:43926647009199 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926647010022:43926647010357 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 61 -43926647011180:43926647011515 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 60 -43926647012441:43926647012766 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926647013615:43926647014475 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092979be0) = 0 -43926647015252:43926647015705 26036:26036 hsa_signal_store_relaxed(, 61) = void -43926647484645:43926647488258 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926647489867:43926647490402 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926647494403:43926647496171 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926647497196:43926647497761 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926647016730:43926647531296 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926647543861:43926647544424 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926647546092:43926647546981 26036:26036 hsa_signal_destroy() = 0 -43926647548068:43926647548640 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926647549652:43926647550076 26036:26036 hsa_signal_destroy() = 0 -43926647551464:43926647552913 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926647553853:43926647554330 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926647555158:43926647555705 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926647556454:43926647556831 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926647557761:43926647558326 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926647559182:43926647560211 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926647561026:43926647963231 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926648445914:43926648446803 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926663052694:43926663053716 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926663059620:43926663061011 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926663068907:43926663071528 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926663072713:43926663073396 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926663074350:43926663074928 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926663075691:43926663076091 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926663528921:43926663529597 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926663530732:43926663532722 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926663533510:43926663906897 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926663907984:43926663908616 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926663925484:43926663926136 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926663964011:43926663964720 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 62 -43926663965645:43926663966126 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 62 -43926663967311:43926663968943 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926663969724:43926663970083 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926663971456:43926663975867 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092977f30) = 0 -43926663976759:43926663977605 26036:26036 hsa_signal_store_relaxed(, 62) = void -43926663979098:43926663979734 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926663989024:43926663989656 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926663992626:43926663993527 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926663994315:43926663994693 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 63 -43926663995449:43926663995792 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 62 -43926663996763:43926663997111 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926663997960:43926663999745 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929857c0) = 0 -43926664005261:43926664005832 26036:26036 hsa_signal_store_relaxed(, 63) = void -43926664007113:43926664482177 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926664483248:43926664483657 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926664484793:43926664485507 26036:26036 hsa_signal_destroy() = 0 -43926664486768:43926664488193 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926664489007:43926664489421 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926664491290:43926664491757 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926664492555:43926664507290 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926664508167:43926664508530 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926664509329:43926664510138 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926664563679:43926664567087 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926664568579:43926664568954 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926664571557:43926664572110 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926664573837:43926664574290 26036:26041 hsa_signal_destroy() = 0 -43926664576439:43926664576870 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926664577642:43926664578000 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926664510962:43926664931414 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926665392593:43926665393377 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926679771407:43926679772627 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926679778029:43926679779323 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926679781393:43926679784211 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926679785396:43926679786045 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926679786906:43926679787502 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926679788405:43926679788893 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926680242277:43926680243056 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926680244225:43926680245994 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926680246896:43926680619748 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926680621055:43926680621684 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926680636225:43926680636892 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926680661768:43926680662528 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 64 -43926680663740:43926680664246 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 64 -43926680665401:43926680666628 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926680667494:43926680676751 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926680678143:43926680682314 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092981320) = 0 -43926680683192:43926680683759 26036:26036 hsa_signal_store_relaxed(, 64) = void -43926680699011:43926680699669 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926680714766:43926680715404 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926680718218:43926680719066 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926680719909:43926680720299 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 65 -43926680721037:43926680721379 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 64 -43926680722335:43926680722674 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926680723510:43926680725232 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209298bca0) = 0 -43926680725997:43926680726444 26036:26036 hsa_signal_store_relaxed(, 65) = void -43926680727418:43926681189222 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926681190091:43926681190609 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926681191875:43926681192514 26036:26036 hsa_signal_destroy() = 0 -43926681193732:43926681194967 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926681195814:43926681196203 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926681196941:43926681197390 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926681198178:43926681198554 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926681199407:43926681199758 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926681214948:43926681215584 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926681271039:43926681274265 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926681275757:43926681276138 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926681279399:43926681279954 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926681281696:43926681282150 26036:26041 hsa_signal_destroy() = 0 -43926681284330:43926681284757 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926681285528:43926681285887 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926681216373:43926681637345 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926682097830:43926682098609 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926696490404:43926696491406 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926696495827:43926696497165 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926696499233:43926696501849 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926696506858:43926696507415 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926696508242:43926696508825 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926696509682:43926696510477 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926696979446:43926696980446 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926696981584:43926696983380 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926696984252:43926697357765 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926697358953:43926697359590 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926697373376:43926697374025 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926697394595:43926697395222 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 66 -43926697396127:43926697396526 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 66 -43926697397592:43926697398868 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926697399789:43926697400198 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926697401393:43926697414067 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092988840) = 0 -43926697415067:43926697415635 26036:26036 hsa_signal_store_relaxed(, 66) = void -43926697417161:43926697417796 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926697433686:43926697434334 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926697436846:43926697437608 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926697438451:43926697438869 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 67 -43926697439688:43926697440031 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 66 -43926697449925:43926697450283 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926697451124:43926697452536 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209299bd00) = 0 -43926697453309:43926697453759 26036:26036 hsa_signal_store_relaxed(, 67) = void -43926697454796:43926697915804 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926697916838:43926697917244 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926697918373:43926697919028 26036:26036 hsa_signal_destroy() = 0 -43926697920253:43926697921325 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926697922206:43926697922572 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926697923339:43926697923776 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926697926199:43926697926567 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926697941842:43926697942222 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926697943014:43926697943603 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926697997848:43926698001140 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926698002553:43926698002925 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926698006156:43926698006705 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926698008479:43926698008927 26036:26041 hsa_signal_destroy() = 0 -43926698011089:43926698011515 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926698012286:43926698012649 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926697944388:43926698365729 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926698825421:43926698826214 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926713208573:43926713209567 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926713213786:43926713214887 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926713216680:43926713218981 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926713220171:43926713220794 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926713221670:43926713222426 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926713223310:43926713223785 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926713699866:43926713700649 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926713701878:43926713703473 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926713704373:43926714077266 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926714078487:43926714079112 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926714095867:43926714096514 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926714119759:43926714129468 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 68 -43926714130436:43926714130831 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 68 -43926714131959:43926714133259 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926714134100:43926714134554 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926714135914:43926714140181 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092993f20) = 0 -43926714141132:43926714141704 26036:26036 hsa_signal_store_relaxed(, 68) = void -43926714143380:43926714144015 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926714151543:43926714152199 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926714154971:43926714155929 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926714156758:43926714157142 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 69 -43926714157879:43926714158218 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 68 -43926714159184:43926714159505 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926714160418:43926714161239 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209299c6c0) = 0 -43926714161985:43926714162376 26036:26036 hsa_signal_store_relaxed(, 69) = void -43926714163387:43926714641916 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926714642902:43926714643416 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926714644561:43926714645228 26036:26036 hsa_signal_destroy() = 0 -43926714646497:43926714647482 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926714648359:43926714648722 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926714649466:43926714649945 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926714650732:43926714651097 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926714651950:43926714652295 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926714667240:43926714667870 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926714723763:43926714727047 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926714728608:43926714728989 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926714732147:43926714732703 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926714734490:43926714734914 26036:26041 hsa_signal_destroy() = 0 -43926714737043:43926714737484 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926714738265:43926714738627 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926714668680:43926715090676 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926715549894:43926715550692 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926729932152:43926729933339 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926729937733:43926729939085 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926729941005:43926729943381 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926729944703:43926729945188 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926729949905:43926729950495 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926729951375:43926729951849 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926730403750:43926730404596 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926730405701:43926730407390 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926730408270:43926730781243 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926730782429:43926730783076 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926730796646:43926730797296 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926730820057:43926730820687 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 70 -43926730821768:43926730822174 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 70 -43926730823200:43926730833237 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926730834213:43926730834670 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926730836165:43926730839687 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929a88c0) = 0 -43926730840629:43926730841191 26036:26036 hsa_signal_store_relaxed(, 70) = void -43926730842588:43926730853356 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926730859588:43926730860243 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926730871776:43926730872581 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926730873402:43926730873779 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 71 -43926730874572:43926730874903 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 70 -43926730875827:43926730876159 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926730876977:43926730878630 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929a62e0) = 0 -43926730879371:43926730879819 26036:26036 hsa_signal_store_relaxed(, 71) = void -43926730880835:43926731348963 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926731349872:43926731350283 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926731351532:43926731352184 26036:26036 hsa_signal_destroy() = 0 -43926731353387:43926731354362 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926731355196:43926731355560 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926731356326:43926731356757 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926731357546:43926731357907 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926731358757:43926731359102 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926731377593:43926731378195 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926731430522:43926731433859 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926731435434:43926731435824 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926731438936:43926731439495 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926731441251:43926731441707 26036:26041 hsa_signal_destroy() = 0 -43926731443884:43926731444247 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926731445024:43926731445388 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926731378993:43926731797529 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926732264000:43926732264735 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926746642416:43926746643364 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926746647967:43926746649040 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926746650547:43926746652579 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926746653883:43926746654363 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926746655232:43926746655890 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926746656799:43926746657273 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926747110209:43926747111026 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926747112532:43926747114124 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926747115028:43926747487625 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926747488857:43926747489486 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926747502865:43926747503532 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926747524472:43926747525117 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 72 -43926747526154:43926747526785 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 72 -43926747527884:43926747529220 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926747539329:43926747539810 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926747541148:43926747544766 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929b1420) = 0 -43926747545801:43926747546366 26036:26036 hsa_signal_store_relaxed(, 72) = void -43926747547873:43926747558195 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926747564894:43926747565547 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926747581431:43926747582195 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926747583033:43926747583426 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 73 -43926747584218:43926747584552 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 72 -43926747585487:43926747585813 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926747586648:43926747588381 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929ab8d0) = 0 -43926747589125:43926747589581 26036:26036 hsa_signal_store_relaxed(, 73) = void -43926747590600:43926748056094 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926748057017:43926748057536 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926748058949:43926748059628 26036:26036 hsa_signal_destroy() = 0 -43926748060835:43926748061946 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926748062810:43926748063174 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926748063921:43926748064393 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926748065184:43926748065549 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926748066392:43926748080959 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926748081874:43926748082502 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926748138101:43926748141396 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926748142844:43926748143217 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926748146189:43926748146745 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926748148532:43926748148989 26036:26041 hsa_signal_destroy() = 0 -43926748151194:43926748151639 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926748152419:43926748152782 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926748083291:43926748504635 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926748967311:43926748968051 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926763345344:43926763346267 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926763350493:43926763351975 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926763353989:43926763356768 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926763357907:43926763358515 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926763359345:43926763360075 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926763360973:43926763361454 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926763816682:43926763817446 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926763818644:43926763820498 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926763821435:43926764194804 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926764196141:43926764196775 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926764212390:43926764213041 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926764231663:43926764232337 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 74 -43926764233422:43926764233827 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 74 -43926764234818:43926764236559 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926764237487:43926764237899 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926764248059:43926764251908 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929bfee0) = 0 -43926764253012:43926764253575 26036:26036 hsa_signal_store_relaxed(, 74) = void -43926764255076:43926764255715 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926764272029:43926764272681 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926764275203:43926764275964 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926764285688:43926764286043 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 75 -43926764286874:43926764287207 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 74 -43926764288217:43926764288547 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926764289657:43926764291274 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929ba6c0) = 0 -43926764292011:43926764292462 26036:26036 hsa_signal_store_relaxed(, 75) = void -43926764293513:43926764758629 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926764759546:43926764760014 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926764761158:43926764761807 26036:26036 hsa_signal_destroy() = 0 -43926764762983:43926764763968 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926764764803:43926764765204 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926764765949:43926764766377 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926764767168:43926764767534 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926764768388:43926764768729 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926764783959:43926764784578 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926764839632:43926764843001 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926764844473:43926764844855 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926764848114:43926764848674 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926764850451:43926764850876 26036:26041 hsa_signal_destroy() = 0 -43926764853033:43926764853461 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926764854230:43926764854589 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926764786516:43926765206636 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926765669634:43926765670377 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926780053105:43926780054002 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926780058078:43926780059263 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926780060986:43926780064004 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926780065104:43926780065663 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926780066522:43926780067269 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926780068180:43926780068654 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926780518099:43926780518759 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926780519904:43926780521475 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926780522371:43926780895399 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926780896723:43926780897345 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926780910591:43926780911235 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926780930354:43926780931169 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 76 -43926780932177:43926780932577 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 76 -43926780933650:43926780935014 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926780935903:43926780936451 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926780937738:43926780950610 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929ccff0) = 0 -43926780951675:43926780952252 26036:26036 hsa_signal_store_relaxed(, 76) = void -43926780953810:43926780954445 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926780970529:43926780971182 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926780974271:43926780974918 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926780975791:43926780976206 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 77 -43926780990356:43926780990703 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 76 -43926780991767:43926780992107 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926780992950:43926780994559 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929c8fb0) = 0 -43926780995303:43926780995700 26036:26036 hsa_signal_store_relaxed(, 77) = void -43926780996719:43926781458864 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926781459824:43926781460338 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926781461478:43926781462115 26036:26036 hsa_signal_destroy() = 0 -43926781463349:43926781464251 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926781465082:43926781465462 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926781466278:43926781466704 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926781467713:43926781468079 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926781468930:43926781469264 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926781484104:43926781484735 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926781540327:43926781543593 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926781545036:43926781545412 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926781548727:43926781549280 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926781551095:43926781551510 26036:26041 hsa_signal_destroy() = 0 -43926781553830:43926781554258 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926781555031:43926781555398 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926781485544:43926781907364 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926782369111:43926782369849 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926796757608:43926796758650 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926796762954:43926796764044 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926796765818:43926796768200 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926796769419:43926796769984 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926796770805:43926796771410 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926796772605:43926796773083 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926797226962:43926797227672 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926797232483:43926797233981 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926797234854:43926797607656 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926797608906:43926797609534 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926797623675:43926797624328 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926797642786:43926797643513 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 78 -43926797644732:43926797645131 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 78 -43926797646245:43926797647632 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926797648486:43926797648917 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926797650180:43926797663044 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929d8a90) = 0 -43926797664042:43926797664619 26036:26036 hsa_signal_store_relaxed(, 78) = void -43926797666080:43926797666716 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926797682710:43926797683370 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926797686124:43926797686894 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926797687756:43926797688152 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 79 -43926797697821:43926797698209 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 78 -43926797699160:43926797699483 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926797700314:43926797700795 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929d2340) = 0 -43926797701540:43926797701987 26036:26036 hsa_signal_store_relaxed(, 79) = void -43926797703003:43926798167477 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926798168398:43926798168804 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926798169929:43926798170569 26036:26036 hsa_signal_destroy() = 0 -43926798171813:43926798172800 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926798173655:43926798174054 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926798174797:43926798175227 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926798176017:43926798176382 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926798177223:43926798191893 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926798192799:43926798193426 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926798248801:43926798252110 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926798256432:43926798256890 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926798260054:43926798260608 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926798262364:43926798262775 26036:26041 hsa_signal_destroy() = 0 -43926798264896:43926798265318 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926798266090:43926798266450 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926798194217:43926798615435 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926799076841:43926799077581 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926813467997:43926813469050 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926813473277:43926813474523 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926813476697:43926813479351 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926813480493:43926813481072 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926813481930:43926813482532 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926813483426:43926813483902 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926813938052:43926813939026 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926813940541:43926813942187 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926813943086:43926814315736 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926814317061:43926814317690 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926814331129:43926814331786 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926814353838:43926814354512 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 80 -43926814355676:43926814356318 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 80 -43926814357537:43926814367464 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926814368392:43926814368785 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926814370062:43926814373952 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929e7ed0) = 0 -43926814374974:43926814375539 26036:26036 hsa_signal_store_relaxed(, 80) = void -43926814376927:43926814387787 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926814394372:43926814395031 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926814407023:43926814407802 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926814408659:43926814409038 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 81 -43926814409865:43926814410196 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 80 -43926814415087:43926814415419 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926814416308:43926814418008 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929e3ca0) = 0 -43926814418758:43926814419203 26036:26036 hsa_signal_store_relaxed(, 81) = void -43926814420220:43926814885119 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926814886057:43926814886519 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926814887658:43926814888321 26036:26036 hsa_signal_destroy() = 0 -43926814889550:43926814890523 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926814891411:43926814891820 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926814892585:43926814893024 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926814893814:43926814894176 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926814895047:43926814895379 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926814910825:43926814911450 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926814967047:43926814970211 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926814971743:43926814972117 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926814975183:43926814975725 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926814977487:43926814977903 26036:26041 hsa_signal_destroy() = 0 -43926814980022:43926814980456 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926814981226:43926814981587 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926814912234:43926815333335 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926815794332:43926815795072 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926830179959:43926830180914 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926830184947:43926830186014 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926830187837:43926830190967 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926830192119:43926830192686 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926830193522:43926830194118 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926830195007:43926830195487 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926830646478:43926830647250 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926830648609:43926830650134 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926830655276:43926831024014 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926831025328:43926831025955 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926831040508:43926831041157 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926831063836:43926831064432 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 82 -43926831065620:43926831066024 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 82 -43926831075817:43926831077061 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926831077929:43926831078391 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926831079597:43926831083259 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929ee6b0) = 0 -43926831084222:43926831084790 26036:26036 hsa_signal_store_relaxed(, 82) = void -43926831086212:43926831096924 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926831103171:43926831103825 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926831115993:43926831116807 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926831117644:43926831117968 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 83 -43926831118765:43926831119104 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 82 -43926831120080:43926831120409 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926831121220:43926831122818 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929edc30) = 0 -43926831123566:43926831124016 26036:26036 hsa_signal_store_relaxed(, 83) = void -43926831125022:43926831592120 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926831593096:43926831593512 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926831594521:43926831595185 26036:26036 hsa_signal_destroy() = 0 -43926831596414:43926831597475 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926831598333:43926831598697 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926831599465:43926831599884 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926831600676:43926831601040 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926831601887:43926831602232 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926831602989:43926831618106 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926831674461:43926831677873 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926831679361:43926831679734 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926831682728:43926831683284 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926831688055:43926831688511 26036:26041 hsa_signal_destroy() = 0 -43926831690674:43926831691223 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926831691999:43926831692358 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926831618942:43926832041073 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926832502268:43926832503010 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926846897759:43926846898900 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926846903336:43926846904366 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926846905877:43926846907816 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926846908951:43926846909586 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926846910446:43926846910988 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926846911879:43926846912361 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926847362442:43926847363271 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926847364401:43926847366054 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926847367015:43926847755386 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926847756524:43926847757153 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926847770161:43926847770820 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926847779532:43926847794921 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 84 -43926847796171:43926847796570 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 84 -43926847797715:43926847799080 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926847800018:43926847800355 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926847801602:43926847814241 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929f94b0) = 0 -43926847815311:43926847815880 26036:26036 hsa_signal_store_relaxed(, 84) = void -43926847817343:43926847817981 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926847838718:43926847839367 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926847851376:43926847852170 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926847853024:43926847853359 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 85 -43926847854180:43926847854511 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 84 -43926847855449:43926847855770 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926847858063:43926847859724 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929f8880) = 0 -43926847860477:43926847860926 26036:26036 hsa_signal_store_relaxed(, 85) = void -43926847861955:43926849699110 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926849700221:43926849700778 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926849701847:43926849702652 26036:26036 hsa_signal_destroy() = 0 -43926849703914:43926849704838 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926849705703:43926849706117 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926849706905:43926849707369 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926849717335:43926849717717 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926849718524:43926849718890 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926849719653:43926849720391 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926849756261:43926849759515 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926849761035:43926849761405 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926849774888:43926849775483 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926849777287:43926849777751 26036:26041 hsa_signal_destroy() = 0 -43926849779913:43926849780412 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926849781206:43926849781576 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926849721144:43926850151110 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926850612303:43926850613048 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926864999289:43926865000288 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926865004811:43926865005810 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926865007601:43926865009841 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926865010985:43926865011544 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926865012387:43926865013051 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926865013939:43926865014415 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926865468287:43926865469078 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926865470209:43926865471840 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926865472747:43926865860882 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926865862176:43926865862797 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926865881623:43926865882274 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926865900970:43926865901626 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 86 -43926865902651:43926865903057 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 86 -43926865904168:43926865914301 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926865915181:43926865915585 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926865916764:43926865920769 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929fa3e0) = 0 -43926865921707:43926865922271 26036:26036 hsa_signal_store_relaxed(, 86) = void -43926865923710:43926865934504 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926865940725:43926865941403 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926865952914:43926865953693 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926865954526:43926865954859 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 87 -43926865955653:43926865955989 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 86 -43926865956915:43926865957244 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926865958077:43926865959861 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a00c20) = 0 -43926865960606:43926865961052 26036:26036 hsa_signal_store_relaxed(, 87) = void -43926865962068:43926867806324 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926867807340:43926867807758 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926867808963:43926867809623 26036:26036 hsa_signal_destroy() = 0 -43926867811005:43926867812023 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926867812876:43926867813298 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926867814064:43926867823612 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926867824495:43926867824864 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926867825721:43926867826072 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926867826824:43926867827422 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926867862616:43926867865886 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926867867353:43926867867734 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926867881203:43926867881786 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926867883703:43926867884180 26036:26041 hsa_signal_destroy() = 0 -43926867889502:43926867890049 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926867890868:43926867891244 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926867828181:43926868258434 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926868720165:43926868720906 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926883098924:43926883099971 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926883104054:43926883105146 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926883106996:43926883109159 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926883110567:43926883111155 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926883112024:43926883112718 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926883113606:43926883114082 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926883569259:43926883569972 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926883571122:43926883572849 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926883573816:43926883962183 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926883963381:43926883964007 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926883977297:43926883977955 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926884006620:43926884007355 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 88 -43926884008410:43926884008891 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 88 -43926884018687:43926884019998 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926884020867:43926884021330 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926884022564:43926884026171 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a031e0) = 0 -43926884027158:43926884027725 26036:26036 hsa_signal_store_relaxed(, 88) = void -43926884029226:43926884039866 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926884046328:43926884047005 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926884058945:43926884059806 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926884060670:43926884061050 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 89 -43926884061891:43926884062226 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 88 -43926884063141:43926884063471 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926884064337:43926884066119 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a09d40) = 0 -43926884066905:43926884067301 26036:26036 hsa_signal_store_relaxed(, 89) = void -43926884071520:43926885910226 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926885911187:43926885911712 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926885912812:43926885913551 26036:26036 hsa_signal_destroy() = 0 -43926885914704:43926885915565 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926885916477:43926885916854 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926885917629:43926885918085 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926885927709:43926885928127 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926885928963:43926885929315 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926885930077:43926885930855 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926885966843:43926885970062 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926885971540:43926885971912 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926885985293:43926885985884 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926885987686:43926885988145 26036:26041 hsa_signal_destroy() = 0 -43926885990337:43926885990776 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926885991569:43926885991936 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926885931599:43926886362684 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926886825469:43926886826237 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926901212602:43926901213545 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926901217942:43926901218955 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926901220604:43926901223068 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926901224411:43926901224889 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926901225711:43926901226371 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926901227282:43926901227760 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926901680433:43926901681178 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926901682623:43926901684240 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926901685104:43926902073275 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926902074496:43926902075119 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926902088969:43926902089627 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926902112303:43926902113062 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 90 -43926902114036:43926902114441 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 90 -43926902115486:43926902116911 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926902126877:43926902127349 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926902128541:43926902132209 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a06680) = 0 -43926902133131:43926902133696 26036:26036 hsa_signal_store_relaxed(, 90) = void -43926902135184:43926902135823 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926902152322:43926902152973 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926902164747:43926902165541 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926902166388:43926902166773 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 91 -43926902167575:43926902167908 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 90 -43926902168842:43926902169164 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926902170002:43926902171692 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a08040) = 0 -43926902172445:43926902172894 26036:26036 hsa_signal_store_relaxed(, 91) = void -43926902173955:43926904019842 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926904020882:43926904021571 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926904022692:43926904023360 26036:26036 hsa_signal_destroy() = 0 -43926904024491:43926904025408 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926904026326:43926904026692 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926904027453:43926904027915 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926904037730:43926904038115 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926904038998:43926904039341 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926904040108:43926904040720 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926904077071:43926904080342 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926904081826:43926904082214 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926904095694:43926904096287 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926904098127:43926904098607 26036:26041 hsa_signal_destroy() = 0 -43926904100872:43926904101348 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926904105292:43926904105772 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926904041471:43926904471684 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926904935189:43926904935933 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926919312104:43926919313219 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926919317318:43926919318629 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926919320278:43926919322232 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926919323296:43926919323787 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926919324814:43926919325504 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926919326414:43926919326887 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926919777638:43926919778344 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926919779529:43926919781016 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926919781913:43926920169930 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926920171174:43926920171808 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926920185030:43926920185678 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926920205064:43926920205778 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 92 -43926920206854:43926920207242 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 92 -43926920208310:43926920209589 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926920210444:43926920210858 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926920212075:43926920224935 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a13eb0) = 0 -43926920226029:43926920226610 26036:26036 hsa_signal_store_relaxed(, 92) = void -43926920228117:43926920228758 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926920244805:43926920245456 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926920248405:43926920249339 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926920250217:43926920250615 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 93 -43926920260381:43926920260722 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 92 -43926920261665:43926920261989 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926920262855:43926920263747 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a22830) = 0 -43926920264721:43926920265176 26036:26036 hsa_signal_store_relaxed(, 93) = void -43926920266187:43926922105053 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926922111614:43926922112149 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926922122396:43926922123071 26036:26036 hsa_signal_destroy() = 0 -43926922124411:43926922125315 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926922126161:43926922126526 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926922127272:43926922127699 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926922128494:43926922128857 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926922129724:43926922130064 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926922130817:43926922141572 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926922161094:43926922164285 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926922165895:43926922166267 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926922179868:43926922180448 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926922182299:43926922182754 26036:26041 hsa_signal_destroy() = 0 -43926922184945:43926922185385 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926922186186:43926922186557 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926922142396:43926922566129 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926923027384:43926923028132 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926937422236:43926937423304 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926937428056:43926937429390 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926937430930:43926937433066 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926937434153:43926937434725 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926937435546:43926937436248 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926937437196:43926937437692 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926937909759:43926937910470 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926937911615:43926937913360 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926937914218:43926938301830 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926938303159:43926938303786 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926938317138:43926938317780 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926938337277:43926938338136 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 94 -43926938343178:43926938343608 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 94 -43926938344575:43926938345868 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926938355987:43926938356470 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926938357593:43926938361064 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a1bcb0) = 0 -43926938362037:43926938362604 26036:26036 hsa_signal_store_relaxed(, 94) = void -43926938364006:43926938364637 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926938380883:43926938381567 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926938393604:43926938394386 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926938395233:43926938395573 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 95 -43926938396367:43926938396701 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 94 -43926938397619:43926938397941 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926938398774:43926938400372 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a2dd10) = 0 -43926938401122:43926938401570 26036:26036 hsa_signal_store_relaxed(, 95) = void -43926938402567:43926940252262 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926940253338:43926940253757 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926940254878:43926940255540 26036:26036 hsa_signal_destroy() = 0 -43926940256740:43926940257687 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926940258562:43926940258941 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926940259704:43926940260143 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926940269832:43926940270265 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926940271144:43926940271495 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926940272256:43926940272898 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926940309075:43926940312432 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926940313841:43926940314212 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926940327561:43926940328153 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926940329931:43926940330393 26036:26041 hsa_signal_destroy() = 0 -43926940332580:43926940333024 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926940333825:43926940334193 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926940273655:43926940703615 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926941166603:43926941167436 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926955545461:43926955546461 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926955550754:43926955551852 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926955553696:43926955555886 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926955556998:43926955557542 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926955558399:43926955559076 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926955559971:43926955560451 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926956015898:43926956016665 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926956017926:43926956019605 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926956020564:43926956408206 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926956409485:43926956410121 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926956423978:43926956424640 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926956433143:43926956448459 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 96 -43926956449417:43926956449818 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 96 -43926956450983:43926956452148 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926956453077:43926956453596 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926956454971:43926956467218 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a28260) = 0 -43926956468274:43926956468845 26036:26036 hsa_signal_store_relaxed(, 96) = void -43926956470395:43926956471028 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926956487124:43926956487772 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926956490814:43926956491699 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926956492564:43926956492975 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 97 -43926956502676:43926956503072 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 96 -43926956504098:43926956504422 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926956505406:43926956506265 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a2e1c0) = 0 -43926956507237:43926956507697 26036:26036 hsa_signal_store_relaxed(, 97) = void -43926956508708:43926958348297 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926958349283:43926958349801 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926958354463:43926958355126 26036:26036 hsa_signal_destroy() = 0 -43926958356283:43926958366146 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926958367030:43926958367433 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926958368189:43926958368637 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926958369420:43926958369835 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926958370691:43926958371048 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926958371805:43926958372428 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926958404851:43926958408082 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926958409679:43926958410054 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926958423735:43926958424325 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926958426128:43926958426593 26036:26041 hsa_signal_destroy() = 0 -43926958428859:43926958429293 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926958430086:43926958430454 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926958373199:43926958808699 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926959270687:43926959271426 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926973656329:43926973657254 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926973661381:43926973662555 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926973664130:43926973666252 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926973667542:43926973668045 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926973668878:43926973669560 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926973670446:43926973670972 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926974144784:43926974145548 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926974146875:43926974148494 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926974149404:43926974536992 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926974538272:43926974538895 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926974552550:43926974553217 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926974561885:43926974562584 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 98 -43926974574469:43926974574882 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 98 -43926974575991:43926974577306 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926974582888:43926974583416 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926974593551:43926974596735 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a33f20) = 0 -43926974597713:43926974598287 26036:26036 hsa_signal_store_relaxed(, 98) = void -43926974599794:43926974600426 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926974616578:43926974617226 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926974619839:43926974620595 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926974630571:43926974630934 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 99 -43926974631773:43926974632114 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 98 -43926974633047:43926974633366 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926974634260:43926974635778 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a3c000) = 0 -43926974636518:43926974636916 26036:26036 hsa_signal_store_relaxed(, 99) = void -43926974637913:43926976479944 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926976480978:43926976481410 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926976482612:43926976483268 26036:26036 hsa_signal_destroy() = 0 -43926976484492:43926976485405 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926976486284:43926976486792 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926976487564:43926976488012 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926976497850:43926976498235 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926976499116:43926976499465 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926976500230:43926976500837 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926976537119:43926976540449 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926976541905:43926976542277 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926976555879:43926976556469 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926976558269:43926976558735 26036:26041 hsa_signal_destroy() = 0 -43926976560969:43926976561413 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926976562208:43926976562574 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926976501599:43926976932645 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926977395676:43926977396421 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926991774478:43926991775560 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926991779771:43926991780833 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926991782306:43926991784528 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43926991785618:43926991786398 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926991787275:43926991788011 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43926991788907:43926991789377 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926992264321:43926992265473 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926992266781:43926992268327 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43926992269295:43926992657046 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926992658385:43926992659017 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926992673113:43926992673759 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926992692926:43926992693567 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 100 -43926992694580:43926992694981 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 100 -43926992696055:43926992697449 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43926992698303:43926992698825 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926992699995:43926992712393 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092843250) = 0 -43926992713453:43926992714023 26036:26036 hsa_signal_store_relaxed(, 100) = void -43926992715574:43926992716232 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43926992732182:43926992732828 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43926992735524:43926992736288 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43926992737204:43926992737566 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 101 -43926992747618:43926992747976 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 100 -43926992748946:43926992749266 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43926992750212:43926992751059 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a3de40) = 0 -43926992751835:43926992752285 26036:26036 hsa_signal_store_relaxed(, 101) = void -43926992753325:43926994605505 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926994606518:43926994606986 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926994608092:43926994608753 26036:26036 hsa_signal_destroy() = 0 -43926994609865:43926994610715 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43926994625249:43926994625618 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43926994626386:43926994626899 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43926994627691:43926994628102 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43926994628964:43926994629309 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43926994630061:43926994630700 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43926994661861:43926994665088 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926994666503:43926994666879 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926994680165:43926994680751 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43926994682570:43926994683030 26036:26041 hsa_signal_destroy() = 0 -43926994685186:43926994685657 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926994686436:43926994686811 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43926994631456:43926995065574 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43926995527430:43926995528245 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927009904192:43927009905384 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927009909804:43927009911259 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927009912888:43927009915005 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927009916084:43927009916768 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927009917588:43927009918257 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927009919146:43927009919636 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927010370655:43927010371402 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927010372910:43927010374424 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927010375285:43927010763075 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927010764388:43927010765018 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927010782816:43927010783459 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927010801985:43927010803138 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 102 -43927010804179:43927010804584 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 102 -43927010805663:43927010816353 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927010817342:43927010817860 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927010820200:43927010823376 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209284ffa0) = 0 -43927010824341:43927010824906 26036:26036 hsa_signal_store_relaxed(, 102) = void -43927010826590:43927010837178 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927010843502:43927010844176 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927010856926:43927010857700 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927010858517:43927010858891 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 103 -43927010859683:43927010860020 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 102 -43927010860950:43927010861274 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927010862098:43927010863659 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209284f390) = 0 -43927010864406:43927010864990 26036:26036 hsa_signal_store_relaxed(, 103) = void -43927010865992:43927012715851 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927012716884:43927012717302 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927012718403:43927012719062 26036:26036 hsa_signal_destroy() = 0 -43927012720219:43927012721168 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927012722020:43927012722387 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927012723212:43927012723667 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927012733254:43927012733639 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927012734518:43927012734867 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927012735632:43927012736242 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927012772496:43927012775723 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927012777199:43927012777569 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927012791042:43927012791626 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927012793466:43927012793926 26036:26041 hsa_signal_destroy() = 0 -43927012796158:43927012796668 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927012797465:43927012797831 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927012737007:43927013167586 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927013628259:43927013629000 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927028007978:43927028009049 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927028017470:43927028018649 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927028020526:43927028022578 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927028023692:43927028024306 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927028025143:43927028025799 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927028026625:43927028027208 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927028475357:43927028476280 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927028477486:43927028479109 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927028480038:43927028868871 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927028870009:43927028870633 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927028884735:43927028885391 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927028904071:43927028904777 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 104 -43927028905758:43927028906158 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 104 -43927028907432:43927028908742 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927028909721:43927028910278 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927028911488:43927028923782 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928635d0) = 0 -43927028924785:43927028925356 26036:26036 hsa_signal_store_relaxed(, 104) = void -43927028926754:43927028927412 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927028943461:43927028944102 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927028946924:43927028947727 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927028948584:43927028948947 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 105 -43927028949765:43927028950105 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 104 -43927028959955:43927028960306 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927028961206:43927028962074 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209285d3a0) = 0 -43927028962828:43927028963278 26036:26036 hsa_signal_store_relaxed(, 105) = void -43927028964275:43927030811802 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927030812771:43927030813292 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927030814536:43927030815199 26036:26036 hsa_signal_destroy() = 0 -43927030816457:43927030817491 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927030818334:43927030818699 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927030829895:43927030830370 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927030831183:43927030831549 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927030832413:43927030832763 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927030833513:43927030834123 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927030868051:43927030871323 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927030872793:43927030873168 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927030886721:43927030887312 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927030889161:43927030889637 26036:26041 hsa_signal_destroy() = 0 -43927030891846:43927030892326 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927030893117:43927030893482 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927030834881:43927031271571 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927031733900:43927031734633 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927046116850:43927046117843 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927046122259:43927046123398 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927046125190:43927046127422 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927046128544:43927046129033 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927046129861:43927046130522 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927046131408:43927046131885 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927046601957:43927046602667 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927046603884:43927046605571 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927046606435:43927046995148 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927046996339:43927046996965 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927047014792:43927047015439 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927047033818:43927047034535 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 106 -43927047035612:43927047036029 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 106 -43927047037406:43927047038705 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927047048779:43927047049315 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927047050510:43927047053862 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928743b0) = 0 -43927047055817:43927047056405 26036:26036 hsa_signal_store_relaxed(, 106) = void -43927047068375:43927047069034 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927047075164:43927047075841 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927047087371:43927047088143 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927047088959:43927047089348 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 107 -43927047090137:43927047090470 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 106 -43927047091397:43927047091716 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927047092534:43927047094134 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209286d600) = 0 -43927047094880:43927047095326 26036:26036 hsa_signal_store_relaxed(, 107) = void -43927047096352:43927048942378 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927048943382:43927048943802 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927048944987:43927048945674 26036:26036 hsa_signal_destroy() = 0 -43927048946826:43927048947745 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927048948604:43927048948981 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927048949793:43927048950231 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927048960185:43927048960567 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927048961443:43927048961792 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927048962555:43927048963159 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927048999684:43927049002895 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927049004310:43927049004686 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927049017904:43927049018493 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927049020343:43927049020774 26036:26041 hsa_signal_destroy() = 0 -43927049022969:43927049023424 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927049024221:43927049024589 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927048963913:43927049394713 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927049857756:43927049858523 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927064242689:43927064243638 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927064247398:43927064248566 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927064250329:43927064252514 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927064259437:43927064260063 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927064260906:43927064261785 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927064262638:43927064263107 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927064711847:43927064712565 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927064713830:43927064715479 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927064716401:43927065105270 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927065106521:43927065107144 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927065120693:43927065121349 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927065140090:43927065140825 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 108 -43927065141825:43927065142224 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 108 -43927065143304:43927065144660 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927065145527:43927065146048 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927065147233:43927065159594 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209287ea90) = 0 -43927065160612:43927065161181 26036:26036 hsa_signal_store_relaxed(, 108) = void -43927065162727:43927065163363 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927065179204:43927065179857 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927065182858:43927065183644 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927065184514:43927065184913 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 109 -43927065185727:43927065186077 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 108 -43927065195980:43927065196330 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927065197166:43927065197655 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209287db30) = 0 -43927065198399:43927065198845 26036:26036 hsa_signal_store_relaxed(, 109) = void -43927065199908:43927067039101 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927067040160:43927067040680 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927067041846:43927067042489 26036:26036 hsa_signal_destroy() = 0 -43927067043704:43927067044664 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927067045611:43927067046064 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927067046825:43927067047267 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927067058434:43927067058798 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927067059673:43927067060023 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927067060783:43927067061392 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927067095412:43927067098651 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927067100129:43927067100500 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927067114061:43927067114646 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927067116494:43927067116909 26036:26041 hsa_signal_destroy() = 0 -43927067119193:43927067119669 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927067120460:43927067120826 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927067062158:43927067499536 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927067960816:43927067961555 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927082344162:43927082345164 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927082349357:43927082350531 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927082352473:43927082354894 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927082356224:43927082357034 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927082357868:43927082358566 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927082359469:43927082359948 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927082813083:43927082813794 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927082815134:43927082816549 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927082817412:43927083205933 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927083207151:43927083207781 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927083221274:43927083221929 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927083240692:43927083241412 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 110 -43927083242379:43927083242776 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 110 -43927083243943:43927083245177 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927083246132:43927083246642 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927083247921:43927083259948 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928885b0) = 0 -43927083260956:43927083261524 26036:26036 hsa_signal_store_relaxed(, 110) = void -43927083262982:43927083263619 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927083284618:43927083285264 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927083296641:43927083297458 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927083298281:43927083298662 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 111 -43927083299460:43927083299794 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 110 -43927083300734:43927083301060 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927083301883:43927083303462 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092887120) = 0 -43927083304211:43927083304661 26036:26036 hsa_signal_store_relaxed(, 111) = void -43927083305662:43927085138902 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927085139903:43927085140320 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927085141589:43927085142263 26036:26036 hsa_signal_destroy() = 0 -43927085143425:43927085144392 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927085145248:43927085145651 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927085146437:43927085146877 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927085156808:43927085157175 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927085158055:43927085158406 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927085159160:43927085159866 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927085196692:43927085199909 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927085201315:43927085201690 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927085215140:43927085215731 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927085217537:43927085218012 26036:26041 hsa_signal_destroy() = 0 -43927085220175:43927085220651 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927085221436:43927085221810 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927085160614:43927085592244 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927086054512:43927086055254 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927100434196:43927100435407 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927100439734:43927100440772 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927100442372:43927100444484 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927100445532:43927100446149 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927100450596:43927100451287 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927100452142:43927100452540 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927100901880:43927100902558 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927100903839:43927100905293 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927100906221:43927101278904 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927101280103:43927101280734 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927101294961:43927101295614 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927101314183:43927101314813 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 112 -43927101315864:43927101316265 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 112 -43927101317299:43927101318587 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927101319442:43927101319973 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927101321144:43927101333244 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209288a280) = 0 -43927101334229:43927101334804 26036:26036 hsa_signal_store_relaxed(, 112) = void -43927101336234:43927101336871 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927101352553:43927101353199 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927101355962:43927101356754 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927101357587:43927101357962 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 113 -43927101358772:43927101359116 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 112 -43927101369108:43927101369454 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927101370283:43927101372460 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092895410) = 0 -43927101373210:43927101373599 26036:26036 hsa_signal_store_relaxed(, 113) = void -43927101374599:43927101834010 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927101834931:43927101835436 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927101836602:43927101837312 26036:26036 hsa_signal_destroy() = 0 -43927101838619:43927101839510 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927101840341:43927101840734 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927101841536:43927101841965 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927101842756:43927101843100 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927101843970:43927101844311 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927101861171:43927101861797 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927101915154:43927101918460 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927101919873:43927101920246 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927101923374:43927101923938 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927101925678:43927101926138 26036:26041 hsa_signal_destroy() = 0 -43927101928286:43927101928752 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927101929530:43927101929889 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927101862596:43927102282964 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927102743235:43927102743984 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927117131894:43927117133009 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927117137423:43927117138494 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927117140185:43927117142331 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927117143634:43927117144236 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927117145056:43927117145728 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927117146613:43927117147012 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927117601028:43927117601794 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927117603041:43927117604575 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927117605439:43927117978047 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927117979272:43927117979897 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927117993152:43927117993801 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927118002588:43927118013525 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 114 -43927118014502:43927118014907 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 114 -43927118016089:43927118017574 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927118018565:43927118019043 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927118020267:43927118032719 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209288fc70) = 0 -43927118033709:43927118034596 26036:26036 hsa_signal_store_relaxed(, 114) = void -43927118036070:43927118036709 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927118052517:43927118053166 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927118069100:43927118070044 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927118070871:43927118071255 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 115 -43927118072046:43927118072375 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 114 -43927118073298:43927118073627 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927118074459:43927118076107 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092897200) = 0 -43927118076853:43927118077302 26036:26036 hsa_signal_store_relaxed(, 115) = void -43927118078329:43927118532382 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927118533255:43927118533670 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927118534800:43927118535458 26036:26036 hsa_signal_destroy() = 0 -43927118536608:43927118537481 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927118538314:43927118538705 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927118539504:43927118539929 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927118540718:43927118541060 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927118541921:43927118542268 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927118557291:43927118557900 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927118613645:43927118617027 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927118618445:43927118618819 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927118621977:43927118622528 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927118624297:43927118624712 26036:26041 hsa_signal_destroy() = 0 -43927118626839:43927118627280 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927118628056:43927118628411 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927118558716:43927118979836 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927119440922:43927119441664 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927133824230:43927133825224 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927133829662:43927133831185 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927133832800:43927133834891 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927133836001:43927133836621 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927133837478:43927133838148 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927133842702:43927133843104 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927134291450:43927134292162 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927134293409:43927134294964 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927134295876:43927134668377 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927134669612:43927134670237 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927134683790:43927134684438 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927134703364:43927134704119 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 116 -43927134705141:43927134705538 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 116 -43927134706577:43927134707863 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927134708841:43927134709357 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927134710542:43927134722867 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928957d0) = 0 -43927134723853:43927134724427 26036:26036 hsa_signal_store_relaxed(, 116) = void -43927134725822:43927134726457 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927134743823:43927134744464 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927134747427:43927134748247 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927134749107:43927134749506 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 117 -43927134759461:43927134759817 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 116 -43927134760759:43927134761082 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927134761929:43927134763466 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928ac1d0) = 0 -43927134764219:43927134764674 26036:26036 hsa_signal_store_relaxed(, 117) = void -43927134765702:43927135226718 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927135227733:43927135228252 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927135229303:43927135229978 26036:26036 hsa_signal_destroy() = 0 -43927135231194:43927135232255 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927135233095:43927135233536 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927135234340:43927135234765 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927135235554:43927135235895 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927135250966:43927135251387 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927135252205:43927135252971 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927135307047:43927135310253 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927135311717:43927135312107 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927135315207:43927135315770 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927135317539:43927135317995 26036:26041 hsa_signal_destroy() = 0 -43927135320144:43927135320592 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927135321364:43927135321725 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927135254644:43927135674748 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927136140732:43927136141467 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927150516381:43927150517370 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927150521523:43927150522630 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927150524255:43927150526396 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927150527555:43927150528236 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927150529076:43927150529748 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927150530636:43927150531032 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927150983729:43927150984822 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927150986004:43927150987696 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927150988716:43927151361263 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927151362492:43927151363117 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927151377298:43927151377948 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927151400203:43927151401015 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 118 -43927151402083:43927151402487 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 118 -43927151403610:43927151413624 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927151414601:43927151415117 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927151416295:43927151419405 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928a1b60) = 0 -43927151420388:43927151420976 26036:26036 hsa_signal_store_relaxed(, 118) = void -43927151422517:43927151433339 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927151439739:43927151440386 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927151451958:43927151452751 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927151457501:43927151457887 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 119 -43927151458681:43927151459017 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 118 -43927151459951:43927151460279 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927151461100:43927151462808 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928b1360) = 0 -43927151463559:43927151464010 26036:26036 hsa_signal_store_relaxed(, 119) = void -43927151465060:43927151923044 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927151924028:43927151924444 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927151925457:43927151926100 26036:26036 hsa_signal_destroy() = 0 -43927151927368:43927151928237 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927151929225:43927151929617 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927151930389:43927151930820 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927151931612:43927151931958 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927151932842:43927151933188 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927151948133:43927151948792 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927152025224:43927152028759 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927152030303:43927152030700 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927152033815:43927152034387 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927152036203:43927152036683 26036:26041 hsa_signal_destroy() = 0 -43927152038922:43927152039357 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927152040156:43927152040523 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927151949624:43927152383301 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927152844697:43927152845440 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927167222547:43927167223560 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927167227569:43927167228577 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927167230358:43927167232566 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927167233940:43927167234525 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927167235400:43927167236162 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927167237106:43927167237500 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927167691531:43927167692242 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927167697493:43927167699161 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927167699993:43927168072959 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927168074320:43927168074961 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927168089024:43927168089668 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927168112407:43927168113126 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 120 -43927168114248:43927168114739 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 120 -43927168124703:43927168125992 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927168126863:43927168127339 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927168128539:43927168132434 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928aefd0) = 0 -43927168133323:43927168133888 26036:26036 hsa_signal_store_relaxed(, 120) = void -43927168135426:43927168146068 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927168152684:43927168153340 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927168165213:43927168166035 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927168166856:43927168167237 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 121 -43927168168044:43927168168373 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 120 -43927168169308:43927168169637 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927168170483:43927168172226 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928bd260) = 0 -43927168172984:43927168173433 26036:26036 hsa_signal_store_relaxed(, 121) = void -43927168174449:43927168636593 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927168637491:43927168638003 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927168639118:43927168639892 26036:26036 hsa_signal_destroy() = 0 -43927168641083:43927168641927 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927168642766:43927168643158 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927168643908:43927168644321 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927168645111:43927168645457 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927168646325:43927168646662 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927168661755:43927168662404 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927168717869:43927168721144 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927168725685:43927168726127 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927168729278:43927168729838 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927168731659:43927168732107 26036:26041 hsa_signal_destroy() = 0 -43927168734466:43927168734911 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927168735689:43927168736049 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927168663213:43927169083929 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927169546416:43927169547200 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927183924489:43927183925344 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927183929564:43927183930781 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927183932532:43927183934678 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927183935751:43927183936355 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927183937177:43927183937842 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927183938730:43927183939202 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927184397146:43927184397977 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927184399205:43927184400942 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927184401878:43927184774169 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927184775402:43927184776029 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927184789601:43927184790242 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927184812847:43927184813701 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 122 -43927184814763:43927184815248 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 122 -43927184816320:43927184817565 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927184827290:43927184827769 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927184829092:43927184832673 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928b6cb0) = 0 -43927184833605:43927184834171 26036:26036 hsa_signal_store_relaxed(, 122) = void -43927184835586:43927184836224 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927184853151:43927184853806 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927184865473:43927184866229 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927184867047:43927184867424 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 123 -43927184868251:43927184868584 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 122 -43927184873169:43927184873497 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927184874327:43927184876178 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928c4f30) = 0 -43927184876939:43927184877393 26036:26036 hsa_signal_store_relaxed(, 123) = void -43927184878388:43927185338955 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927185339903:43927185340313 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927185341433:43927185342276 26036:26036 hsa_signal_destroy() = 0 -43927185343475:43927185344594 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927185345437:43927185345887 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927185346636:43927185347092 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927185347882:43927185348226 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927185349092:43927185363835 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927185364719:43927185365315 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927185420727:43927185424063 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927185425504:43927185425884 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927185429158:43927185429710 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927185431476:43927185431920 26036:26041 hsa_signal_destroy() = 0 -43927185434103:43927185434527 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927185435297:43927185435657 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927185366112:43927185786839 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927186247399:43927186248137 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927200629036:43927200629921 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927200634313:43927200635600 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927200637497:43927200639947 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927200640939:43927200641516 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927200642372:43927200643062 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927200643953:43927200644353 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927201092681:43927201093472 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927201094880:43927201096683 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927201101326:43927201470009 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927201471168:43927201471799 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927201484975:43927201485625 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927201509343:43927201509942 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 124 -43927201511067:43927201511471 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 124 -43927201512605:43927201522900 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927201523785:43927201524250 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927201525404:43927201529038 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928c0ff0) = 0 -43927201530072:43927201530638 26036:26036 hsa_signal_store_relaxed(, 124) = void -43927201532043:43927201542920 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927201549198:43927201549857 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927201561877:43927201562928 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927201563746:43927201564070 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 125 -43927201564870:43927201565205 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 124 -43927201566165:43927201566490 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927201567602:43927201569251 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928cfaa0) = 0 -43927201569997:43927201570388 26036:26036 hsa_signal_store_relaxed(, 125) = void -43927201571378:43927202042677 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927202043717:43927202044226 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927202045414:43927202046089 26036:26036 hsa_signal_destroy() = 0 -43927202047258:43927202048212 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927202049040:43927202049433 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927202050193:43927202050621 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927202051473:43927202051818 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927202066980:43927202067403 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927202068221:43927202068818 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927202123989:43927202127280 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927202128847:43927202129232 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927202132365:43927202132914 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927202137621:43927202138072 26036:26041 hsa_signal_destroy() = 0 -43927202140255:43927202140745 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927202141521:43927202141879 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927202069621:43927202490957 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927202951479:43927202952220 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927217331267:43927217332261 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927217336525:43927217337591 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927217339180:43927217341437 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927217342526:43927217343082 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927217343904:43927217344562 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927217345674:43927217346141 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927217800864:43927217801575 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927217802924:43927217804515 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927217805379:43927218178044 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927218179322:43927218179949 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927218193269:43927218193931 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927218216690:43927218217404 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 126 -43927218218458:43927218218866 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 126 -43927218219903:43927218229979 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927218230964:43927218231369 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927218232641:43927218236310 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928c41d0) = 0 -43927218237326:43927218238045 26036:26036 hsa_signal_store_relaxed(, 126) = void -43927218239453:43927218250163 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927218256619:43927218257272 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927218269286:43927218270104 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927218270925:43927218271303 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 127 -43927218272131:43927218272463 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 126 -43927218273643:43927218273972 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927218278701:43927218280305 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928d2d40) = 0 -43927218281056:43927218281506 26036:26036 hsa_signal_store_relaxed(, 127) = void -43927218282511:43927218745863 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927218746849:43927218747258 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927218748434:43927218749067 26036:26036 hsa_signal_destroy() = 0 -43927218750262:43927218751132 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927218751957:43927218752397 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927218753205:43927218753638 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927218754433:43927218754781 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927218755649:43927218755985 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927218756736:43927218757321 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927218828564:43927218831909 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927218833427:43927218833803 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927218836912:43927218837463 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927218839260:43927218839673 26036:26041 hsa_signal_destroy() = 0 -43927218841788:43927218842211 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927218842983:43927218843346 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927218771945:43927219183077 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927219643154:43927219643895 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927234025184:43927234026127 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927234030020:43927234031294 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927234032835:43927234035017 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927234036263:43927234036958 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927234037826:43927234038456 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927234039351:43927234039762 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927234491680:43927234492517 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927234493681:43927234495211 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927234496268:43927234868838 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927234875655:43927234876295 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927234905637:43927234906296 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927234923928:43927234924630 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 128 -43927234925647:43927234926041 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 128 -43927234927096:43927234928387 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927234929288:43927234929851 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927234930993:43927234934530 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928d6260) = 0 -43927234935505:43927234936070 26036:26036 hsa_signal_store_relaxed(, 128) = void -43927234937531:43927234938166 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927234943967:43927234944607 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927234947247:43927234948008 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927234949060:43927234949445 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 129 -43927234950238:43927234950574 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 128 -43927234951490:43927234951815 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927234952656:43927234953424 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928dc520) = 0 -43927234954163:43927234954555 26036:26036 hsa_signal_store_relaxed(, 129) = void -43927234955616:43927235433027 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927235434109:43927235434619 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927235435767:43927235436411 26036:26036 hsa_signal_destroy() = 0 -43927235437583:43927235438518 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927235439375:43927235439760 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927235440572:43927235440997 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927235441788:43927235442140 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927235443003:43927235443342 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927235458320:43927235458957 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927235514447:43927235517761 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927235519218:43927235519591 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927235522668:43927235523218 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927235524981:43927235525435 26036:26041 hsa_signal_destroy() = 0 -43927235530694:43927235531187 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927235531965:43927235532320 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927235459768:43927235879860 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927236346956:43927236347693 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927250725630:43927250726769 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927250730690:43927250731994 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927250733550:43927250735852 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927250736919:43927250737496 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927250738316:43927250739003 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927250739906:43927250740306 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927251190740:43927251191451 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927251192640:43927251194082 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927251194946:43927251567674 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927251569457:43927251570085 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927251583152:43927251583803 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927251606692:43927251607288 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 130 -43927251608328:43927251608734 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 130 -43927251609846:43927251611162 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927251621202:43927251621623 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927251622845:43927251626605 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928e0ef0) = 0 -43927251627566:43927251628151 26036:26036 hsa_signal_store_relaxed(, 130) = void -43927251629480:43927251640254 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927251646720:43927251647381 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927251659926:43927251660671 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927251661499:43927251661830 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 131 -43927251662658:43927251662995 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 130 -43927251663959:43927251664286 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927251665146:43927251666979 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928ded80) = 0 -43927251671690:43927251672081 26036:26036 hsa_signal_store_relaxed(, 131) = void -43927251673075:43927252133166 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927252134189:43927252134613 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927252135812:43927252136437 26036:26036 hsa_signal_destroy() = 0 -43927252137608:43927252138502 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927252139424:43927252139811 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927252140672:43927252141120 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927252141911:43927252142260 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927252143122:43927252143466 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927252158521:43927252159167 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927252214939:43927252218254 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927252219681:43927252220056 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927252223228:43927252223780 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927252225581:43927252225992 26036:26041 hsa_signal_destroy() = 0 -43927252228125:43927252228552 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927252229326:43927252229686 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927252159971:43927252581455 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927253040924:43927253041708 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927267416100:43927267416983 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927267420832:43927267422113 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927267423759:43927267425837 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927267427177:43927267427767 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927267428632:43927267429319 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927267430212:43927267430685 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927267884541:43927267885202 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927267886463:43927267887966 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927267888869:43927268261605 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927268263080:43927268263714 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927268276896:43927268277555 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927268312569:43927268313289 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 132 -43927268314309:43927268314697 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 132 -43927268315808:43927268317372 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927268318210:43927268318674 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927268319871:43927268323646 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928ea090) = 0 -43927268324615:43927268325440 26036:26036 hsa_signal_store_relaxed(, 132) = void -43927268326775:43927268327411 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927268333520:43927268334180 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927268336636:43927268337389 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927268338209:43927268338537 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 133 -43927268339334:43927268339664 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 132 -43927268340608:43927268340937 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927268341765:43927268342486 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928e5990) = 0 -43927268343234:43927268343623 26036:26036 hsa_signal_store_relaxed(, 133) = void -43927268811702:43927268815219 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927268816925:43927268817395 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927268822068:43927268823886 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927268824903:43927268825283 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927268344623:43927268852396 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927268864039:43927268864598 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927268866355:43927268867161 26036:26036 hsa_signal_destroy() = 0 -43927268868248:43927268868816 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927268869731:43927268870200 26036:26036 hsa_signal_destroy() = 0 -43927268871498:43927268873132 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927268874027:43927268874508 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927268875352:43927268875912 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927268876662:43927268877100 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927268878046:43927268878487 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927268881706:43927268882809 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927268883605:43927269291320 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927269735770:43927269736568 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927284354559:43927284355457 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927284361498:43927284362727 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927284364518:43927284366957 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927284368107:43927284368757 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927284369592:43927284370197 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927284371000:43927284371480 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927284824781:43927284825663 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927284826788:43927284828506 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927284829312:43927285202169 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927285203402:43927285204030 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927285220574:43927285221249 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927285245656:43927285255494 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 134 -43927285256428:43927285256919 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 134 -43927285258208:43927285259728 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927285260549:43927285260913 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927285262339:43927285266560 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928f55b0) = 0 -43927285267396:43927285268075 26036:26036 hsa_signal_store_relaxed(, 134) = void -43927285269689:43927285270324 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927285277098:43927285277734 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927285280940:43927285281703 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927285282487:43927285282825 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 135 -43927285283602:43927285283937 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 134 -43927285284964:43927285285294 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927285286237:43927285287017 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20928f1410) = 0 -43927285287785:43927285288224 26036:26036 hsa_signal_store_relaxed(, 135) = void -43927285289191:43927285771818 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927285776590:43927285777028 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927285778146:43927285778942 26036:26036 hsa_signal_destroy() = 0 -43927285780076:43927285781097 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927285781948:43927285782327 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927285797408:43927285797902 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927285798686:43927285799050 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927285799873:43927285800256 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927285801031:43927285801684 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927285853525:43927285856725 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927285858222:43927285858606 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927285861436:43927285861998 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927285863716:43927285864171 26036:26041 hsa_signal_destroy() = 0 -43927285866272:43927285866706 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927285867487:43927285867850 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927285802496:43927286224338 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927286683712:43927286684477 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927301203672:43927301204912 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927301209425:43927301210717 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927301212104:43927301215208 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927301216303:43927301216887 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927301217997:43927301218644 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927301219537:43927301219942 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927301676861:43927301677572 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927301678749:43927301680512 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927301681639:43927302054397 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927302055597:43927302056225 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927302076916:43927302077574 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927302097399:43927302098002 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 136 -43927302109452:43927302109857 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 136 -43927302110848:43927302112151 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927302112967:43927302113362 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927302114567:43927302118371 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092909b30) = 0 -43927302119395:43927302119961 26036:26036 hsa_signal_store_relaxed(, 136) = void -43927302121416:43927302122056 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927302128086:43927302128743 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927302131667:43927302132392 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927302133220:43927302133562 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 137 -43927302134357:43927302134690 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 136 -43927302135624:43927302135943 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927302136800:43927302137553 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929054a0) = 0 -43927302138309:43927302138704 26036:26036 hsa_signal_store_relaxed(, 137) = void -43927302607074:43927302611021 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927302612934:43927302613472 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927302617264:43927302619122 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927302620183:43927302620570 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927302139651:43927302648446 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927302660131:43927302660703 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927302662534:43927302663341 26036:26036 hsa_signal_destroy() = 0 -43927302664442:43927302664993 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927302665908:43927302666349 26036:26036 hsa_signal_destroy() = 0 -43927302667704:43927302669210 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927302670126:43927302670656 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927302671456:43927302672020 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927302672769:43927302673157 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927302674083:43927302674521 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927302675359:43927302676438 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927302677220:43927303085701 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927303532835:43927303533641 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927318077094:43927318078292 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927318084639:43927318085909 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927318087711:43927318089943 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927318091226:43927318091866 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927318092712:43927318093271 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927318094056:43927318094527 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927318547481:43927318548321 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927318549525:43927318551384 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927318552188:43927318925173 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927318926285:43927318926914 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927318943994:43927318944666 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927318968809:43927318978633 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 138 -43927318979605:43927318980105 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 138 -43927318981417:43927318983178 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927318983997:43927318984359 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927318985830:43927318990235 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092910590) = 0 -43927318991073:43927318991747 26036:26036 hsa_signal_store_relaxed(, 138) = void -43927318993433:43927318994068 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927319004716:43927319005355 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927319009207:43927319009921 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927319010709:43927319011100 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 139 -43927319011880:43927319012225 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 138 -43927319013222:43927319013546 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927319014433:43927319016314 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209290e810) = 0 -43927319017088:43927319017545 26036:26036 hsa_signal_store_relaxed(, 139) = void -43927319018535:43927319492776 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927319493731:43927319494157 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927319497924:43927319498682 26036:26036 hsa_signal_destroy() = 0 -43927319499803:43927319500896 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927319501732:43927319502150 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927319502914:43927319517570 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927319518446:43927319518811 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927319519649:43927319520014 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927319520804:43927319521474 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927319573876:43927319577219 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927319578686:43927319579057 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927319581813:43927319582381 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927319584116:43927319584587 26036:26041 hsa_signal_destroy() = 0 -43927319586760:43927319587212 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927319587984:43927319588342 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927319522283:43927319941686 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927320409901:43927320410632 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927334960053:43927334961008 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927334965709:43927334966793 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927334969100:43927334972234 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927334973345:43927334973983 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927334974840:43927334975434 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927334976337:43927334976822 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927335426737:43927335427636 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927335428720:43927335430411 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927335431309:43927335804057 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927335805148:43927335805777 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927335820567:43927335821226 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927335846301:43927335847015 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 140 -43927335848190:43927335848590 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 140 -43927335862932:43927335864391 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927335865328:43927335865792 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927335866967:43927335870725 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092919f60) = 0 -43927335871639:43927335872214 26036:26036 hsa_signal_store_relaxed(, 140) = void -43927335873740:43927335884367 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927335890787:43927335891446 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927335903632:43927335904352 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927335905180:43927335905555 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 141 -43927335906293:43927335906629 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 140 -43927335907542:43927335907864 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927335908692:43927335910351 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929081b0) = 0 -43927335911103:43927335911549 26036:26036 hsa_signal_store_relaxed(, 141) = void -43927335912538:43927336378590 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927336379905:43927336380493 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927336381599:43927336382266 26036:26036 hsa_signal_destroy() = 0 -43927336383638:43927336384826 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927336385670:43927336386062 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927336386831:43927336387291 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927336388030:43927336388400 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927336403777:43927336404156 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927336404962:43927336405824 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927336460194:43927336463770 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927336465203:43927336465575 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927336468672:43927336469224 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927336470994:43927336471440 26036:26041 hsa_signal_destroy() = 0 -43927336473607:43927336474046 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927336474816:43927336475172 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927336406602:43927336828016 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927337287378:43927337288117 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927351668144:43927351669146 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927351673423:43927351674685 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927351676697:43927351679582 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927351680714:43927351681357 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927351682191:43927351682823 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927351683720:43927351684124 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927352142440:43927352143183 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927352144380:43927352145952 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927352146877:43927352519673 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927352520826:43927352521457 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927352535638:43927352536304 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927352560952:43927352561669 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 142 -43927352562667:43927352563060 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 142 -43927352564188:43927352565400 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927352566302:43927352567002 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927352577068:43927352581478 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209291baf0) = 0 -43927352582501:43927352583069 26036:26036 hsa_signal_store_relaxed(, 142) = void -43927352584529:43927352585162 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927352601616:43927352602262 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927352614013:43927352614808 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927352615645:43927352616018 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 143 -43927352616867:43927352617201 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 142 -43927352618190:43927352618517 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927352619652:43927352621474 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092923b80) = 0 -43927352622229:43927352622676 26036:26036 hsa_signal_store_relaxed(, 143) = void -43927352623706:43927353087458 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927353088329:43927353088742 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927353089832:43927353090481 26036:26036 hsa_signal_destroy() = 0 -43927353095320:43927353096344 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927353097258:43927353097658 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927353112635:43927353113102 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927353113917:43927353114304 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927353115115:43927353115473 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927353116242:43927353116847 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927353167943:43927353171198 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927353172645:43927353173027 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927353176197:43927353176761 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927353178491:43927353178949 26036:26041 hsa_signal_destroy() = 0 -43927353181119:43927353181544 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927353182321:43927353182685 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927353117623:43927353539487 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927354001352:43927354002134 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927368411678:43927368412725 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927368417160:43927368418588 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927368420474:43927368422546 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927368423642:43927368424206 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927368425109:43927368425972 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927368426849:43927368427589 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927368875053:43927368875772 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927368877044:43927368878872 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927368879764:43927369252494 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927369253601:43927369254220 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927369267556:43927369268209 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927369287644:43927369288379 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 144 -43927369289427:43927369289827 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 144 -43927369290932:43927369292197 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927369293185:43927369293696 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927369309657:43927369313672 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092929c20) = 0 -43927369314588:43927369315415 26036:26036 hsa_signal_store_relaxed(, 144) = void -43927369317029:43927369327943 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927369334488:43927369335163 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927369347054:43927369347833 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927369348827:43927369349203 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 145 -43927369349995:43927369350329 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 144 -43927369351249:43927369351578 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927369352401:43927369354089 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209292d8d0) = 0 -43927369354838:43927369355293 26036:26036 hsa_signal_store_relaxed(, 145) = void -43927369356459:43927369828516 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927369829434:43927369829944 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927369831110:43927369831762 26036:26036 hsa_signal_destroy() = 0 -43927369832786:43927369833804 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927369834633:43927369835025 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927369835789:43927369836210 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927369837000:43927369837361 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927369838204:43927369838547 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927369853301:43927369853926 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927369909797:43927369913168 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927369914648:43927369915019 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927369918203:43927369918756 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927369920534:43927369920994 26036:26041 hsa_signal_destroy() = 0 -43927369923113:43927369923536 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927369924307:43927369924666 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927369854730:43927370275973 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927370737058:43927370737798 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927385128297:43927385129415 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927385137342:43927385138619 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927385140447:43927385142657 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927385143788:43927385144425 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927385145248:43927385145876 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927385146709:43927385147178 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927385618205:43927385619171 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927385620426:43927385622169 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927385623033:43927385996161 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927385997342:43927385997968 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927386011780:43927386012425 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927386035848:43927386036640 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 146 -43927386037767:43927386038233 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 146 -43927386048251:43927386049557 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927386050475:43927386050953 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927386052379:43927386056003 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209292ab10) = 0 -43927386056953:43927386057519 26036:26036 hsa_signal_store_relaxed(, 146) = void -43927386059024:43927386069652 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927386076298:43927386076946 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927386088886:43927386089657 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927386090483:43927386090863 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 147 -43927386091660:43927386091997 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 146 -43927386092931:43927386093271 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927386094092:43927386095633 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f209293d3a0) = 0 -43927386096384:43927386096884 26036:26036 hsa_signal_store_relaxed(, 147) = void -43927386097904:43927386564531 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927386565430:43927386565882 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927386567046:43927386567684 26036:26036 hsa_signal_destroy() = 0 -43927386568926:43927386569793 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927386570867:43927386571318 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927386573566:43927386574028 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927386589123:43927386589562 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927386590407:43927386590763 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927386591541:43927386592157 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927386646098:43927386649459 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927386650958:43927386651329 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927386654447:43927386655007 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927386656798:43927386657221 26036:26041 hsa_signal_destroy() = 0 -43927386659323:43927386659745 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927386660523:43927386660881 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927386592940:43927387013129 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927387473761:43927387474502 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927401858883:43927401859781 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927401863959:43927401864996 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927401866687:43927401868779 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927401870001:43927401870694 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927401871555:43927401872175 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927401873064:43927401873465 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927402328351:43927402329162 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927402330585:43927402332046 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927402332947:43927402705473 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927402706651:43927402707283 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927402721537:43927402722184 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927402744792:43927402745513 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 148 -43927402746591:43927402747055 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 148 -43927402757242:43927402758563 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927402759513:43927402760030 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927402761229:43927402764867 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092935190) = 0 -43927402780009:43927402780590 26036:26036 hsa_signal_store_relaxed(, 148) = void -43927402782136:43927402782775 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927402798431:43927402799065 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927402801764:43927402802522 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927402803336:43927402803727 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 149 -43927402804516:43927402804856 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 148 -43927402805799:43927402806129 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927402806955:43927402808588 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a44980) = 0 -43927402809370:43927402809828 26036:26036 hsa_signal_store_relaxed(, 149) = void -43927402810834:43927403277399 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927403293606:43927403294136 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927403295288:43927403296059 26036:26036 hsa_signal_destroy() = 0 -43927403297265:43927403298208 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927403299100:43927403299531 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927403300293:43927403300737 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927403301544:43927403301916 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927403302789:43927403303148 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927403303929:43927403304543 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927403311097:43927403323579 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927403325070:43927403325445 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927403328625:43927403329175 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927403330952:43927403331418 26036:26041 hsa_signal_destroy() = 0 -43927403333559:43927403333988 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927403334760:43927403335116 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927403305317:43927403714281 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927404182801:43927404183609 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927418560084:43927418561034 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927418565309:43927418566357 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927418568289:43927418570407 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927418575255:43927418575920 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927418576750:43927418577454 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927418578306:43927418578707 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927419031335:43927419032025 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927419033210:43927419034690 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927419035629:43927419408314 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927419409570:43927419410195 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927419424137:43927419424789 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927419443371:43927419444083 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 150 -43927419444986:43927419445397 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 150 -43927419446480:43927419447986 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927419448908:43927419449418 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927419450614:43927419463364 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f20929407d0) = 0 -43927419464307:43927419464875 26036:26036 hsa_signal_store_relaxed(, 150) = void -43927419466289:43927419466934 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927419482997:43927419483654 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927419486377:43927419487141 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927419487979:43927419488340 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 151 -43927419489198:43927419498396 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 150 -43927419499407:43927419499737 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927419500662:43927419501094 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a5afb0) = 0 -43927419501842:43927419502236 26036:26036 hsa_signal_store_relaxed(, 151) = void -43927419503245:43927419963817 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927419964789:43927419965213 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927419966379:43927419967117 26036:26036 hsa_signal_destroy() = 0 -43927419968296:43927419969371 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927419970220:43927419970615 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927419971372:43927419971823 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927419974313:43927419974698 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927419975505:43927419975861 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927419976630:43927419977267 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927420011273:43927420014998 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927420016557:43927420016945 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927420020304:43927420020884 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927420022677:43927420023152 26036:26041 hsa_signal_destroy() = 0 -43927420025363:43927420025822 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927420026607:43927420026983 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927419978033:43927420381261 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927420828888:43927420829628 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927435208390:43927435209267 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927435213082:43927435214089 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927435216075:43927435218305 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927435219563:43927435220278 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927435221151:43927435221813 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927435222905:43927435223339 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927435673468:43927435674230 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927435675562:43927435677140 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927435678091:43927436050891 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927436052159:43927436052796 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927436066613:43927436067258 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927436086432:43927436087162 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 152 -43927436088160:43927436088642 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 152 -43927436089851:43927436091343 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927436092215:43927436092739 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927436093932:43927436107221 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a530f0) = 0 -43927436108539:43927436109138 26036:26036 hsa_signal_store_relaxed(, 152) = void -43927436124387:43927436125053 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927436131121:43927436140650 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927436143454:43927436144230 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927436145042:43927436145422 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 153 -43927436146221:43927436146554 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 152 -43927436147493:43927436147814 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927436148704:43927436150544 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a5b3f0) = 0 -43927436151293:43927436151744 26036:26036 hsa_signal_store_relaxed(, 153) = void -43927436152739:43927436615879 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927436616806:43927436617325 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927436618556:43927436619285 26036:26036 hsa_signal_destroy() = 0 -43927436620435:43927436621795 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927436622635:43927436623110 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927436623907:43927436624337 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927436625129:43927436625501 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927436640682:43927436641060 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927436641854:43927436642499 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927436696873:43927436700293 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927436701721:43927436702092 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927436705263:43927436705816 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927436707542:43927436707991 26036:26041 hsa_signal_destroy() = 0 -43927436710134:43927436710556 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927436711329:43927436711689 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927436643278:43927437064169 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927437525279:43927437526016 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927451901185:43927451902182 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927451906293:43927451907523 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927451909177:43927451911373 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927451912648:43927451913237 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927451918210:43927451918899 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927451919766:43927451920281 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927452378643:43927452379364 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927452380576:43927452382297 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927452383235:43927452755881 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927452756997:43927452757628 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927452771275:43927452771923 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927452790530:43927452791250 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 154 -43927452792294:43927452792778 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 154 -43927452793914:43927452795174 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927452796054:43927452796577 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927452797961:43927452810598 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a5e320) = 0 -43927452811599:43927452812172 26036:26036 hsa_signal_store_relaxed(, 154) = void -43927452813560:43927452814196 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927452830908:43927452831562 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927452834511:43927452835258 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927452836081:43927452836504 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 155 -43927452837311:43927452846559 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 154 -43927452847520:43927452847843 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927452848666:43927452849094 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a6c840) = 0 -43927452849836:43927452850283 26036:26036 hsa_signal_store_relaxed(, 155) = void -43927452851306:43927453306219 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927453307196:43927453307599 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927453308677:43927453309387 26036:26036 hsa_signal_destroy() = 0 -43927453310570:43927453311731 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927453312567:43927453312962 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927453313701:43927453314123 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927453314912:43927453315281 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927453332226:43927453332593 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927453333404:43927453334025 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927453387360:43927453390682 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927453392177:43927453392558 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927453395704:43927453396277 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927453398056:43927453398513 26036:26041 hsa_signal_destroy() = 0 -43927453400634:43927453401088 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927453401861:43927453402221 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927453334797:43927453754577 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927454215407:43927454216148 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927468603012:43927468604072 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927468608243:43927468609482 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927468611387:43927468613933 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927468615054:43927468615858 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927468616738:43927468617365 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927468618468:43927468618935 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927469089433:43927469090173 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927469091768:43927469093342 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927469094249:43927469482219 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927469483474:43927469484097 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927469497702:43927469498352 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927469521895:43927469522543 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 156 -43927469523661:43927469524069 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 156 -43927469525359:43927469535308 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927469536184:43927469536705 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927469537916:43927469541929 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a78fa0) = 0 -43927469542898:43927469543480 26036:26036 hsa_signal_store_relaxed(, 156) = void -43927469544968:43927469555607 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927469561966:43927469562620 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927469578717:43927469579740 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927469580568:43927469580958 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 157 -43927469581758:43927469582099 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 156 -43927469583036:43927469583363 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927469584216:43927469585892 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a73c00) = 0 -43927469586638:43927469587032 26036:26036 hsa_signal_store_relaxed(, 157) = void -43927469588046:43927471437577 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927471438560:43927471439079 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927471440222:43927471440980 26036:26036 hsa_signal_destroy() = 0 -43927471442180:43927471443406 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927471444243:43927471444637 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927471445416:43927471445876 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927471455566:43927471455952 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927471456831:43927471457181 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927471457944:43927471458572 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927471493454:43927471496709 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927471498164:43927471498533 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927471511963:43927471512545 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927471514343:43927471514798 26036:26041 hsa_signal_destroy() = 0 -43927471516942:43927471517394 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927471518189:43927471518555 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927471459334:43927471889441 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927472354455:43927472355235 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927486727279:43927486728276 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927486732578:43927486733694 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927486735209:43927486737345 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927486738441:43927486739007 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927486739833:43927486740697 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927486745431:43927486746007 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927487196236:43927487196906 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927487198186:43927487199687 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927487200623:43927487587843 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927487589044:43927487589679 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927487603588:43927487604265 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927487627307:43927487628075 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 158 -43927487629064:43927487629467 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 158 -43927487630483:43927487631791 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927487632755:43927487633276 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927487634462:43927487646967 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a89ca0) = 0 -43927487647907:43927487648484 26036:26036 hsa_signal_store_relaxed(, 158) = void -43927487649916:43927487650547 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927487666887:43927487667536 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927487670150:43927487671052 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927487671922:43927487672283 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 159 -43927487673095:43927487682367 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 158 -43927487683356:43927487683688 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927487684655:43927487685510 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a7ece0) = 0 -43927487686260:43927487686710 26036:26036 hsa_signal_store_relaxed(, 159) = void -43927487687738:43927489528475 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927489529534:43927489530011 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927489531301:43927489531966 26036:26036 hsa_signal_destroy() = 0 -43927489533139:43927489534440 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927489535283:43927489535690 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927489536502:43927489545737 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927489546529:43927489546897 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927489547736:43927489548078 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927489548832:43927489549479 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927489585772:43927489589096 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927489590693:43927489591063 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927489604417:43927489604998 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927489606843:43927489607316 26036:26041 hsa_signal_destroy() = 0 -43927489609518:43927489610020 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927489610817:43927489611180 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927489551829:43927489980968 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927490443017:43927490443760 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927504832295:43927504833352 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927504837379:43927504838492 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927504840008:43927504842154 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927504843257:43927504844175 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927504845052:43927504845718 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927504846635:43927504847122 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927505296761:43927505297526 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927505298703:43927505300300 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927505301268:43927505690416 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927505691619:43927505692250 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927505709320:43927505709983 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927505733927:43927505734572 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 160 -43927505735607:43927505736011 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 160 -43927505737147:43927505738757 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927505748360:43927505748918 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927505750170:43927505753782 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a8b050) = 0 -43927505754745:43927505755316 26036:26036 hsa_signal_store_relaxed(, 160) = void -43927505756713:43927505757340 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927505773543:43927505774195 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927505786182:43927505787020 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927505790748:43927505791134 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 161 -43927505791876:43927505792212 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 160 -43927505793186:43927505793531 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927505794360:43927505796021 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092a8eb30) = 0 -43927505796771:43927505797225 26036:26036 hsa_signal_store_relaxed(, 161) = void -43927505798230:43927507647772 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927507648783:43927507649300 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927507650465:43927507651134 26036:26036 hsa_signal_destroy() = 0 -43927507652384:43927507653435 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927507654319:43927507654783 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927507655545:43927507655980 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927507665673:43927507666046 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927507666903:43927507667252 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927507668016:43927507668617 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927507704076:43927507707269 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927507708737:43927507709118 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927507722610:43927507723205 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927507725003:43927507725479 26036:26041 hsa_signal_destroy() = 0 -43927507727687:43927507728126 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927507728917:43927507729284 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927507669369:43927508099954 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927508560468:43927508561255 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927522939935:43927522941087 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927522945203:43927522946305 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927522948160:43927522950301 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927522951382:43927522951964 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927522952784:43927522953601 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927522954489:43927522954959 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927523407410:43927523408171 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927523413297:43927523414863 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927523415998:43927523803710 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927523804844:43927523805472 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927523819267:43927523819917 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927523828424:43927523839363 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 162 -43927523840238:43927523840637 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 162 -43927523841715:43927523843197 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927523844381:43927523844866 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927523846136:43927523859134 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092aa7380) = 0 -43927523860078:43927523860650 26036:26036 hsa_signal_store_relaxed(, 162) = void -43927523862235:43927523862874 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927523878642:43927523879287 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927523881876:43927523882622 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927523883473:43927523883869 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 163 -43927523884645:43927523884993 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 162 -43927523895134:43927523895492 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927523896342:43927523896755 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092aa3dd0) = 0 -43927523897503:43927523897948 26036:26036 hsa_signal_store_relaxed(, 163) = void -43927523898977:43927525737504 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927525738651:43927525739067 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927525740288:43927525740986 26036:26036 hsa_signal_destroy() = 0 -43927525742341:43927525743343 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927525744219:43927525744647 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927525745416:43927525745872 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927525755550:43927525755934 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927525756814:43927525757170 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927525757939:43927525758714 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927525794448:43927525797753 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927525814910:43927525815397 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927525818682:43927525819290 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927525821075:43927525821552 26036:26041 hsa_signal_destroy() = 0 -43927525823795:43927525824266 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927525825055:43927525825419 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927525759482:43927526189457 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927526653886:43927526654625 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927541041956:43927541042957 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927541046880:43927541048106 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927541049926:43927541052114 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927541053613:43927541054196 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927541055050:43927541055794 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927541056687:43927541057085 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927541506748:43927541507458 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927541508643:43927541510120 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927541511016:43927541899054 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927541900282:43927541900910 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927541913599:43927541914252 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927541923338:43927541924053 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 164 -43927541939605:43927541940017 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 164 -43927541941099:43927541942286 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927541943166:43927541943652 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927541945065:43927541958209 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092aaf8a0) = 0 -43927541959222:43927541959796 26036:26036 hsa_signal_store_relaxed(, 164) = void -43927541961386:43927541962028 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927541978232:43927541978885 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927541982473:43927541983239 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927541984133:43927541984491 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 165 -43927541998411:43927541998757 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 164 -43927541999717:43927542000043 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927542000881:43927542002521 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092aa8910) = 0 -43927542003275:43927542003670 26036:26036 hsa_signal_store_relaxed(, 165) = void -43927542004759:43927543836250 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927543837251:43927543837779 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927543838914:43927543839703 26036:26036 hsa_signal_destroy() = 0 -43927543840890:43927543841825 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927543842731:43927543843188 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927543843951:43927543844390 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927543854248:43927543854679 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927543855474:43927543855826 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927543856587:43927543857196 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927543892534:43927543895780 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927543897200:43927543897577 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927543911082:43927543911659 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927543913498:43927543913962 26036:26041 hsa_signal_destroy() = 0 -43927543916121:43927543916573 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927543917372:43927543917741 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927543857960:43927544288675 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927544751020:43927544751762 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927559125725:43927559126894 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927559131309:43927559132554 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927559134706:43927559137629 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927559138964:43927559139551 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927559140378:43927559141036 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927559141925:43927559142391 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927559595820:43927559596477 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927559597713:43927559599488 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927559603916:43927559988333 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927559989509:43927559990142 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927560008723:43927560009381 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927560032983:43927560033759 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 166 -43927560034764:43927560035255 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 166 -43927560036527:43927560046509 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927560047424:43927560048033 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927560049337:43927560053197 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ac3400) = 0 -43927560054097:43927560054669 26036:26036 hsa_signal_store_relaxed(, 166) = void -43927560056114:43927560056745 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927560073066:43927560073722 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927560085234:43927560085995 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927560086828:43927560087172 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 167 -43927560087977:43927560088313 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 166 -43927560089257:43927560089587 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927560090419:43927560092021 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092abf1f0) = 0 -43927560092769:43927560093219 26036:26036 hsa_signal_store_relaxed(, 167) = void -43927560094257:43927561938883 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927561939882:43927561940302 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927561941442:43927561942100 26036:26036 hsa_signal_destroy() = 0 -43927561943287:43927561944393 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927561945265:43927561945681 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927561946449:43927561946907 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927561956579:43927561956960 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927561957833:43927561958180 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927561958939:43927561959579 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927561995360:43927561998514 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927561999934:43927562000306 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927562016941:43927562017531 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927562019411:43927562019867 26036:26041 hsa_signal_destroy() = 0 -43927562022140:43927562022614 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927562023400:43927562023775 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927561960331:43927562391671 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927562854673:43927562855408 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927577237218:43927577238452 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927577242850:43927577243946 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927577245687:43927577248123 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927577249170:43927577249794 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927577250750:43927577251476 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927577252372:43927577252799 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927577703734:43927577704445 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927577705734:43927577707205 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927577708109:43927578095931 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927578097128:43927578097748 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927578111215:43927578111864 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927578135265:43927578136025 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 168 -43927578137098:43927578137495 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 168 -43927578138571:43927578139877 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927578140740:43927578141157 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927578142455:43927578155251 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ad1ce0) = 0 -43927578156395:43927578156969 26036:26036 hsa_signal_store_relaxed(, 168) = void -43927578158443:43927578159082 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927578174989:43927578175633 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927578178633:43927578179414 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927578180397:43927578180757 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 169 -43927578190753:43927578191106 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 168 -43927578192064:43927578192393 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927578197089:43927578198690 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092acf3b0) = 0 -43927578199441:43927578199890 26036:26036 hsa_signal_store_relaxed(, 169) = void -43927578200910:43927580031557 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927580032682:43927580033221 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927580034362:43927580035039 26036:26036 hsa_signal_destroy() = 0 -43927580036238:43927580037418 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927580038267:43927580038669 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927580039433:43927580039866 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927580049448:43927580049881 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927580050750:43927580051102 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927580051866:43927580052455 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927580088510:43927580091814 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927580093275:43927580093647 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927580106940:43927580107540 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927580109344:43927580109822 26036:26041 hsa_signal_destroy() = 0 -43927580112034:43927580112475 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927580113267:43927580113631 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927580053205:43927580483031 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927580944652:43927580945388 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927595318764:43927595319897 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927595324191:43927595325762 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927595327823:43927595330697 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927595331845:43927595332414 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927595333305:43927595334038 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927595334929:43927595335394 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927595787850:43927595788646 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927595789876:43927595791441 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927595792314:43927596181100 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927596185699:43927596186339 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927596200936:43927596201608 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927596220026:43927596220682 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 170 -43927596221686:43927596222089 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 170 -43927596223171:43927596224402 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927596234724:43927596235248 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927596236686:43927596240210 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ae3440) = 0 -43927596241041:43927596241605 26036:26036 hsa_signal_store_relaxed(, 170) = void -43927596243066:43927596243700 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927596261107:43927596261770 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927596273394:43927596274179 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927596274997:43927596275378 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 171 -43927596276191:43927596276526 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 170 -43927596277463:43927596277783 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927596278648:43927596280304 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092adf600) = 0 -43927596281055:43927596281450 26036:26036 hsa_signal_store_relaxed(, 171) = void -43927596282470:43927598128538 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927598129543:43927598129959 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927598131076:43927598131751 26036:26036 hsa_signal_destroy() = 0 -43927598132926:43927598134003 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927598134862:43927598135261 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927598136037:43927598136470 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927598146024:43927598146437 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927598147333:43927598147684 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927598148446:43927598149084 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927598185123:43927598188364 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927598189777:43927598190152 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927598203746:43927598204334 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927598206115:43927598206583 26036:26041 hsa_signal_destroy() = 0 -43927598211920:43927598212424 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927598213231:43927598213599 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927598149841:43927598580419 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927599038880:43927599039620 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927613427365:43927613428497 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927613432611:43927613433952 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927613435650:43927613437800 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927613438846:43927613439431 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927613440288:43927613440998 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927613441883:43927613442280 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927613894380:43927613895102 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927613896351:43927613897929 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927613898946:43927614286891 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927614288338:43927614288965 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927614301721:43927614302372 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927614321270:43927614322020 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 172 -43927614323097:43927614323685 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 172 -43927614324709:43927614326113 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927614327101:43927614327516 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927614328783:43927614341747 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ae5250) = 0 -43927614342806:43927614343382 26036:26036 hsa_signal_store_relaxed(, 172) = void -43927614344847:43927614345485 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927614361516:43927614362163 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927614365196:43927614366000 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927614366853:43927614367236 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 173 -43927614377107:43927614377463 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 172 -43927614378576:43927614378908 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927614379775:43927614380282 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092aede70) = 0 -43927614385218:43927614385902 26036:26036 hsa_signal_store_relaxed(, 173) = void -43927614386929:43927616228042 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927616229066:43927616229602 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927616230782:43927616231462 26036:26036 hsa_signal_destroy() = 0 -43927616232684:43927616233679 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927616234590:43927616235046 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927616235874:43927616236310 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927616246130:43927616246566 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927616247428:43927616247781 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927616248543:43927616249163 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927616284851:43927616288064 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927616289479:43927616289852 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927616303289:43927616303884 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927616305664:43927616306135 26036:26041 hsa_signal_destroy() = 0 -43927616308269:43927616308727 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927616309529:43927616309895 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927616249913:43927616679904 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927617140359:43927617141142 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927631517201:43927631518132 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927631522386:43927631523572 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927631525292:43927631527452 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927631528615:43927631529195 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927631530020:43927631531013 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927631531904:43927631532367 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927631986432:43927631987119 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927631988289:43927631989868 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927631990919:43927632380132 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927632381525:43927632382161 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927632395038:43927632395687 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927632417996:43927632418712 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 174 -43927632419697:43927632420100 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 174 -43927632421342:43927632422669 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927632423533:43927632424051 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927632434273:43927632438167 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092af0840) = 0 -43927632439091:43927632439664 26036:26036 hsa_signal_store_relaxed(, 174) = void -43927632441190:43927632441825 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927632458388:43927632459050 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927632470804:43927632471567 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927632472386:43927632472767 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 175 -43927632473561:43927632473894 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 174 -43927632474819:43927632475149 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927632475979:43927632477604 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092af9b50) = 0 -43927632478341:43927632478787 26036:26036 hsa_signal_store_relaxed(, 175) = void -43927632479797:43927634323723 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927634324790:43927634325211 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927634326269:43927634327238 26036:26036 hsa_signal_destroy() = 0 -43927634328652:43927634329525 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927634330425:43927634330877 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927634331695:43927634341235 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927634342102:43927634342472 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927634343323:43927634343666 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927634344423:43927634345001 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927634380262:43927634383570 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927634385042:43927634385416 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927634399033:43927634399624 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927634401450:43927634401915 26036:26041 hsa_signal_destroy() = 0 -43927634404127:43927634404581 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927634408557:43927634408941 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927634345761:43927634776418 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927635237891:43927635238681 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927649627556:43927649628562 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927649632525:43927649633598 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927649635500:43927649637718 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927649639182:43927649639799 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927649640665:43927649641396 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927649642276:43927649642778 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927650092573:43927650093360 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927650094601:43927650096171 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927650097313:43927650485807 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927650487092:43927650487729 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927650500465:43927650501130 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927650510031:43927650510646 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 176 -43927650526278:43927650526682 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 176 -43927650527707:43927650529046 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927650529988:43927650530378 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927650531686:43927650544680 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092af7770) = 0 -43927650545705:43927650546281 26036:26036 hsa_signal_store_relaxed(, 176) = void -43927650547775:43927650548408 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927650564148:43927650564787 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927650567568:43927650568361 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927650569218:43927650569621 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 177 -43927650570484:43927650570825 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 176 -43927650580790:43927650581146 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927650582023:43927650582451 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b09ee0) = 0 -43927650583227:43927650583876 26036:26036 hsa_signal_store_relaxed(, 177) = void -43927650589144:43927652427795 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927652428884:43927652429417 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927652430606:43927652431350 26036:26036 hsa_signal_destroy() = 0 -43927652432537:43927652433540 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927652434476:43927652434880 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927652435643:43927652436113 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927652445813:43927652446198 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927652447057:43927652447402 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927652448160:43927652448816 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927652484824:43927652488018 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927652489421:43927652489794 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927652503112:43927652503693 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927652505497:43927652505961 26036:26041 hsa_signal_destroy() = 0 -43927652508142:43927652508613 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927652509409:43927652509775 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927652449568:43927652879954 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927653340366:43927653341102 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927667718575:43927667719566 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927667723608:43927667724754 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927667726622:43927667728877 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927667730045:43927667730641 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927667731465:43927667732184 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927667733071:43927667733473 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927668191457:43927668192238 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927668193556:43927668195076 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927668195945:43927668584363 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927668585553:43927668586177 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927668599392:43927668600039 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927668623435:43927668624183 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 178 -43927668628787:43927668629349 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 178 -43927668630501:43927668632005 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927668641638:43927668642175 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927668643377:43927668647462 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b03270) = 0 -43927668648580:43927668649167 26036:26036 hsa_signal_store_relaxed(, 178) = void -43927668650879:43927668661744 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927668668670:43927668669342 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927668681119:43927668681875 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927668682696:43927668683079 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 179 -43927668683877:43927668684219 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 178 -43927668685140:43927668685463 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927668686287:43927668687789 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b1a080) = 0 -43927668697245:43927668697675 26036:26036 hsa_signal_store_relaxed(, 179) = void -43927668698757:43927670535803 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927670536801:43927670537224 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927670538343:43927670538980 26036:26036 hsa_signal_destroy() = 0 -43927670540202:43927670541240 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927670542092:43927670542547 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927670543367:43927670543804 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927670553763:43927670554146 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927670555012:43927670555359 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927670556114:43927670556689 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927670593110:43927670596299 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927670597732:43927670598112 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927670611455:43927670612051 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927670613842:43927670614320 26036:26041 hsa_signal_destroy() = 0 -43927670616540:43927670617083 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927670617883:43927670618253 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927670557438:43927670987838 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927671450779:43927671451574 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927685835635:43927685836642 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927685841122:43927685842332 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927685844031:43927685846625 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927685847930:43927685848518 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927685849378:43927685849990 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927685850904:43927685851306 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927686302070:43927686302779 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927686304112:43927686305641 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927686306538:43927686697394 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927686698628:43927686699254 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927686712376:43927686713019 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927686732400:43927686733163 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 180 -43927686734234:43927686734634 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 180 -43927686735636:43927686736940 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927686738011:43927686738351 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927686739600:43927686752742 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b0d930) = 0 -43927686753776:43927686754346 26036:26036 hsa_signal_store_relaxed(, 180) = void -43927686756042:43927686756676 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927686772982:43927686773628 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927686776523:43927686777303 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927686778335:43927686778725 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 181 -43927686788734:43927686789091 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 180 -43927686790037:43927686790364 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927686791236:43927686792092 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b2af60) = 0 -43927686792873:43927686793319 26036:26036 hsa_signal_store_relaxed(, 181) = void -43927686794553:43927688633884 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927688634940:43927688635422 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927688640614:43927688641264 26036:26036 hsa_signal_destroy() = 0 -43927688651355:43927688652372 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927688653245:43927688653637 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927688654430:43927688654851 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927688655639:43927688656004 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927688656850:43927688657198 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927688657950:43927688658594 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927688690900:43927688694263 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927688695739:43927688696111 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927688709556:43927688710145 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927688711973:43927688712442 26036:26041 hsa_signal_destroy() = 0 -43927688714646:43927688715109 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927688715892:43927688716257 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927688659352:43927689093374 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927689554004:43927689554767 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927703931302:43927703932297 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927703936317:43927703937467 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927703939152:43927703941289 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927703942536:43927703943113 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927703943938:43927703944575 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927703945497:43927703945898 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927704407784:43927704408554 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927704409821:43927704411744 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927704412635:43927704800984 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927704802162:43927704802783 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927704820891:43927704821549 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927704840509:43927704841143 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 182 -43927704842190:43927704842670 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 182 -43927704855685:43927704856946 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927704857809:43927704858326 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927704859462:43927704863178 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b25f80) = 0 -43927704864078:43927704864643 26036:26036 hsa_signal_store_relaxed(, 182) = void -43927704866125:43927704866758 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927704873092:43927704873749 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927704876276:43927704877222 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927704878036:43927704878382 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 183 -43927704879179:43927704879514 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 182 -43927704880429:43927704880755 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927704881654:43927704882388 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b2be20) = 0 -43927704883134:43927704883524 26036:26036 hsa_signal_store_relaxed(, 183) = void -43927706715138:43927706718913 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927706720558:43927706721057 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927706747807:43927706749529 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927706750501:43927706751023 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927704884559:43927706788221 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927706799982:43927706800551 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927706802239:43927706803128 26036:26036 hsa_signal_destroy() = 0 -43927706804211:43927706804646 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927706805555:43927706805969 26036:26036 hsa_signal_destroy() = 0 -43927706807377:43927706808877 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927706809762:43927706810242 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927706811085:43927706811643 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927706812405:43927706812791 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927706813714:43927706814148 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927706814988:43927706816067 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927706816847:43927707228760 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927707702055:43927707702890 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927722294103:43927722295219 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927722301453:43927722302570 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927722304334:43927722306906 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927722308174:43927722308844 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927722309734:43927722310312 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927722311135:43927722311623 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927722764526:43927722765638 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927722767049:43927722768650 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927722769491:43927723142551 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927723143810:43927723144481 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927723161557:43927723162221 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927723196572:43927723197298 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 184 -43927723198249:43927723198738 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 184 -43927723199969:43927723201621 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927723202410:43927723202775 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927723204190:43927723208855 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b33cd0) = 0 -43927723209874:43927723210552 26036:26036 hsa_signal_store_relaxed(, 184) = void -43927723212272:43927723212913 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927723219488:43927723220149 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927723223419:43927723224128 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927723224942:43927723225270 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 185 -43927723226081:43927723226424 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 184 -43927723227429:43927723227774 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927723228690:43927723230587 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b39580) = 0 -43927723231396:43927723231854 26036:26036 hsa_signal_store_relaxed(, 185) = void -43927723232814:43927723715986 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927723716891:43927723717417 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927723718545:43927723719463 26036:26036 hsa_signal_destroy() = 0 -43927723724346:43927723725425 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927723726257:43927723740953 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927723741800:43927723742279 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927723743038:43927723743441 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927723744305:43927723744690 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927723745488:43927723746347 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927723797442:43927723800679 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927723802126:43927723802502 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927723805427:43927723805993 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927723807803:43927723808273 26036:26041 hsa_signal_destroy() = 0 -43927723810387:43927723810816 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927723811586:43927723811945 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927723747155:43927724167780 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927724627575:43927724628459 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927739008531:43927739009524 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927739014306:43927739015486 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927739017296:43927739020367 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927739021721:43927739022345 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927739023178:43927739023789 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927739024676:43927739025250 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927739478406:43927739479196 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927739480493:43927739481819 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927739482640:43927739855579 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927739857204:43927739857830 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927739872843:43927739873489 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927739894041:43927739894682 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 186 -43927739895678:43927739896163 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 186 -43927739897528:43927739899003 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927739909074:43927739909620 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927739915092:43927739918810 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b4ad00) = 0 -43927739919754:43927739920325 26036:26036 hsa_signal_store_relaxed(, 186) = void -43927739921798:43927739922440 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927739928629:43927739929284 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927739932068:43927739932817 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927739933649:43927739934036 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 187 -43927739934832:43927739935168 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 186 -43927739936094:43927739936418 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927739937295:43927739938067 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b48500) = 0 -43927739938819:43927739939269 26036:26036 hsa_signal_store_relaxed(, 187) = void -43927740413734:43927740417062 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927740418696:43927740419231 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927740423715:43927740425429 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927740426561:43927740426966 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927739940242:43927740455451 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927740467154:43927740467734 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927740469355:43927740470252 26036:26036 hsa_signal_destroy() = 0 -43927740471297:43927740471941 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927740472955:43927740473388 26036:26036 hsa_signal_destroy() = 0 -43927740474727:43927740476300 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927740477216:43927740477698 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927740478515:43927740479072 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927740479818:43927740480203 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927740481124:43927740481558 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927740482403:43927740483551 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927740484334:43927740891656 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927741335022:43927741335874 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927755917182:43927755918136 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927755930431:43927755931533 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927755933315:43927755935813 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927755937094:43927755938004 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927755938838:43927755939396 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927755940168:43927755940645 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927756418583:43927756419458 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927756420794:43927756422694 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927756423482:43927756796357 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927756797569:43927756798239 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927756814797:43927756815441 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927756849519:43927756850152 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 188 -43927756851044:43927756851528 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 188 -43927756852600:43927756854185 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927756854971:43927756855336 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927756856702:43927756860905 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b5c650) = 0 -43927756861745:43927756862418 26036:26036 hsa_signal_store_relaxed(, 188) = void -43927756863927:43927756864581 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927756871103:43927756871758 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927756875002:43927756875758 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927756876557:43927756876944 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 189 -43927756877692:43927756878038 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 188 -43927756878975:43927756879315 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927756880165:43927756880606 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b5ca90) = 0 -43927756881374:43927756881818 26036:26036 hsa_signal_store_relaxed(, 189) = void -43927756882829:43927757365024 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927757366113:43927757366717 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927757367868:43927757368611 26036:26036 hsa_signal_destroy() = 0 -43927757369841:43927757371143 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927757373723:43927757374134 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927757374887:43927757375364 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927757390388:43927757390846 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927757391714:43927757392115 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927757392966:43927757393649 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927757446965:43927757450243 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927757451766:43927757452138 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927757454896:43927757455458 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927757457255:43927757457707 26036:26041 hsa_signal_destroy() = 0 -43927757459827:43927757460268 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927757461048:43927757461410 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927757394446:43927757814703 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927758276232:43927758276973 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927772695291:43927772696607 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927772701307:43927772702412 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927772704008:43927772706726 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927772708026:43927772708763 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927772709588:43927772710435 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927772711307:43927772711793 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927773159804:43927773160621 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927773161684:43927773163469 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927773164284:43927773537227 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927773538489:43927773539118 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927773554478:43927773555128 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927773575987:43927773576636 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 190 -43927773577569:43927773577976 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 190 -43927773579088:43927773580335 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927773590469:43927773590964 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927773592271:43927773596138 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b6aff0) = 0 -43927773611179:43927773611783 26036:26036 hsa_signal_store_relaxed(, 190) = void -43927773613467:43927773614111 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927773629221:43927773629855 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927773632572:43927773633307 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927773634126:43927773634516 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 191 -43927773635248:43927773635587 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 190 -43927773636548:43927773636870 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927773637722:43927773639566 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b67840) = 0 -43927773640314:43927773640777 26036:26036 hsa_signal_store_relaxed(, 191) = void -43927773641827:43927774112952 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927774113885:43927774114289 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927774115363:43927774116154 26036:26036 hsa_signal_destroy() = 0 -43927774117301:43927774118307 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927774119123:43927774119508 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927774120250:43927774120683 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927774121475:43927774121821 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927774122677:43927774123027 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927774137956:43927774138602 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927774194010:43927774197341 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927774198762:43927774199134 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927774202387:43927774202950 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927774204666:43927774205123 26036:26041 hsa_signal_destroy() = 0 -43927774207274:43927774207709 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927774208484:43927774208846 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927774139412:43927774560389 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927775021032:43927775022025 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927789416439:43927789417461 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927789421462:43927789422476 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927789428709:43927789431559 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927789432835:43927789433659 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927789434500:43927789435187 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927789436038:43927789436523 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927789889067:43927789889892 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927789891055:43927789892836 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927789893770:43927790266705 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927790267904:43927790268531 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927790284354:43927790285016 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927790304228:43927790304867 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 192 -43927790305764:43927790306171 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 192 -43927790307403:43927790308911 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927790309771:43927790310296 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927790320751:43927790324462 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b78070) = 0 -43927790325385:43927790325983 26036:26036 hsa_signal_store_relaxed(, 192) = void -43927790327572:43927790328209 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927790344556:43927790345207 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927790347990:43927790357677 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927790358518:43927790358901 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 193 -43927790359705:43927790360043 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 192 -43927790361005:43927790361333 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927790362195:43927790363803 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b7df20) = 0 -43927790364553:43927790364947 26036:26036 hsa_signal_store_relaxed(, 193) = void -43927790365961:43927790835296 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927790836293:43927790836796 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927790837883:43927790838542 26036:26036 hsa_signal_destroy() = 0 -43927790839835:43927790840684 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927790841499:43927790841930 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927790842671:43927790843093 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927790844991:43927790845344 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927790860586:43927790860970 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927790861768:43927790862421 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927790916245:43927790919583 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927790921052:43927790921423 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927790924497:43927790925064 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927790926807:43927790927216 26036:26041 hsa_signal_destroy() = 0 -43927790929310:43927790929750 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927790930520:43927790930881 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927790863227:43927791284216 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927791744411:43927791745161 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927806131789:43927806132997 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927806137739:43927806138938 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927806140981:43927806143705 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927806145025:43927806145668 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927806146493:43927806147136 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927806148004:43927806148406 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927806599088:43927806599868 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927806601324:43927806602960 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927806603822:43927806976883 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927806978150:43927806978780 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927806992238:43927806992886 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927807016132:43927807016772 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 194 -43927807017828:43927807018239 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 194 -43927807019513:43927807029751 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927807030681:43927807031146 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927807032582:43927807036361 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b8f7a0) = 0 -43927807037252:43927807038081 26036:26036 hsa_signal_store_relaxed(, 194) = void -43927807053541:43927807054212 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927807060464:43927807070017 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927807072584:43927807073558 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927807074370:43927807074747 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 195 -43927807075541:43927807075870 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 194 -43927807076797:43927807077120 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927807077938:43927807079834 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b8aa00) = 0 -43927807080581:43927807080979 26036:26036 hsa_signal_store_relaxed(, 195) = void -43927807081981:43927807544792 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927807545752:43927807546157 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927807547273:43927807547935 26036:26036 hsa_signal_destroy() = 0 -43927807549175:43927807550141 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927807550989:43927807551372 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927807552132:43927807552553 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927807553352:43927807553696 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927807554478:43927807554813 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927807570016:43927807570707 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927807626744:43927807630055 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927807631516:43927807631893 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927807635002:43927807635554 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927807637293:43927807637753 26036:26041 hsa_signal_destroy() = 0 -43927807639910:43927807640335 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927807641114:43927807641479 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927807571534:43927807992900 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927808458893:43927808459643 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927822839908:43927822841065 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927822845318:43927822846473 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927822848264:43927822850518 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927822851628:43927822852314 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927822857479:43927822858105 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927822858931:43927822859335 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927823310172:43927823310991 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927823312145:43927823314012 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927823314944:43927823688618 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927823689867:43927823690497 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927823704436:43927823705106 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927823727953:43927823728716 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 196 -43927823729882:43927823730285 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 196 -43927823740215:43927823741507 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927823742419:43927823742930 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927823744119:43927823747816 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ba0d40) = 0 -43927823748787:43927823749356 26036:26036 hsa_signal_store_relaxed(, 196) = void -43927823750857:43927823751495 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927823767805:43927823768459 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927823781200:43927823781983 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927823782810:43927823783189 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 197 -43927823783917:43927823784247 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 196 -43927823785175:43927823785496 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927823786336:43927823787932 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092b9e230) = 0 -43927823788676:43927823789120 26036:26036 hsa_signal_store_relaxed(, 197) = void -43927823790118:43927824255493 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927824256477:43927824256948 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927824258056:43927824258708 26036:26036 hsa_signal_destroy() = 0 -43927824259990:43927824261134 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927824261977:43927824262368 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927824263116:43927824263540 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927824264327:43927824264668 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927824281346:43927824281720 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927824282516:43927824283138 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927824337892:43927824341307 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927824342751:43927824343122 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927824346207:43927824346768 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927824348552:43927824349006 26036:26041 hsa_signal_destroy() = 0 -43927824351229:43927824351662 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927824352437:43927824352791 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927824283916:43927824704081 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927825166815:43927825167553 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927839562477:43927839563604 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927839567766:43927839568874 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927839570735:43927839572687 26036:26036 hsa_amd_pointer_info(0x902800000, 0x7fff229b0270, 0, , 0) = 0 -43927839573876:43927839574450 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927839575280:43927839575932 26036:26036 hsa_amd_pointer_info(0x1482170, 0x7fff229affd0, 0, , 0) = 0 -43927839577043:43927839577519 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927840034252:43927840035572 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927840036845:43927840038534 26036:26036 hsa_amd_memory_async_copy(0x902800000, , 0x903800000, , , , 0, ) = 0 -43927840039479:43927840412196 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927840413576:43927840414240 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927840427993:43927840428674 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927840448186:43927840448808 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 198 -43927840449754:43927840450154 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 198 -43927840451322:43927840452774 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afb88) = 0 -43927840453752:43927840454287 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927840455516:43927840467617 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092ba36d0) = 0 -43927840468551:43927840469118 26036:26036 hsa_signal_store_relaxed(, 198) = void -43927840470705:43927840471345 26036:26036 hsa_system_get_info(2, 0x7fff229afec0) = 0 -43927840487426:43927840488077 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927840504098:43927840504887 26036:26036 hsa_signal_create(1, , 0, 0x7fff229afd10) = 0 -43927840505707:43927840506088 26036:26036 hsa_queue_load_write_index_relaxed(0x2e2a000) = 199 -43927840506880:43927840507218 26036:26036 hsa_queue_load_read_index_scacquire(0x2e2a000) = 198 -43927840508151:43927840508471 26036:26036 hsa_queue_store_write_index_relaxed(0x2e2a000, ) = void -43927840509304:43927840510901 26036:26036 hsa_amd_signal_async_handler(, 2, 1, 1, 0x7f2092bab4b0) = 0 -43927840511656:43927840512107 26036:26036 hsa_signal_store_relaxed(, 199) = void -43927840513288:43927840967359 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927840968348:43927840968755 26036:26036 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927840969916:43927840970685 26036:26036 hsa_signal_destroy() = 0 -43927840971784:43927840972755 26036:26036 hsa_amd_pointer_info(0x903000000, 0x7fff229b0240, 0, , 0) = 0 -43927840973602:43927840973992 26036:26036 hsa_agent_get_info(, 17, 0x7fff229b00a0) = 0 -43927840974805:43927840975239 26036:26036 hsa_amd_pointer_info(0x1882180, 0x7fff229affd0, 0, , 0) = 0 -43927840976032:43927840976376 26036:26036 hsa_agent_get_info(, 17, 0x7fff229affc4) = 0 -43927840977225:43927840991905 26036:26036 hsa_signal_silent_store_relaxed(, 1) = void -43927840992778:43927840993407 26036:26036 hsa_amd_memory_async_copy(0x903800000, , 0x903000000, , , , 0, ) = 0 -43927841047918:43927841051221 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927841052627:43927841052999 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927841056179:43927841056739 26036:26041 hsa_signal_wait_scacquire(, 2, 1, , 0) = 0 -43927841058485:43927841058957 26036:26041 hsa_signal_destroy() = 0 -43927841061055:43927841061477 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927841062252:43927841062612 26036:26041 hsa_amd_profiling_get_dispatch_time(, , 0x7f20f8124c08) = 0 -43927840994186:43927841415743 26036:26036 hsa_signal_wait_relaxed(, 0, 0, , 1) = 0 -43927841875111:43927841875896 26036:26036 hsa_system_get_info(2, 0x7fff229b0090) = 0 -43927856254915:43927856255937 26036:26036 hsa_system_get_info(2, 0x7fff229b0060) = 0 -43927856277916:43927856279011 26036:26036 hsa_signal_load_scacquire() = 0 -43927856282646:43927856330334 26036:26036 hsa_amd_memory_pool_free(0x902800000) = 0 -43927856335607:43927856336289 26036:26036 hsa_system_get_info(2, 0x7fff229b0060) = 0 -43927856339560:43927856340198 26036:26036 hsa_system_get_info(2, 0x7fff229b0060) = 0 -43927856345507:43927856345883 26036:26036 hsa_signal_load_scacquire() = 0 -43927856346840:43927856359575 26036:26036 hsa_amd_memory_pool_free(0x903000000) = 0 -43927856361497:43927856362157 26036:26036 hsa_system_get_info(2, 0x7fff229b0060) = 0 -43927856371136:43927856571451 26036:26036 hsa_memory_free(0x903800000) = 0 -43927856583040:43927856597666 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856598930:43927856600886 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856601901:43927856603779 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856605071:43927856606940 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856607955:43927856609834 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856610847:43927856612663 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856613796:43927856615637 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856616751:43927856618579 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856620049:43927856622112 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856623139:43927856625020 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856626204:43927856628044 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856629024:43927856630913 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856631932:43927856633755 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856636126:43927856637930 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856639101:43927856640984 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856642320:43927856644093 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856645145:43927856646971 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856648099:43927856664522 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856665630:43927856667567 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856668493:43927856670357 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856671320:43927856673183 26036:26036 hsa_code_object_reader_destroy() = 0 -43927856683893:43927856685900 26036:26036 hsa_code_object_reader_destroy() = 0 -43925837949374 26036:26036 0:"before hipLaunchKernel" -43925838034347 26036:26036 1:"hipLaunchKernel" -43926124654734 26036:26036 0:"after hipLaunchKernel" -43926124656506 26036:26036 1:"hipMemcpy" -43926126130770 26036:26036 2:"" -43926126136581 26036:26036 2:"" -43926141416209 26036:26036 0:"before hipLaunchKernel" -43926141417742 26036:26036 1:"hipLaunchKernel" -43926141477075 26036:26036 0:"after hipLaunchKernel" -43926141478074 26036:26036 1:"hipMemcpy" -43926142879656 26036:26036 2:"" -43926142881227 26036:26036 2:"" -43926158124359 26036:26036 0:"before hipLaunchKernel" -43926158126254 26036:26036 1:"hipLaunchKernel" -43926158193380 26036:26036 0:"after hipLaunchKernel" -43926158194373 26036:26036 1:"hipMemcpy" -43926159593736 26036:26036 2:"" -43926159594898 26036:26036 2:"" -43926174827661 26036:26036 0:"before hipLaunchKernel" -43926174829273 26036:26036 1:"hipLaunchKernel" -43926174901909 26036:26036 0:"after hipLaunchKernel" -43926174902886 26036:26036 1:"hipMemcpy" -43926176315109 26036:26036 2:"" -43926176316628 26036:26036 2:"" -43926191542370 26036:26036 0:"before hipLaunchKernel" -43926191543834 26036:26036 1:"hipLaunchKernel" -43926191616814 26036:26036 0:"after hipLaunchKernel" -43926191617776 26036:26036 1:"hipMemcpy" -43926193017473 26036:26036 2:"" -43926193018791 26036:26036 2:"" -43926208246085 26036:26036 0:"before hipLaunchKernel" -43926208247487 26036:26036 1:"hipLaunchKernel" -43926208314707 26036:26036 0:"after hipLaunchKernel" -43926208315732 26036:26036 1:"hipMemcpy" -43926209724879 26036:26036 2:"" -43926209726196 26036:26036 2:"" -43926224962171 26036:26036 0:"before hipLaunchKernel" -43926224963823 26036:26036 1:"hipLaunchKernel" -43926225032097 26036:26036 0:"after hipLaunchKernel" -43926225033072 26036:26036 1:"hipMemcpy" -43926227825939 26036:26036 2:"" -43926227827229 26036:26036 2:"" -43926243061627 26036:26036 0:"before hipLaunchKernel" -43926243063004 26036:26036 1:"hipLaunchKernel" -43926243137659 26036:26036 0:"after hipLaunchKernel" -43926243138646 26036:26036 1:"hipMemcpy" -43926245922807 26036:26036 2:"" -43926245924122 26036:26036 2:"" -43926261163201 26036:26036 0:"before hipLaunchKernel" -43926261164832 26036:26036 1:"hipLaunchKernel" -43926261222695 26036:26036 0:"after hipLaunchKernel" -43926261233670 26036:26036 1:"hipMemcpy" -43926264033152 26036:26036 2:"" -43926264034730 26036:26036 2:"" -43926279277401 26036:26036 0:"before hipLaunchKernel" -43926279278870 26036:26036 1:"hipLaunchKernel" -43926279353364 26036:26036 0:"after hipLaunchKernel" -43926279354427 26036:26036 1:"hipMemcpy" -43926282151153 26036:26036 2:"" -43926282152509 26036:26036 2:"" -43926297425955 26036:26036 0:"before hipLaunchKernel" -43926297427525 26036:26036 1:"hipLaunchKernel" -43926297491434 26036:26036 0:"after hipLaunchKernel" -43926297492430 26036:26036 1:"hipMemcpy" -43926300282498 26036:26036 2:"" -43926300283840 26036:26036 2:"" -43926315545024 26036:26036 0:"before hipLaunchKernel" -43926315546543 26036:26036 1:"hipLaunchKernel" -43926315615292 26036:26036 0:"after hipLaunchKernel" -43926315616290 26036:26036 1:"hipMemcpy" -43926318387497 26036:26036 2:"" -43926318388825 26036:26036 2:"" -43926333660857 26036:26036 0:"before hipLaunchKernel" -43926333662377 26036:26036 1:"hipLaunchKernel" -43926333731086 26036:26036 0:"after hipLaunchKernel" -43926333732023 26036:26036 1:"hipMemcpy" -43926336516579 26036:26036 2:"" -43926336518053 26036:26036 2:"" -43926351760178 26036:26036 0:"before hipLaunchKernel" -43926351761632 26036:26036 1:"hipLaunchKernel" -43926351835047 26036:26036 0:"after hipLaunchKernel" -43926351835988 26036:26036 1:"hipMemcpy" -43926354613391 26036:26036 2:"" -43926354614745 26036:26036 2:"" -43926369884442 26036:26036 0:"before hipLaunchKernel" -43926369885846 26036:26036 1:"hipLaunchKernel" -43926369950860 26036:26036 0:"after hipLaunchKernel" -43926369951847 26036:26036 1:"hipMemcpy" -43926372740208 26036:26036 2:"" -43926372741627 26036:26036 2:"" -43926387978913 26036:26036 0:"before hipLaunchKernel" -43926387980484 26036:26036 1:"hipLaunchKernel" -43926388057102 26036:26036 0:"after hipLaunchKernel" -43926388058177 26036:26036 1:"hipMemcpy" -43926390837417 26036:26036 2:"" -43926390838895 26036:26036 2:"" -43926406084796 26036:26036 0:"before hipLaunchKernel" -43926406086437 26036:26036 1:"hipLaunchKernel" -43926406155514 26036:26036 0:"after hipLaunchKernel" -43926406156519 26036:26036 1:"hipMemcpy" -43926408938345 26036:26036 2:"" -43926408939556 26036:26036 2:"" -43926424178779 26036:26036 0:"before hipLaunchKernel" -43926424185046 26036:26036 1:"hipLaunchKernel" -43926424250010 26036:26036 0:"after hipLaunchKernel" -43926424251053 26036:26036 1:"hipMemcpy" -43926427042903 26036:26036 2:"" -43926427044454 26036:26036 2:"" -43926442299011 26036:26036 0:"before hipLaunchKernel" -43926442300748 26036:26036 1:"hipLaunchKernel" -43926442364530 26036:26036 0:"after hipLaunchKernel" -43926442365511 26036:26036 1:"hipMemcpy" -43926445144326 26036:26036 2:"" -43926445145699 26036:26036 2:"" -43926460385320 26036:26036 0:"before hipLaunchKernel" -43926460386895 26036:26036 1:"hipLaunchKernel" -43926460456437 26036:26036 0:"after hipLaunchKernel" -43926460457463 26036:26036 1:"hipMemcpy" -43926463236963 26036:26036 2:"" -43926463238344 26036:26036 2:"" -43926478486584 26036:26036 0:"before hipLaunchKernel" -43926478488197 26036:26036 1:"hipLaunchKernel" -43926478556437 26036:26036 0:"after hipLaunchKernel" -43926478557368 26036:26036 1:"hipMemcpy" -43926481341546 26036:26036 2:"" -43926481343078 26036:26036 2:"" -43926496569223 26036:26036 0:"before hipLaunchKernel" -43926496570678 26036:26036 1:"hipLaunchKernel" -43926496638725 26036:26036 0:"after hipLaunchKernel" -43926496639751 26036:26036 1:"hipMemcpy" -43926498034841 26036:26036 2:"" -43926498036143 26036:26036 2:"" -43926513276940 26036:26036 0:"before hipLaunchKernel" -43926513278573 26036:26036 1:"hipLaunchKernel" -43926513347454 26036:26036 0:"after hipLaunchKernel" -43926513348437 26036:26036 1:"hipMemcpy" -43926514745698 26036:26036 2:"" -43926514747126 26036:26036 2:"" -43926529983797 26036:26036 0:"before hipLaunchKernel" -43926529985301 26036:26036 1:"hipLaunchKernel" -43926530049563 26036:26036 0:"after hipLaunchKernel" -43926530050640 26036:26036 1:"hipMemcpy" -43926531441141 26036:26036 2:"" -43926531442604 26036:26036 2:"" -43926546675380 26036:26036 0:"before hipLaunchKernel" -43926546676880 26036:26036 1:"hipLaunchKernel" -43926546749484 26036:26036 0:"after hipLaunchKernel" -43926546750431 26036:26036 1:"hipMemcpy" -43926548161721 26036:26036 2:"" -43926548163200 26036:26036 2:"" -43926563390850 26036:26036 0:"before hipLaunchKernel" -43926563392294 26036:26036 1:"hipLaunchKernel" -43926563459754 26036:26036 0:"after hipLaunchKernel" -43926563460751 26036:26036 1:"hipMemcpy" -43926564869836 26036:26036 2:"" -43926564871327 26036:26036 2:"" -43926580095620 26036:26036 0:"before hipLaunchKernel" -43926580097097 26036:26036 1:"hipLaunchKernel" -43926580162811 26036:26036 0:"after hipLaunchKernel" -43926580163819 26036:26036 1:"hipMemcpy" -43926581567363 26036:26036 2:"" -43926581568636 26036:26036 2:"" -43926596825496 26036:26036 0:"before hipLaunchKernel" -43926596827018 26036:26036 1:"hipLaunchKernel" -43926596895740 26036:26036 0:"after hipLaunchKernel" -43926596896707 26036:26036 1:"hipMemcpy" -43926598298729 26036:26036 2:"" -43926598300100 26036:26036 2:"" -43926613527296 26036:26036 0:"before hipLaunchKernel" -43926613528726 26036:26036 1:"hipLaunchKernel" -43926613597100 26036:26036 0:"after hipLaunchKernel" -43926613598105 26036:26036 1:"hipMemcpy" -43926615001490 26036:26036 2:"" -43926615002952 26036:26036 2:"" -43926630240227 26036:26036 0:"before hipLaunchKernel" -43926630241752 26036:26036 1:"hipLaunchKernel" -43926630306542 26036:26036 0:"after hipLaunchKernel" -43926630307536 26036:26036 1:"hipMemcpy" -43926631705959 26036:26036 2:"" -43926631707625 26036:26036 2:"" -43926646938395 26036:26036 0:"before hipLaunchKernel" -43926646939966 26036:26036 1:"hipLaunchKernel" -43926647002852 26036:26036 0:"after hipLaunchKernel" -43926647003868 26036:26036 1:"hipMemcpy" -43926648450334 26036:26036 2:"" -43926648452298 26036:26036 2:"" -43926663914361 26036:26036 0:"before hipLaunchKernel" -43926663915904 26036:26036 1:"hipLaunchKernel" -43926663986769 26036:26036 0:"after hipLaunchKernel" -43926663987873 26036:26036 1:"hipMemcpy" -43926665395981 26036:26036 2:"" -43926665397516 26036:26036 2:"" -43926680626366 26036:26036 0:"before hipLaunchKernel" -43926680627793 26036:26036 1:"hipLaunchKernel" -43926680703633 26036:26036 0:"after hipLaunchKernel" -43926680704650 26036:26036 1:"hipMemcpy" -43926682101315 26036:26036 2:"" -43926682102788 26036:26036 2:"" -43926697364697 26036:26036 0:"before hipLaunchKernel" -43926697366094 26036:26036 1:"hipLaunchKernel" -43926697431544 26036:26036 0:"after hipLaunchKernel" -43926697432491 26036:26036 1:"hipMemcpy" -43926698829089 26036:26036 2:"" -43926698830450 26036:26036 2:"" -43926714083879 26036:26036 0:"before hipLaunchKernel" -43926714088632 26036:26036 1:"hipLaunchKernel" -43926714149293 26036:26036 0:"after hipLaunchKernel" -43926714150427 26036:26036 1:"hipMemcpy" -43926715553255 26036:26036 2:"" -43926715554575 26036:26036 2:"" -43926730787819 26036:26036 0:"before hipLaunchKernel" -43926730789463 26036:26036 1:"hipLaunchKernel" -43926730857537 26036:26036 0:"after hipLaunchKernel" -43926730858504 26036:26036 1:"hipMemcpy" -43926732267393 26036:26036 2:"" -43926732268723 26036:26036 2:"" -43926747494299 26036:26036 0:"before hipLaunchKernel" -43926747495701 26036:26036 1:"hipLaunchKernel" -43926747562530 26036:26036 0:"after hipLaunchKernel" -43926747563770 26036:26036 1:"hipMemcpy" -43926748970702 26036:26036 2:"" -43926748972185 26036:26036 2:"" -43926764203380 26036:26036 0:"before hipLaunchKernel" -43926764204987 26036:26036 1:"hipLaunchKernel" -43926764270023 26036:26036 0:"after hipLaunchKernel" -43926764270946 26036:26036 1:"hipMemcpy" -43926765672881 26036:26036 2:"" -43926765674085 26036:26036 2:"" -43926780902022 26036:26036 0:"before hipLaunchKernel" -43926780903376 26036:26036 1:"hipLaunchKernel" -43926780968389 26036:26036 0:"after hipLaunchKernel" -43926780969361 26036:26036 1:"hipMemcpy" -43926782372488 26036:26036 2:"" -43926782373879 26036:26036 2:"" -43926797614221 26036:26036 0:"before hipLaunchKernel" -43926797615776 26036:26036 1:"hipLaunchKernel" -43926797680689 26036:26036 0:"after hipLaunchKernel" -43926797681717 26036:26036 1:"hipMemcpy" -43926799080278 26036:26036 2:"" -43926799081563 26036:26036 2:"" -43926814322479 26036:26036 0:"before hipLaunchKernel" -43926814323929 26036:26036 1:"hipLaunchKernel" -43926814392049 26036:26036 0:"after hipLaunchKernel" -43926814393277 26036:26036 1:"hipMemcpy" -43926815797615 26036:26036 2:"" -43926815798958 26036:26036 2:"" -43926831030763 26036:26036 0:"before hipLaunchKernel" -43926831032170 26036:26036 1:"hipLaunchKernel" -43926831101175 26036:26036 0:"after hipLaunchKernel" -43926831102087 26036:26036 1:"hipMemcpy" -43926832505718 26036:26036 2:"" -43926832506917 26036:26036 2:"" -43926847761998 26036:26036 0:"before hipLaunchKernel" -43926847763481 26036:26036 1:"hipLaunchKernel" -43926847836619 26036:26036 0:"after hipLaunchKernel" -43926847837585 26036:26036 1:"hipMemcpy" -43926850615693 26036:26036 2:"" -43926850616962 26036:26036 2:"" -43926865872091 26036:26036 0:"before hipLaunchKernel" -43926865873593 26036:26036 1:"hipLaunchKernel" -43926865938674 26036:26036 0:"after hipLaunchKernel" -43926865939686 26036:26036 1:"hipMemcpy" -43926868723722 26036:26036 2:"" -43926868725198 26036:26036 2:"" -43926883968628 26036:26036 0:"before hipLaunchKernel" -43926883970051 26036:26036 1:"hipLaunchKernel" -43926884044167 26036:26036 0:"after hipLaunchKernel" -43926884045173 26036:26036 1:"hipMemcpy" -43926886828882 26036:26036 2:"" -43926886830066 26036:26036 2:"" -43926902080099 26036:26036 0:"before hipLaunchKernel" -43926902081476 26036:26036 1:"hipLaunchKernel" -43926902150050 26036:26036 0:"after hipLaunchKernel" -43926902151041 26036:26036 1:"hipMemcpy" -43926904938516 26036:26036 2:"" -43926904939646 26036:26036 2:"" -43926920176714 26036:26036 0:"before hipLaunchKernel" -43926920178211 26036:26036 1:"hipLaunchKernel" -43926920242571 26036:26036 0:"after hipLaunchKernel" -43926920243688 26036:26036 1:"hipMemcpy" -43926923030736 26036:26036 2:"" -43926923032011 26036:26036 2:"" -43926938308598 26036:26036 0:"before hipLaunchKernel" -43926938310126 26036:26036 1:"hipLaunchKernel" -43926938378717 26036:26036 0:"after hipLaunchKernel" -43926938379683 26036:26036 1:"hipMemcpy" -43926941171460 26036:26036 2:"" -43926941173116 26036:26036 2:"" -43926956415052 26036:26036 0:"before hipLaunchKernel" -43926956416397 26036:26036 1:"hipLaunchKernel" -43926956485044 26036:26036 0:"after hipLaunchKernel" -43926956486084 26036:26036 1:"hipMemcpy" -43926959274004 26036:26036 2:"" -43926959275239 26036:26036 2:"" -43926974543855 26036:26036 0:"before hipLaunchKernel" -43926974545512 26036:26036 1:"hipLaunchKernel" -43926974614579 26036:26036 0:"after hipLaunchKernel" -43926974615532 26036:26036 1:"hipMemcpy" -43926977400608 26036:26036 2:"" -43926977401829 26036:26036 2:"" -43926992664110 26036:26036 0:"before hipLaunchKernel" -43926992665762 26036:26036 1:"hipLaunchKernel" -43926992730207 26036:26036 0:"after hipLaunchKernel" -43926992731168 26036:26036 1:"hipMemcpy" -43926995530778 26036:26036 2:"" -43926995532036 26036:26036 2:"" -43927010769991 26036:26036 0:"before hipLaunchKernel" -43927010775013 26036:26036 1:"hipLaunchKernel" -43927010841405 26036:26036 0:"after hipLaunchKernel" -43927010842414 26036:26036 1:"hipMemcpy" -43927013631594 26036:26036 2:"" -43927013632938 26036:26036 2:"" -43927028875272 26036:26036 0:"before hipLaunchKernel" -43927028876717 26036:26036 1:"hipLaunchKernel" -43927028941362 26036:26036 0:"after hipLaunchKernel" -43927028942439 26036:26036 1:"hipMemcpy" -43927031737243 26036:26036 2:"" -43927031738545 26036:26036 2:"" -43927047005471 26036:26036 0:"before hipLaunchKernel" -43927047006916 26036:26036 1:"hipLaunchKernel" -43927047073112 26036:26036 0:"after hipLaunchKernel" -43927047074059 26036:26036 1:"hipMemcpy" -43927049861179 26036:26036 2:"" -43927049862588 26036:26036 2:"" -43927065111982 26036:26036 0:"before hipLaunchKernel" -43927065113379 26036:26036 1:"hipLaunchKernel" -43927065167144 26036:26036 0:"after hipLaunchKernel" -43927065178146 26036:26036 1:"hipMemcpy" -43927067964142 26036:26036 2:"" -43927067965483 26036:26036 2:"" -43927083212669 26036:26036 0:"before hipLaunchKernel" -43927083214139 26036:26036 1:"hipLaunchKernel" -43927083282444 26036:26036 0:"after hipLaunchKernel" -43927083283456 26036:26036 1:"hipMemcpy" -43927086057976 26036:26036 2:"" -43927086059354 26036:26036 2:"" -43927101285705 26036:26036 0:"before hipLaunchKernel" -43927101287170 26036:26036 1:"hipLaunchKernel" -43927101340566 26036:26036 0:"after hipLaunchKernel" -43927101351441 26036:26036 1:"hipMemcpy" -43927102746590 26036:26036 2:"" -43927102747951 26036:26036 2:"" -43927117985071 26036:26036 0:"before hipLaunchKernel" -43927117986645 26036:26036 1:"hipLaunchKernel" -43927118040463 26036:26036 0:"after hipLaunchKernel" -43927118051447 26036:26036 1:"hipMemcpy" -43927119444315 26036:26036 2:"" -43927119445578 26036:26036 2:"" -43927134675114 26036:26036 0:"before hipLaunchKernel" -43927134676565 26036:26036 1:"hipLaunchKernel" -43927134741734 26036:26036 0:"after hipLaunchKernel" -43927134742782 26036:26036 1:"hipMemcpy" -43927136144229 26036:26036 2:"" -43927136145648 26036:26036 2:"" -43927151368048 26036:26036 0:"before hipLaunchKernel" -43927151369538 26036:26036 1:"hipLaunchKernel" -43927151437639 26036:26036 0:"after hipLaunchKernel" -43927151438612 26036:26036 1:"hipMemcpy" -43927152848109 26036:26036 2:"" -43927152849579 26036:26036 2:"" -43927168080175 26036:26036 0:"before hipLaunchKernel" -43927168081574 26036:26036 1:"hipLaunchKernel" -43927168150552 26036:26036 0:"after hipLaunchKernel" -43927168151550 26036:26036 1:"hipMemcpy" -43927169549796 26036:26036 2:"" -43927169551102 26036:26036 2:"" -43927184781024 26036:26036 0:"before hipLaunchKernel" -43927184782636 26036:26036 1:"hipLaunchKernel" -43927184850980 26036:26036 0:"after hipLaunchKernel" -43927184851968 26036:26036 1:"hipMemcpy" -43927186250730 26036:26036 2:"" -43927186252425 26036:26036 2:"" -43927201476500 26036:26036 0:"before hipLaunchKernel" -43927201478020 26036:26036 1:"hipLaunchKernel" -43927201547060 26036:26036 0:"after hipLaunchKernel" -43927201548073 26036:26036 1:"hipMemcpy" -43927202954760 26036:26036 2:"" -43927202956034 26036:26036 2:"" -43927218185027 26036:26036 0:"before hipLaunchKernel" -43927218186612 26036:26036 1:"hipLaunchKernel" -43927218254472 26036:26036 0:"after hipLaunchKernel" -43927218255505 26036:26036 1:"hipMemcpy" -43927219646466 26036:26036 2:"" -43927219647896 26036:26036 2:"" -43927234881933 26036:26036 0:"before hipLaunchKernel" -43927234883623 26036:26036 1:"hipLaunchKernel" -43927234942029 26036:26036 0:"after hipLaunchKernel" -43927234942994 26036:26036 1:"hipMemcpy" -43927236350307 26036:26036 2:"" -43927236351606 26036:26036 2:"" -43927251575061 26036:26036 0:"before hipLaunchKernel" -43927251576548 26036:26036 1:"hipLaunchKernel" -43927251644579 26036:26036 0:"after hipLaunchKernel" -43927251645556 26036:26036 1:"hipMemcpy" -43927253044384 26036:26036 2:"" -43927253045717 26036:26036 2:"" -43927268268590 26036:26036 0:"before hipLaunchKernel" -43927268270094 26036:26036 1:"hipLaunchKernel" -43927268331576 26036:26036 0:"after hipLaunchKernel" -43927268332561 26036:26036 1:"hipMemcpy" -43927269740080 26036:26036 2:"" -43927269742282 26036:26036 2:"" -43927285209799 26036:26036 0:"before hipLaunchKernel" -43927285211479 26036:26036 1:"hipLaunchKernel" -43927285274965 26036:26036 0:"after hipLaunchKernel" -43927285275932 26036:26036 1:"hipMemcpy" -43927286687108 26036:26036 2:"" -43927286688448 26036:26036 2:"" -43927302061109 26036:26036 0:"before hipLaunchKernel" -43927302062693 26036:26036 1:"hipLaunchKernel" -43927302125993 26036:26036 0:"after hipLaunchKernel" -43927302126946 26036:26036 1:"hipMemcpy" -43927303536988 26036:26036 2:"" -43927303538917 26036:26036 2:"" -43927318932986 26036:26036 0:"before hipLaunchKernel" -43927318934524 26036:26036 1:"hipLaunchKernel" -43927319002417 26036:26036 0:"after hipLaunchKernel" -43927319003365 26036:26036 1:"hipMemcpy" -43927320413196 26036:26036 2:"" -43927320414605 26036:26036 2:"" -43927335810885 26036:26036 0:"before hipLaunchKernel" -43927335812346 26036:26036 1:"hipLaunchKernel" -43927335888679 26036:26036 0:"after hipLaunchKernel" -43927335889627 26036:26036 1:"hipMemcpy" -43927337292410 26036:26036 2:"" -43927337293638 26036:26036 2:"" -43927352526496 26036:26036 0:"before hipLaunchKernel" -43927352527944 26036:26036 1:"hipLaunchKernel" -43927352599497 26036:26036 0:"after hipLaunchKernel" -43927352600517 26036:26036 1:"hipMemcpy" -43927354004759 26036:26036 2:"" -43927354006018 26036:26036 2:"" -43927369258966 26036:26036 0:"before hipLaunchKernel" -43927369260573 26036:26036 1:"hipLaunchKernel" -43927369332114 26036:26036 0:"after hipLaunchKernel" -43927369333356 26036:26036 1:"hipMemcpy" -43927370740393 26036:26036 2:"" -43927370741687 26036:26036 2:"" -43927386003123 26036:26036 0:"before hipLaunchKernel" -43927386004646 26036:26036 1:"hipLaunchKernel" -43927386074085 26036:26036 0:"after hipLaunchKernel" -43927386075084 26036:26036 1:"hipMemcpy" -43927387477083 26036:26036 2:"" -43927387478475 26036:26036 2:"" -43927402712423 26036:26036 0:"before hipLaunchKernel" -43927402713774 26036:26036 1:"hipLaunchKernel" -43927402786738 26036:26036 0:"after hipLaunchKernel" -43927402797147 26036:26036 1:"hipMemcpy" -43927404187914 26036:26036 2:"" -43927404189080 26036:26036 2:"" -43927419415405 26036:26036 0:"before hipLaunchKernel" -43927419416875 26036:26036 1:"hipLaunchKernel" -43927419480814 26036:26036 0:"after hipLaunchKernel" -43927419481848 26036:26036 1:"hipMemcpy" -43927420832233 26036:26036 2:"" -43927420833493 26036:26036 2:"" -43927436057785 26036:26036 0:"before hipLaunchKernel" -43927436059304 26036:26036 1:"hipLaunchKernel" -43927436128964 26036:26036 0:"after hipLaunchKernel" -43927436129958 26036:26036 1:"hipMemcpy" -43927437528731 26036:26036 2:"" -43927437529961 26036:26036 2:"" -43927452762841 26036:26036 0:"before hipLaunchKernel" -43927452764332 26036:26036 1:"hipLaunchKernel" -43927452828782 26036:26036 0:"after hipLaunchKernel" -43927452829742 26036:26036 1:"hipMemcpy" -43927454218638 26036:26036 2:"" -43927454220020 26036:26036 2:"" -43927469488999 26036:26036 0:"before hipLaunchKernel" -43927469490408 26036:26036 1:"hipLaunchKernel" -43927469559898 26036:26036 0:"after hipLaunchKernel" -43927469560879 26036:26036 1:"hipMemcpy" -43927472357854 26036:26036 2:"" -43927472359152 26036:26036 2:"" -43927487594759 26036:26036 0:"before hipLaunchKernel" -43927487596207 26036:26036 1:"hipLaunchKernel" -43927487664812 26036:26036 0:"after hipLaunchKernel" -43927487665810 26036:26036 1:"hipMemcpy" -43927490446389 26036:26036 2:"" -43927490447556 26036:26036 2:"" -43927505700233 26036:26036 0:"before hipLaunchKernel" -43927505701630 26036:26036 1:"hipLaunchKernel" -43927505771471 26036:26036 0:"after hipLaunchKernel" -43927505772430 26036:26036 1:"hipMemcpy" -43927508563737 26036:26036 2:"" -43927508565058 26036:26036 2:"" -43927523810593 26036:26036 0:"before hipLaunchKernel" -43927523812278 26036:26036 1:"hipLaunchKernel" -43927523876565 26036:26036 0:"after hipLaunchKernel" -43927523877523 26036:26036 1:"hipMemcpy" -43927526657224 26036:26036 2:"" -43927526658501 26036:26036 2:"" -43927541905632 26036:26036 0:"before hipLaunchKernel" -43927541907006 26036:26036 1:"hipLaunchKernel" -43927541965928 26036:26036 0:"after hipLaunchKernel" -43927541977126 26036:26036 1:"hipMemcpy" -43927544754680 26036:26036 2:"" -43927544755960 26036:26036 2:"" -43927559995323 26036:26036 0:"before hipLaunchKernel" -43927559996857 26036:26036 1:"hipLaunchKernel" -43927560070941 26036:26036 0:"after hipLaunchKernel" -43927560071911 26036:26036 1:"hipMemcpy" -43927562858036 26036:26036 2:"" -43927562859298 26036:26036 2:"" -43927578102735 26036:26036 0:"before hipLaunchKernel" -43927578104052 26036:26036 1:"hipLaunchKernel" -43927578172905 26036:26036 0:"after hipLaunchKernel" -43927578173850 26036:26036 1:"hipMemcpy" -43927580947890 26036:26036 2:"" -43927580949302 26036:26036 2:"" -43927596191193 26036:26036 0:"before hipLaunchKernel" -43927596192531 26036:26036 1:"hipLaunchKernel" -43927596259091 26036:26036 0:"after hipLaunchKernel" -43927596260008 26036:26036 1:"hipMemcpy" -43927599042261 26036:26036 2:"" -43927599043601 26036:26036 2:"" -43927614293727 26036:26036 0:"before hipLaunchKernel" -43927614295046 26036:26036 1:"hipLaunchKernel" -43927614359522 26036:26036 0:"after hipLaunchKernel" -43927614360490 26036:26036 1:"hipMemcpy" -43927617143771 26036:26036 2:"" -43927617145221 26036:26036 2:"" -43927632387086 26036:26036 0:"before hipLaunchKernel" -43927632388395 26036:26036 1:"hipLaunchKernel" -43927632456136 26036:26036 0:"after hipLaunchKernel" -43927632457228 26036:26036 1:"hipMemcpy" -43927635241248 26036:26036 2:"" -43927635242651 26036:26036 2:"" -43927650492565 26036:26036 0:"before hipLaunchKernel" -43927650493960 26036:26036 1:"hipLaunchKernel" -43927650562083 26036:26036 0:"after hipLaunchKernel" -43927650563125 26036:26036 1:"hipMemcpy" -43927653343762 26036:26036 2:"" -43927653344988 26036:26036 2:"" -43927668591120 26036:26036 0:"before hipLaunchKernel" -43927668592494 26036:26036 1:"hipLaunchKernel" -43927668666104 26036:26036 0:"after hipLaunchKernel" -43927668667122 26036:26036 1:"hipMemcpy" -43927671454274 26036:26036 2:"" -43927671455516 26036:26036 2:"" -43927686704188 26036:26036 0:"before hipLaunchKernel" -43927686705586 26036:26036 1:"hipLaunchKernel" -43927686770857 26036:26036 0:"after hipLaunchKernel" -43927686771893 26036:26036 1:"hipMemcpy" -43927689557469 26036:26036 2:"" -43927689558889 26036:26036 2:"" -43927704812216 26036:26036 0:"before hipLaunchKernel" -43927704813628 26036:26036 1:"hipLaunchKernel" -43927704871020 26036:26036 0:"after hipLaunchKernel" -43927704871973 26036:26036 1:"hipMemcpy" -43927707709233 26036:26036 2:"" -43927707711414 26036:26036 2:"" -43927723150164 26036:26036 0:"before hipLaunchKernel" -43927723151728 26036:26036 1:"hipLaunchKernel" -43927723217327 26036:26036 0:"after hipLaunchKernel" -43927723218335 26036:26036 1:"hipMemcpy" -43927724631141 26036:26036 2:"" -43927724632609 26036:26036 2:"" -43927739862742 26036:26036 0:"before hipLaunchKernel" -43927739864356 26036:26036 1:"hipLaunchKernel" -43927739926511 26036:26036 0:"after hipLaunchKernel" -43927739927431 26036:26036 1:"hipMemcpy" -43927741339277 26036:26036 2:"" -43927741341192 26036:26036 2:"" -43927756804061 26036:26036 0:"before hipLaunchKernel" -43927756805660 26036:26036 1:"hipLaunchKernel" -43927756868931 26036:26036 0:"after hipLaunchKernel" -43927756869980 26036:26036 1:"hipMemcpy" -43927758279561 26036:26036 2:"" -43927758281001 26036:26036 2:"" -43927773544059 26036:26036 0:"before hipLaunchKernel" -43927773545986 26036:26036 1:"hipLaunchKernel" -43927773618141 26036:26036 0:"after hipLaunchKernel" -43927773628059 26036:26036 1:"hipMemcpy" -43927775024715 26036:26036 2:"" -43927775026128 26036:26036 2:"" -43927790275125 26036:26036 0:"before hipLaunchKernel" -43927790276629 26036:26036 1:"hipLaunchKernel" -43927790342444 26036:26036 0:"after hipLaunchKernel" -43927790343440 26036:26036 1:"hipMemcpy" -43927791747823 26036:26036 2:"" -43927791749126 26036:26036 2:"" -43927806983703 26036:26036 0:"before hipLaunchKernel" -43927806985088 26036:26036 1:"hipLaunchKernel" -43927807058295 26036:26036 0:"after hipLaunchKernel" -43927807059324 26036:26036 1:"hipMemcpy" -43927808462376 26036:26036 2:"" -43927808463675 26036:26036 2:"" -43927823695667 26036:26036 0:"before hipLaunchKernel" -43927823697056 26036:26036 1:"hipLaunchKernel" -43927823765678 26036:26036 0:"after hipLaunchKernel" -43927823766665 26036:26036 1:"hipMemcpy" -43927825170257 26036:26036 2:"" -43927825171581 26036:26036 2:"" -43927840419186 26036:26036 0:"before hipLaunchKernel" -43927840420630 26036:26036 1:"hipLaunchKernel" -43927840485376 26036:26036 0:"after hipLaunchKernel" -43927840486421 26036:26036 1:"hipMemcpy" -43927841878411 26036:26036 2:"" -43927841879693 26036:26036 2:"" -43926124638710:43926125127990 0:0 hcCommandKernel:6 -43926125136950:43926125148310 0:0 hcCommandMarker:8 -43926141476012:43926141954413 0:0 hcCommandKernel:11 -43926141957293:43926141963853 0:0 hcCommandMarker:13 -43926158181881:43926158670842 0:0 hcCommandKernel:16 -43926158673882:43926158680442 0:0 hcCommandMarker:18 -43926174897948:43926175383389 0:0 hcCommandKernel:21 -43926175386269:43926175392829 0:0 hcCommandMarker:23 -43926191601673:43926192092874 0:0 hcCommandKernel:26 -43926192095754:43926192102314 0:0 hcCommandMarker:28 -43926208303196:43926208801917 0:0 hcCommandKernel:31 -43926208804957:43926208811517 0:0 hcCommandMarker:33 -43926225021229:43926226865232 0:0 hcCommandKernel:36 -43926226868112:43926226899632 0:0 hcCommandMarker:38 -43926243126157:43926244971761 0:0 hcCommandKernel:41 -43926244974801:43926245006161 0:0 hcCommandMarker:43 -43926261221935:43926263068978 0:0 hcCommandKernel:46 -43926263071858:43926263103378 0:0 hcCommandMarker:48 -43926279349947:43926281198431 0:0 hcCommandKernel:51 -43926281201311:43926281233471 0:0 hcCommandMarker:53 -43926297480705:43926299324069 0:0 hcCommandKernel:56 -43926299327109:43926299358469 0:0 hcCommandMarker:58 -43926315599890:43926317433973 0:0 hcCommandKernel:61 -43926317436853:43926317468533 0:0 hcCommandMarker:63 -43926333719512:43926335565916 0:0 hcCommandKernel:66 -43926335568796:43926335600156 0:0 hcCommandMarker:68 -43926351819730:43926353661173 0:0 hcCommandKernel:71 -43926353664213:43926353695573 0:0 hcCommandMarker:73 -43926369939939:43926371779462 0:0 hcCommandKernel:76 -43926371782342:43926371813702 0:0 hcCommandMarker:78 -43926388042341:43926389884744 0:0 hcCommandKernel:81 -43926389887784:43926389920104 0:0 hcCommandMarker:83 -43926406144781:43926407986545 0:0 hcCommandKernel:86 -43926407989425:43926408020945 0:0 hcCommandMarker:88 -43926424238646:43926426089529 0:0 hcCommandKernel:91 -43926426092409:43926426123769 0:0 hcCommandMarker:93 -43926442353389:43926444193232 0:0 hcCommandKernel:96 -43926444196112:43926444227632 0:0 hcCommandMarker:98 -43926460445552:43926462284435 0:0 hcCommandKernel:101 -43926462287315:43926462318835 0:0 hcCommandMarker:103 -43926478553039:43926480389682 0:0 hcCommandKernel:106 -43926480392562:43926480423922 0:0 hcCommandMarker:108 -43926496627659:43926497112620 0:0 hcCommandKernel:111 -43926497115660:43926497122220 0:0 hcCommandMarker:113 -43926513336205:43926513823726 0:0 hcCommandKernel:116 -43926513826766:43926513833326 0:0 hcCommandMarker:118 -43926530038442:43926530517003 0:0 hcCommandKernel:121 -43926530519883:43926530526603 0:0 hcCommandMarker:123 -43926546745933:43926547234574 0:0 hcCommandKernel:126 -43926547237614:43926547244174 0:0 hcCommandMarker:128 -43926563448840:43926563942121 0:0 hcCommandKernel:131 -43926563945001:43926563951561 0:0 hcCommandMarker:133 -43926580151345:43926580644946 0:0 hcCommandKernel:136 -43926580647826:43926580654386 0:0 hcCommandMarker:138 -43926596884189:43926597368190 0:0 hcCommandKernel:141 -43926597371070:43926597377630 0:0 hcCommandMarker:143 -43926613593532:43926614078013 0:0 hcCommandKernel:146 -43926614081053:43926614087613 0:0 hcCommandMarker:148 -43926630295295:43926630781216 0:0 hcCommandKernel:151 -43926630784256:43926630790816 0:0 hcCommandMarker:153 -43926647001651:43926647481491 0:0 hcCommandKernel:156 -43926647484542:43926647491102 0:0 hcCommandMarker:158 -43926663982543:43926664471664 0:0 hcCommandKernel:161 -43926664474544:43926664481104 0:0 hcCommandMarker:163 -43926680696587:43926681178828 0:0 hcCommandKernel:166 -43926681181708:43926681188268 0:0 hcCommandMarker:168 -43926697420584:43926697905385 0:0 hcCommandKernel:171 -43926697908265:43926697914825 0:0 hcCommandMarker:173 -43926714146808:43926714631609 0:0 hcCommandKernel:176 -43926714634489:43926714641049 0:0 hcCommandMarker:178 -43926730854108:43926731338749 0:0 hcCommandKernel:181 -43926731341629:43926731348189 0:0 hcCommandMarker:183 -43926747551245:43926748045486 0:0 hcCommandKernel:186 -43926748048526:43926748055086 0:0 hcCommandMarker:188 -43926764258597:43926764748198 0:0 hcCommandKernel:191 -43926764751078:43926764757798 0:0 hcCommandMarker:193 -43926780957277:43926781448318 0:0 hcCommandKernel:196 -43926781451198:43926781457918 0:0 hcCommandMarker:198 -43926797669626:43926798157147 0:0 hcCommandKernel:201 -43926798160027:43926798166587 0:0 hcCommandMarker:203 -43926814388220:43926814874621 0:0 hcCommandKernel:206 -43926814877661:43926814884221 0:0 hcCommandMarker:208 -43926831097803:43926831581804 0:0 hcCommandKernel:211 -43926831584684:43926831591404 0:0 hcCommandMarker:213 -43926847821044:43926849662967 0:0 hcCommandKernel:216 -43926849665847:43926849697207 0:0 hcCommandMarker:218 -43926865935080:43926867770923 0:0 hcCommandKernel:221 -43926867773803:43926867805163 0:0 hcCommandMarker:223 -43926884040558:43926885874961 0:0 hcCommandKernel:226 -43926885878001:43926885909361 0:0 hcCommandMarker:228 -43926902138990:43926903984593 0:0 hcCommandKernel:231 -43926903987473:43926904018833 0:0 hcCommandMarker:233 -43926920231915:43926922069838 0:0 hcCommandKernel:236 -43926922072718:43926922104238 0:0 hcCommandMarker:238 -43926938367877:43926940216520 0:0 hcCommandKernel:241 -43926940219720:43926940251240 0:0 hcCommandMarker:243 -43926956474108:43926958312991 0:0 hcCommandKernel:246 -43926958316031:43926958347391 0:0 hcCommandMarker:248 -43926974603566:43926976444369 0:0 hcCommandKernel:251 -43926976447409:43926976478769 0:0 hcCommandMarker:253 -43926992719259:43926994570142 0:0 hcCommandKernel:256 -43926994573182:43926994604542 0:0 hcCommandMarker:258 -43927010837861:43927012680264 0:0 hcCommandKernel:261 -43927012683304:43927012714824 0:0 hcCommandMarker:263 -43927028930472:43927030776235 0:0 hcCommandKernel:266 -43927030779275:43927030810635 0:0 hcCommandMarker:268 -43927047068414:43927048906817 0:0 hcCommandKernel:271 -43927048909697:43927048941217 0:0 hcCommandMarker:273 -43927065166595:43927067003718 0:0 hcCommandKernel:276 -43927067006758:43927067038118 0:0 hcCommandMarker:278 -43927083266872:43927085103355 0:0 hcCommandKernel:281 -43927085106395:43927085137755 0:0 hcCommandMarker:283 -43927101340134:43927101823655 0:0 hcCommandKernel:286 -43927101826535:43927101833095 0:0 hcCommandMarker:288 -43927118039677:43927118521918 0:0 hcCommandKernel:291 -43927118524958:43927118531518 0:0 hcCommandMarker:293 -43927134729368:43927135216089 0:0 hcCommandKernel:296 -43927135219129:43927135225849 0:0 hcCommandMarker:298 -43927151425930:43927151912491 0:0 hcCommandKernel:301 -43927151915691:43927151922091 0:0 hcCommandMarker:303 -43927168146671:43927168626352 0:0 hcCommandKernel:306 -43927168629232:43927168635792 0:0 hcCommandMarker:308 -43927184847025:43927185328626 0:0 hcCommandKernel:311 -43927185331506:43927185338066 0:0 hcCommandMarker:313 -43927201543524:43927202032005 0:0 hcCommandKernel:316 -43927202034885:43927202041605 0:0 hcCommandMarker:318 -43927218250716:43927218735357 0:0 hcCommandKernel:321 -43927218738557:43927218744957 0:0 hcCommandMarker:323 -43927234941369:43927235422650 0:0 hcCommandKernel:326 -43927235425690:43927235432250 0:0 hcCommandMarker:328 -43927251640903:43927252122504 0:0 hcCommandKernel:331 -43927252125544:43927252132104 0:0 hcCommandMarker:333 -43927268330354:43927268808434 0:0 hcCommandKernel:336 -43927268811294:43927268817854 0:0 hcCommandMarker:338 -43927285272973:43927285761294 0:0 hcCommandKernel:341 -43927285764334:43927285770894 0:0 hcCommandMarker:343 -43927302125151:43927302604031 0:0 hcCommandKernel:346 -43927302606796:43927302613356 0:0 hcCommandMarker:348 -43927318996823:43927319482264 0:0 hcCommandKernel:351 -43927319485304:43927319491864 0:0 hcCommandMarker:353 -43927335884981:43927336368022 0:0 hcCommandKernel:356 -43927336370902:43927336377462 0:0 hcCommandMarker:358 -43927352588075:43927353077036 0:0 hcCommandKernel:361 -43927353080076:43927353086636 0:0 hcCommandMarker:363 -43927369328132:43927369818213 0:0 hcCommandKernel:366 -43927369821093:43927369827653 0:0 hcCommandMarker:368 -43927386070332:43927386554173 0:0 hcCommandKernel:371 -43927386557213:43927386563613 0:0 hcCommandMarker:373 -43927402794621:43927403276064 0:0 hcCommandKernel:376 -43927403278944:43927403285504 0:0 hcCommandMarker:378 -43927419469921:43927419953281 0:0 hcCommandKernel:381 -43927419956161:43927419962881 0:0 hcCommandMarker:383 -43927436114138:43927436605339 0:0 hcCommandKernel:386 -43927436608539:43927436614939 0:0 hcCommandMarker:388 -43927452817152:43927453295713 0:0 hcCommandKernel:391 -43927453298753:43927453305313 0:0 hcCommandMarker:393 -43927469556470:43927471402233 0:0 hcCommandKernel:396 -43927471405273:43927471436473 0:0 hcCommandMarker:398 -43927487653662:43927489493025 0:0 hcCommandKernel:401 -43927489495905:43927489527265 0:0 hcCommandMarker:403 -43927505760487:43927507612330 0:0 hcCommandKernel:406 -43927507615370:43927507646890 0:0 hcCommandMarker:408 -43927523866005:43927525701688 0:0 hcCommandKernel:411 -43927525704568:43927525735928 0:0 hcCommandMarker:413 -43927541964985:43927543800828 0:0 hcCommandKernel:416 -43927543803868:43927543835228 0:0 hcCommandMarker:418 -43927560059882:43927561903405 0:0 hcCommandKernel:421 -43927561906285:43927561937645 0:0 hcCommandMarker:423 -43927578162284:43927579996207 0:0 hcCommandKernel:426 -43927579999247:43927580030607 0:0 hcCommandMarker:428 -43927596246861:43927598092944 0:0 hcCommandKernel:431 -43927598095984:43927598127344 0:0 hcCommandMarker:433 -43927614348780:43927616191983 0:0 hcCommandKernel:436 -43927616195023:43927616226383 0:0 hcCommandMarker:438 -43927632444778:43927634288301 0:0 hcCommandKernel:441 -43927634291341:43927634322701 0:0 hcCommandMarker:443 -43927650551469:43927652392272 0:0 hcCommandKernel:446 -43927652395312:43927652426672 0:0 hcCommandMarker:448 -43927668662167:43927670500250 0:0 hcCommandKernel:451 -43927670503130:43927670534490 0:0 hcCommandMarker:453 -43927686759627:43927688598030 0:0 hcCommandKernel:456 -43927688600910:43927688632270 0:0 hcCommandMarker:458 -43927704870032:43927706712115 0:0 hcCommandKernel:461 -43927706714876:43927706746556 0:0 hcCommandMarker:463 -43927723215479:43927723705400 0:0 hcCommandKernel:466 -43927723708440:43927723715000 0:0 hcCommandMarker:468 -43927739925344:43927740410624 0:0 hcCommandKernel:471 -43927740413495:43927740420055 0:0 hcCommandMarker:473 -43927756867441:43927757354642 0:0 hcCommandKernel:476 -43927757357522:43927757364082 0:0 hcCommandMarker:478 -43927773616793:43927774102554 0:0 hcCommandKernel:481 -43927774105594:43927774111994 0:0 hcCommandMarker:483 -43927790331034:43927790824955 0:0 hcCommandKernel:486 -43927790827835:43927790834395 0:0 hcCommandMarker:488 -43927807043096:43927807534457 0:0 hcCommandKernel:491 -43927807537337:43927807543897 0:0 hcCommandMarker:493 -43927823754202:43927824244923 0:0 hcCommandKernel:496 -43927824247803:43927824254363 0:0 hcCommandMarker:498 -43927840474185:43927840956906 0:0 hcCommandKernel:501 -43927840959946:43927840966506 0:0 hcCommandMarker:503 +3802696362735951:3802696362742111 1969:1969 hipGetDeviceProperties(props=, device=0) +3802696363814689:3802696363950080 1969:1969 hipMalloc(ptr=0x7f5d950fbec3, size=4194304) +3802696363953420:3802696364101301 1969:1969 hipMalloc(ptr=0x7ffc1fedbc38, size=4194304) +3802696364113571:3802696640047036 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696640055326:3802696640055327 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696640087756:3802696640092256 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696640099836:3802696640100846 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e04d8fb4) +3802696640108756:3802696640659250 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x7f5c84bff010, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696640675670:3802696640675671 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696640679740:3802696644080695 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696652345776:3802696654342111 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696654345401:3802696654345402 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696654351861:3802696654353221 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696654357431:3802696654358041 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e1272a54) +3802696654361991:3802696654368211 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696654377342:3802696654377343 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696654380832:3802696657490425 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696664971330:3802696667050056 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696667053126:3802696667053127 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696667064616:3802696667065446 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696667068896:3802696667069556 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e1e92325) +3802696667073166:3802696667078546 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696667081196:3802696667081197 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696667084536:3802696669834166 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696677171050:3802696679125475 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696679128415:3802696679128416 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696679134425:3802696679135395 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696679139185:3802696679139755 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e2a14f17) +3802696679143595:3802696679148715 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696679156885:3802696679156886 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696679160125:3802696681867825 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696689188500:3802696691160594 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696691163784:3802696691163785 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696691170114:3802696691170904 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696691179954:3802696691180694 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e358f481) +3802696691184755:3802696691189735 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696691192345:3802696691192346 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696691196895:3802696693878895 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696701216148:3802696703196883 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696703200143:3802696703200144 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696703205573:3802696703206453 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696703209883:3802696703210463 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e4109a13) +3802696703214133:3802696703218783 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696703227553:3802696703227554 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696703230903:3802696705940073 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696713254388:3802696715262513 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696715265573:3802696715265574 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696715271933:3802696715272703 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696715281103:3802696715281683 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e4c8b791) +3802696715288473:3802696715293773 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696715296353:3802696715296354 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696715299513:3802696718001163 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696725322007:3802696727335272 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696727343812:3802696727343813 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696727349622:3802696727350422 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696727354892:3802696727355722 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e58101e7) +3802696727359392:3802696727364452 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696727369572:3802696727369573 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696727372872:3802696730080732 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696737397467:3802696739374631 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696739377541:3802696739377542 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696739388211:3802696739389061 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696739393802:3802696739394672 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e638b38b) +3802696739398292:3802696739403562 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696739406122:3802696739406123 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696739409552:3802696742436414 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696749712418:3802696751644382 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696751654662:3802696751654663 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696751660902:3802696751661742 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696751665222:3802696751665912 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e6f3f75d) +3802696751669592:3802696751675122 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696751677752:3802696751677753 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696751681962:3802696754497883 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696761934358:3802696763879193 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696763882453:3802696763882454 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696763887973:3802696763889083 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696763895223:3802696763895813 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e7ae8a1d) +3802696763899503:3802696763905253 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696763907953:3802696763907954 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696763911203:3802696766871395 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696774437721:3802696776384806 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696776391306:3802696776391307 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696776397246:3802696776398366 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696776401876:3802696776402456 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e86d6a31) +3802696776406216:3802696776411926 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696776414266:3802696776414267 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696776418786:3802696779431988 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696786940164:3802696788880918 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696788884258:3802696788884259 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696788890398:3802696788891118 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696788894518:3802696788895168 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e92c09be) +3802696788902868:3802696788908228 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696788910898:3802696788910899 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696788914188:3802696791885930 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696799343906:3802696801352321 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696801360471:3802696801360472 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696801366151:3802696801367121 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696801370521:3802696801371101 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281e9ea67c8) +3802696801374591:3802696801380001 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696801382521:3802696801382522 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696801386911:3802696804138941 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696811551556:3802696813502780 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696813505760:3802696813505761 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696813511350:3802696813512000 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696813515460:3802696813516030 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281eaa3b876) +3802696813525151:3802696813530911 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696813533521:3802696813533522 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696813536721:3802696816316731 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696823720866:3802696825682671 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696825685551:3802696825685552 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696825696431:3802696825697281 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696825700631:3802696825701231 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281eb5da6ea) +3802696825704841:3802696825710411 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696825716271:3802696825716272 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696825721771:3802696828355021 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696835761945:3802696837713140 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696837716400:3802696837716401 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696837722450:3802696837723260 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696837726780:3802696837727370 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281ec152710) +3802696837736290:3802696837741980 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696837744650:3802696837744651 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696837747920:3802696840669822 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696848175877:3802696850116212 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696850119122:3802696850119123 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696850133262:3802696850133922 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696850137402:3802696850137982 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281ecd285e9) +3802696850141962:3802696850147022 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696850149702:3802696850149703 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696850153912:3802696852905613 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696860482268:3802696862408153 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696862411193:3802696862411194 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696862416963:3802696862417773 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696862421533:3802696862422103 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281ed8df567) +3802696862431233:3802696862436893 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696862439603:3802696862439604 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696862442913:3802696865524756 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696872837160:3802696874768504 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696874771404:3802696874771405 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696874781925:3802696874782695 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696874786175:3802696874786765 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281ee4aa193) +3802696874790835:3802696874795975 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696874798615:3802696874798616 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696874801805:3802696877696796 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696885058790:3802696887390638 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696887393548:3802696887393549 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696887399258:3802696887400098 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696887403568:3802696887404138 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281ef0b2800) +3802696887412518:3802696887417898 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696887420568:3802696887420569 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696887423868:3802696890490901 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696897758815:3802696899692869 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696899696049:3802696899696050 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696899706499:3802696899707219 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696899710769:3802696899711339 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281efc6f264) +3802696899714699:3802696899719649 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696899722049:3802696899722050 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696899725429:3802696902523020 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696909793454:3802696911742168 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696911745278:3802696911745279 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696911750868:3802696911751688 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696911755298:3802696911755888 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f07ebace) +3802696911759768:3802696911765108 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696911773408:3802696911773409 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696911776738:3802696914824181 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696922290866:3802696924269201 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696924272511:3802696924272512 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696924284531:3802696924285361 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696924288931:3802696924289511 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f13dfa28) +3802696924293321:3802696924299191 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696924304651:3802696924304652 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696924308111:3802696927047892 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696934600088:3802696936532812 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696936535772:3802696936535773 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696936541832:3802696936542562 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696936546302:3802696936546872 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f1f9018d) +3802696936555262:3802696936560562 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696936564712:3802696936564713 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696936567962:3802696939431873 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696946943529:3802696948885613 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696948888923:3802696948888924 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696948894383:3802696948895173 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696948905404:3802696948905974 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f2b57da3) +3802696948909614:3802696948915254 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696948917774:3802696948917775 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696948921004:3802696951896226 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696959371411:3802696961375676 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696961378716:3802696961378717 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696961384426:3802696961385446 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696961394496:3802696961395076 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f3741375) +3802696961399056:3802696961404536 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696961408536:3802696961408537 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696961411896:3802696964030195 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696971343720:3802696973425385 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696973433445:3802696973433446 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696973438875:3802696973439615 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696973444245:3802696973444895 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f42c01c3) +3802696973448655:3802696973454335 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696973457255:3802696973457256 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696973460535:3802696976519038 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696983888993:3802696985865518 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696985871628:3802696985871629 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696985877738:3802696985878628 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696985881938:3802696985882508 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f4e9cf5a) +3802696985886168:3802696985891478 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696985895198:3802696985895199 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696985898548:3802696988791589 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802696996268344:3802696998238059 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802696998240779:3802696998240780 1969:1969 MARK(name(before HIP LaunchKernel)) +3802696998246449:3802696998247159 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802696998253139:3802696998253699 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f5a689a0) +3802696998257619:3802696998262559 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802696998265249:3802696998265250 1969:1969 MARK(name(after HIP LaunchKernel)) +3802696998268519:3802697001030610 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697008363334:3802697010354519 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697010359389:3802697010359390 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697010364979:3802697010365859 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697010369249:3802697010369829 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f65f7400) +3802697010373649:3802697010379229 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697010382209:3802697010382210 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697010387849:3802697013164500 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697020364493:3802697022156186 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697022160466:3802697022160467 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697022167136:3802697022167806 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697022180286:3802697022180816 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f7138912) +3802697022184706:3802697022193226 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697022200196:3802697022200197 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697022203406:3802697024916016 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697032174460:3802697033872673 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697033885733:3802697033885734 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697033891813:3802697033893003 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697033897073:3802697033897673 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f7c67255) +3802697033901143:3802697033908083 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697033910573:3802697033910574 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697033915443:3802697036527733 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697043715706:3802697045435578 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697045440008:3802697045440009 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697045447168:3802697045447828 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697045451498:3802697045452108 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f876c220) +3802697045463469:3802697045471069 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697045473799:3802697045473800 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697045477089:3802697048097158 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697055288462:3802697057008124 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697057020374:3802697057020375 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697057028905:3802697057029605 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697057033415:3802697057034155 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f9277b28) +3802697057037775:3802697057044625 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697057047305:3802697057047306 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697057052015:3802697059677884 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697066856728:3802697068564870 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697068569390:3802697068569391 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697068575840:3802697068576820 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697068581390:3802697068581910 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281f9d7ad2f) +3802697068592860:3802697068600491 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697068603401:3802697068603402 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697068606671:3802697071229770 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697078420113:3802697080127116 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697080139836:3802697080139837 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697080146966:3802697080147966 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697080151696:3802697080152346 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281fa883cb1) +3802697080155766:3802697080163286 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697080166076:3802697080166077 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697080170706:3802697082789405 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697089985979:3802697091700362 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697091705022:3802697091705023 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697091711702:3802697091712482 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697091716102:3802697091716622 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281fb38b24c) +3802697091727082:3802697091734562 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697091737292:3802697091737293 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697091740482:3802697094369101 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697101552134:3802697103268287 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697103272807:3802697103272808 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697103286617:3802697103287477 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697103292317:3802697103292837 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281fbe950cd) +3802697103296137:3802697103303217 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697103305937:3802697103305938 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697103310797:3802697105931537 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697113121800:3802697114826953 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697114831473:3802697114831474 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697114838223:3802697114839083 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697114843043:3802697114843583 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281fc999405) +3802697114858613:3802697114868643 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697114872803:3802697114872804 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697114879993:3802697117487103 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697124675005:3802697126378858 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697126383398:3802697126383399 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697126397348:3802697126397958 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697126402598:3802697126403198 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281fd49f398) +3802697126406548:3802697126413878 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697126416498:3802697126416499 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697126419878:3802697129068948 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697136275912:3802697137975834 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697137980304:3802697137980305 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697137986764:3802697137987644 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697137991434:3802697137991954 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281fdfacb7b) +3802697138003734:3802697138010735 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697138013375:3802697138013376 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697138018655:3802697140630484 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697147820777:3802697149537720 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697149542330:3802697149542331 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697149556550:3802697149557300 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697149561790:3802697149562390 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281feab552b) +3802697149567470:3802697149574740 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697149577240:3802697149577241 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697149580540:3802697152203779 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697159400733:3802697161106245 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697161110756:3802697161110757 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697161118016:3802697161118696 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697161122386:3802697161122916 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8281ff5bbe96) +3802697161135096:3802697161143276 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697161147496:3802697161147497 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697161150486:3802697163778675 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697170965009:3802697172656051 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697172661601:3802697172661602 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697172675452:3802697172676122 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697172685472:3802697172685982 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282000c188a) +3802697172689392:3802697172700652 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697172703202:3802697172703203 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697172706612:3802697175425102 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697182719185:3802697184416378 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697184420838:3802697184420839 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697184435358:3802697184436368 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697184440478:3802697184441138 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828200bf8aad) +3802697184444778:3802697184452358 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697184456728:3802697184456729 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697184460098:3802697187086888 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697194276091:3802697195987864 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697195992424:3802697195992425 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697195998654:3802697195999414 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697196024864:3802697196025834 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282016ffa8b) +3802697196029264:3802697196037355 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697196040085:3802697196040086 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697196043505:3802697198665334 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697205861857:3802697207571230 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697207575960:3802697207575961 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697207582780:3802697207583490 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697207587270:3802697207588020 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820220bc98) +3802697207591380:3802697207600620 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697207611090:3802697207611091 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697207614520:3802697210251409 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697217437203:3802697219157406 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697219163076:3802697219163077 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697219169276:3802697219170216 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697219183026:3802697219183696 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828202d188f5) +3802697219187266:3802697219194726 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697219197636:3802697219197637 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697219201146:3802697221815255 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697229006639:3802697230712791 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697230724631:3802697230724632 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697230731121:3802697230731871 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697230736871:3802697230737411 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820381f365) +3802697230740761:3802697230748061 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697230752191:3802697230752192 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697230755511:3802697233384041 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697240594284:3802697242289497 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697242294007:3802697242294008 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697242300487:3802697242301397 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697242313627:3802697242314227 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828204327c88) +3802697242317697:3802697242324897 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697242327637:3802697242327638 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697242330907:3802697244969487 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697252183401:3802697253869453 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697253884163:3802697253884164 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697253893063:3802697253893943 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697253897613:3802697253898133 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828204e35fa2) +3802697253901783:3802697253909123 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697253911753:3802697253911754 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697253920713:3802697256526153 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697263714986:3802697265419208 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697265424348:3802697265424349 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697265431088:3802697265431798 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697265443558:3802697265444168 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828205936d23) +3802697265447418:3802697265455328 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697265457808:3802697265457809 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697265461049:3802697268093008 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697275280772:3802697276992464 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697277004774:3802697277004775 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697277011004:3802697277011634 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697277016094:3802697277016614 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828206441e8c) +3802697277019954:3802697277029575 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697277032225:3802697277032226 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697277036485:3802697279665254 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697287064778:3802697288769601 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697288774361:3802697288774362 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697288781221:3802697288782041 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697288795601:3802697288796321 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828206f7b874) +3802697288799791:3802697288807501 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697288810031:3802697288810032 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697288813241:3802697291432331 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697298629774:3802697300323307 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697300335027:3802697300335028 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697300341487:3802697300342347 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697300346437:3802697300347157 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828207a81d9d) +3802697300350427:3802697300358447 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697300363097:3802697300363098 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697300367267:3802697302993947 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697310188120:3802697311890442 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697311895852:3802697311895853 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697311902212:3802697311902842 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697311906742:3802697311907352 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828208588385) +3802697311918152:3802697311925483 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697311928203:3802697311928204 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697311931423:3802697314557912 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697321751416:3802697323460438 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697323472728:3802697323472729 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697323479218:3802697323479868 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697323484368:3802697323484969 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282090929fe) +3802697323488319:3802697323495729 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697323498359:3802697323498360 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697323502779:3802697326137268 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697333343722:3802697335282166 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697335287006:3802697335287007 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697335293276:3802697335293896 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697335298036:3802697335298566 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828209bd6e40) +3802697335312946:3802697335319867 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697335322697:3802697335322698 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697335325847:3802697337930256 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697345133029:3802697346844151 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697346848101:3802697346848102 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697346862372:3802697346863092 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697346867882:3802697346868402 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820a6df619) +3802697346871792:3802697346879142 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697346881732:3802697346881733 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697346888552:3802697349492641 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697356691925:3802697358396787 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697358401567:3802697358401568 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697358407577:3802697358408187 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697358412268:3802697358412788 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820b1e1fe2) +3802697358425178:3802697358432458 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697358437078:3802697358437079 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697358440208:3802697361074237 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697368272060:3802697369964753 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697369969163:3802697369969164 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697369983743:3802697369984623 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697369989133:3802697369989733 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820bcec404) +3802697369994933:3802697370002183 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697370004493:3802697370004494 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697370007713:3802697372629992 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697379814436:3802697381533359 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697381538859:3802697381538860 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697381544509:3802697381545209 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697381557349:3802697381557859 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820c7f2a4f) +3802697381562939:3802697381569939 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697381572519:3802697381572520 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697381577269:3802697384224859 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697391592004:3802697393309566 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697393314116:3802697393314117 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697393336296:3802697393337106 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697393340346:3802697393340896 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820d331815) +3802697393344626:3802697393353936 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697393361926:3802697393361927 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697393365126:3802697395986315 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697403168729:3802697404878002 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697404882662:3802697404882663 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697404888202:3802697404888942 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697404892182:3802697404892782 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820de35c28) +3802697404896222:3802697404904832 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697404915502:3802697404915503 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697404918702:3802697407554721 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697414750225:3802697416445228 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697416449728:3802697416449729 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697416463558:3802697416464358 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697416468888:3802697416469428 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820e93fc57) +3802697416473168:3802697416480798 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697416483588:3802697416483589 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697416486658:3802697419124487 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697426317840:3802697428179634 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697428184314:3802697428184315 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697428190824:3802697428191414 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697428195454:3802697428196054 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820f46ecdf) +3802697428199854:3802697428207634 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697428217224:3802697428217225 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697428220474:3802697430844804 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697438081348:3802697439806851 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697439811621:3802697439811622 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697439818581:3802697439819231 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697439825081:3802697439825621 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82820ff859c8) +3802697439829721:3802697439837491 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697439840121:3802697439840122 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697439843441:3802697442470620 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697449672244:3802697451391516 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697451396406:3802697451396407 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697451409976:3802697451410996 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697451415896:3802697451416426 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828210a939d6) +3802697451420176:3802697451427856 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697451432116:3802697451432117 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697451435306:3802697454066596 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697461261549:3802697462984012 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697462988752:3802697462988753 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697462996142:3802697462997012 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697463010932:3802697463011462 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282115a0363) +3802697463014602:3802697463022292 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697463025282:3802697463025283 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697463028422:3802697465637702 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697472970206:3802697474687979 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697474699209:3802697474699210 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697474704579:3802697474705179 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697474709959:3802697474710469 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282120caa2b) +3802697474713689:3802697474720999 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697474724979:3802697474724980 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697474728189:3802697477346579 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697484551052:3802697486241794 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697486246084:3802697486246085 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697486252834:3802697486253454 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697486265324:3802697486265955 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828212bce04c) +3802697486269605:3802697486280845 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697486285045:3802697486285046 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697486288085:3802697488922584 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697496258999:3802697497957691 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697497970892:3802697497970893 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697497976732:3802697497977872 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697497982192:3802697497982782 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282136fc68e) +3802697497986052:3802697497993852 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697497997352:3802697497997353 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697498000922:3802697500603791 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697507798214:3802697509537487 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697509541857:3802697509541858 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697509548737:3802697509549727 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697509562417:3802697509563087 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282142058cb) +3802697509567027:3802697509574197 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697509577057:3802697509577058 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697509580277:3802697512190997 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697519380840:3802697521101523 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697521113923:3802697521113924 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697521119953:3802697521120933 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697521125653:3802697521126183 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828214d0e893) +3802697521129813:3802697521136933 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697521139663:3802697521139664 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697521144093:3802697523759413 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697530941266:3802697532643339 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697532648919:3802697532648920 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697532655519:3802697532656189 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697532666759:3802697532667529 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821580ebe2) +3802697532670859:3802697532678879 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697532681559:3802697532681560 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697532684669:3802697535391508 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697542673232:3802697544378325 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697544390165:3802697544390166 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697544396025:3802697544396915 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697544401385:3802697544401905 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282163411cf) +3802697544405265:3802697544412485 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697544415615:3802697544415616 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697544422355:3802697547035635 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697554230768:3802697555943621 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697555948121:3802697555948122 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697555954821:3802697555955541 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697555959231:3802697555959741 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828216e4705f) +3802697555971341:3802697555978541 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697555981191:3802697555981192 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697555984261:3802697558636661 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697565836394:3802697567552067 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697567564557:3802697567564558 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697567570347:3802697567571207 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697567576287:3802697567576807 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821795add2) +3802697567580277:3802697567587547 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697567591857:3802697567591858 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697567595817:3802697570227407 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697577454390:3802697579175063 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697579179613:3802697579179614 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697579186273:3802697579187313 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697579191083:3802697579191603 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821846ecea) +3802697579204473:3802697579213143 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697579217013:3802697579217014 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697579220094:3802697581807953 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697588998885:3802697590716078 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697590721078:3802697590721079 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697590735268:3802697590736098 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697590742158:3802697590742638 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828218f72513) +3802697590746158:3802697590753499 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697590756039:3802697590756040 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697590760059:3802697593375498 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697600588052:3802697602281414 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697602285914:3802697602285915 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697602301674:3802697602302444 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697602307064:3802697602307594 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828219a7a1de) +3802697602312724:3802697602320385 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697602322935:3802697602322936 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697602325985:3802697604954534 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697612162018:3802697613866470 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697613880670:3802697613880671 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697613888410:3802697613889220 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697613892430:3802697613892970 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821a586e64) +3802697613896330:3802697613903600 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697613906110:3802697613906111 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697613909230:3802697616517299 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697623714253:3802697625435156 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697625439886:3802697625439887 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697625446756:3802697625447436 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697625451106:3802697625451856 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821b08cb6d) +3802697625463456:3802697625470906 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697625473806:3802697625473807 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697625476966:3802697628100686 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697635286659:3802697637010162 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697637015272:3802697637015273 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697637029512:3802697637030552 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697637034872:3802697637035462 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821bb989a7) +3802697637038712:3802697637046282 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697637049032:3802697637049033 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697637052192:3802697639671212 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697646869614:3802697648575677 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697648581217:3802697648581218 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697648592837:3802697648593477 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697648596767:3802697648597277 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821c69f90c) +3802697648600867:3802697648610727 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697648614427:3802697648614428 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697648617497:3802697651251977 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697658435450:3802697660299234 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697660304894:3802697660304895 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697660318704:3802697660319894 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697660324164:3802697660324734 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821d1ce713) +3802697660328574:3802697660335734 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697660338634:3802697660338635 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697660342075:3802697662958104 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697670196457:3802697671910750 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697671915270:3802697671915271 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697671922700:3802697671923330 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697671926890:3802697671927400 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821dcdf4c1) +3802697671930710:3802697671938810 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697671951220:3802697671951221 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697671954350:3802697674573060 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697681770813:3802697683490546 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697683495356:3802697683495357 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697683501696:3802697683502456 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697683517046:3802697683517576 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821e7ea36e) +3802697683520966:3802697683527866 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697683530516:3802697683530517 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697683533636:3802697686162606 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697693384780:3802697695110182 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697695114482:3802697695114483 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697695121062:3802697695122032 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697695125592:3802697695126362 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821f2ff01e) +3802697695129552:3802697695136703 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697695146123:3802697695146124 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697695149153:3802697697748112 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697704969795:3802697706664297 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697706669648:3802697706669649 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697706677758:3802697706678568 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697706690018:3802697706690618 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82821fe04683) +3802697706694538:3802697706702688 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697706705998:3802697706705999 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697706709518:3802697709314997 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697716519131:3802697718218393 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697718223333:3802697718223334 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697718231024:3802697718231744 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697718235324:3802697718236004 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828220908fdc) +3802697718239784:3802697718249784 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697718259654:3802697718259655 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697718262844:3802697720898183 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697728108266:3802697729822329 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697729827619:3802697729827620 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697729834299:3802697729835269 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697729847829:3802697729848339 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828221419dda) +3802697729852199:3802697729859789 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697729862569:3802697729862570 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697729865819:3802697732473679 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697739661472:3802697741384355 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697741396635:3802697741396636 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697741403095:3802697741403795 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697741407965:3802697741408555 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828221f2231f) +3802697741412025:3802697741419985 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697741423955:3802697741423956 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697741427155:3802697744057545 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697751252168:3802697752968541 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697752973421:3802697752973422 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697752980241:3802697752980941 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697752993511:3802697752994091 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828222a2ca07) +3802697752997871:3802697753005841 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697753008341:3802697753008342 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697753011551:3802697755639310 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697763027265:3802697764745038 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697764757958:3802697764757959 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697764764498:3802697764765248 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697764769768:3802697764770288 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828223569a30) +3802697764773448:3802697764783088 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697764787278:3802697764787279 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697764794248:3802697767406208 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697774595431:3802697776304404 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697776308924:3802697776308925 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697776316764:3802697776317474 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697776330604:3802697776331134 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82822406dfd4) +3802697776334764:3802697776341934 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697776344554:3802697776344555 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697776349004:3802697778975684 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697786167006:3802697787882339 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697787894599:3802697787894600 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697787900559:3802697787901229 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697787905899:3802697787906409 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd828224b7a08d) +3802697787911729:3802697787919549 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697787923309:3802697787923310 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697787928560:3802697790549379 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697797775903:3802697799507496 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697799512446:3802697799512447 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697799519136:3802697799519856 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697799531176:3802697799531696 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd82822568e986) +3802697799536746:3802697799544476 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697799547086:3802697799547087 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697799551486:3802697802177256 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697809395029:3802697811118521 1969:1969 hipMemcpy(dst=0x7f5bf6800000, src=0x7f5c84bff010, sizeBytes=4194304, kind=1) +3802697811130941:3802697811130942 1969:1969 MARK(name(before HIP LaunchKernel)) +3802697811138022:3802697811138662 1969:1969 __hipPushCallConfiguration(gridDim=, blockDim=, sharedMem=0, stream=0) +3802697811144902:3802697811145432 1969:1969 __hipPopCallConfiguration(gridDim=, blockDim=, sharedMem=140039878332634, stream=0xd8282261a333e) +3802697811148872:3802697811157502 1969:1969 hipLaunchKernel(function_address=0x401030, numBlocks=, dimBlocks=, args=0x3b9aca00, sharedMemBytes=0, stream=0) kernel=matrixTranspose(float*, float*, int) +3802697811159972:3802697811159973 1969:1969 MARK(name(after HIP LaunchKernel)) +3802697811166842:3802697813778811 1969:1969 hipMemcpy(dst=0x7f5c847fe010, src=0x7f5bf6200000, sizeBytes=4194304, kind=2) +3802697821040505:3802697821127036 1969:1969 hipFree(ptr=0x7f5bf6800000) +3802697821131646:3802697821160196 1969:1969 hipFree(ptr=0x7f5bf6200000) +3802696358099287:3802696358101377 1969:1969 hsa_system_get_major_extension_table(, , , 0x7f5d944af0a0) = 0 +3802696358105217:3802696358105567 1969:1969 hsa_agent_get_info(, 17, 0x7ffc1fedb6dc) = 0 +3802696358109107:3802696358109777 1969:1969 hsa_amd_memory_pool_get_info(, 0, 0x7ffc1fedb580) = 0 +3802696358110187:3802696358110467 1969:1969 hsa_amd_memory_pool_get_info(, 1, 0x7ffc1fedb584) = 0 +3802696358110877:3802696358111147 1969:1969 hsa_amd_memory_pool_get_info(, 0, 0x7ffc1fedb580) = 0 +3802696358111527:3802696358111797 1969:1969 hsa_amd_memory_pool_get_info(, 1, 0x7ffc1fedb584) = 0 +3802696358111527:3802696358112207 1969:1969 hsa_amd_agent_iterate_memory_pools(, 1, 0x7ffc1fedb6e0) = 1 +3802696358113127:3802696358113437 1969:1969 hsa_agent_get_info(, 17, 0x7ffc1fedb6dc) = 0 +3802696358113127:3802696358113977 1969:1969 hsa_iterate_agents(1, 0) = 0 +3802696358116187:3802696358116487 1969:1969 hsa_agent_get_info(, 40960, 0x7ffc1fedb8c8) = 0 +3802696358117037:3802696358119567 1969:1969 hsa_agent_get_info(, 0, 0x7ffc1fedb9a0) = 0 +3802696358120817:3802696358121127 1969:1969 hsa_agent_get_info(, 19, 0x7ffc1fedb8d0) = 0 +3802696358123117:3802696358137167 1969:1969 hsa_isa_get_info_alt(, 0, 0x7ffc1fedb8cc) = 0 +3802696358137647:3802696358141137 1969:1969 hsa_isa_get_info_alt(, 1, 0x7ffc1fedb820) = 0 +3802696358149697:3802696358149997 1969:1969 hsa_agent_get_info(, 4, 0x1ca8ac0) = 0 +3802696358150517:3802696358150797 1969:1969 hsa_agent_get_info(, 40976, 0x7ffc1fedb720) = 0 +3802696361476252:3802696361477792 1969:1969 hsa_agent_get_info(, 40966, 0x7ffc1fedb724) = 0 +3802696361497542:3802696361497882 1969:1969 hsa_agent_get_info(, 40969, 0x7ffc1fedb600) = 0 +3802696361498362:3802696361498652 1969:1969 hsa_agent_get_info(, 40962, 0x1ca8554) = 0 +3802696361499052:3802696361499342 1969:1969 hsa_agent_get_info(, 40961, 0x1ca865c) = 0 +3802696361499732:3802696361500122 1969:1969 hsa_agent_get_info(, 18, 0x7ffc1fedb260) = 0 +3802696361507582:3802696361508052 1969:1969 hsa_agent_get_info(, 40963, 0x1ca85c8) = 0 +3802696361508452:3802696361508742 1969:1969 hsa_agent_get_info(, 40968, 0x1ca85cc) = 0 +3802696361511852:3802696361512822 1969:1969 hsa_amd_agent_memory_pool_get_info(, , 1, 0x7ffc1fedb154) = 0 +3802696361513292:3802696361513582 1969:1969 hsa_amd_agent_memory_pool_get_info(, , 2, 0x1cd0550) = 0 +3802696361515392:3802696361516122 1969:1969 hsa_amd_memory_pool_get_info(, 0, 0x7ffc1fedb0ac) = 0 +3802696361516532:3802696361516822 1969:1969 hsa_amd_memory_pool_get_info(, 1, 0x7ffc1fedb0b0) = 0 +3802696361517212:3802696361517552 1969:1969 hsa_amd_agent_memory_pool_get_info(, , 0, 0x7ffc1fedb0b4) = 0 +3802696361517972:3802696361518252 1969:1969 hsa_amd_memory_pool_get_info(, 0, 0x7ffc1fedb0ac) = 0 +3802696361517972:3802696361519762 1969:1969 hsa_amd_agent_iterate_memory_pools(, 1, 0x1ca8500) = 0 +3802696361520322:3802696361520612 1969:1969 hsa_amd_memory_pool_get_info(, 2, 0x7ffc1fedb240) = 0 +3802696361521012:3802696361521282 1969:1969 hsa_amd_memory_pool_get_info(, 2, 0x7ffc1fedb250) = 0 +3802696361521662:3802696361521952 1969:1969 hsa_amd_memory_pool_get_info(, 6, 0x1ca8b00) = 0 +3802696361522452:3802696361522752 1969:1969 hsa_agent_get_info(, 8, 0x7ffc1fedb23c) = 0 +3802696361523132:3802696361523492 1969:1969 hsa_agent_get_info(, 7, 0x7ffc1fedb25a) = 0 +3802696361523972:3802696361524262 1969:1969 hsa_agent_get_info(, 21, 0x7ffc1fedb238) = 0 +3802696361524652:3802696361524932 1969:1969 hsa_agent_get_info(, 22, 0x7ffc1fedb23a) = 0 +3802696361531092:3802696361659753 1969:1969 hsa_agent_get_info(, 20, 0x7ffc1fedb640) = 0 +3802696361660653:3802696361660963 1969:1969 hsa_agent_get_info(, 12299, 0x1ca8630) = 0 +3802696361661363:3802696361661673 1969:1969 hsa_agent_get_info(, 12297, 0x1ca85e0) = 0 +3802696361662053:3802696361662343 1969:1969 hsa_agent_get_info(, 12298, 0x1ca85e8) = 0 +3802696361667633:3802696361668573 1969:1969 hsa_amd_agent_iterate_memory_pools(, 1, 0x1cd06a0) = 1 +3802696361667633:3802696361722034 1969:1969 hsa_agent_get_info(, 12291, 0x7ffc1fedb2d0) = 0 +3802696361722524:3802696361722894 1969:1969 hsa_agent_get_info(, 12295, 0x7ffc1fedb2d0) = 0 +3802696361723284:3802696361723624 1969:1969 hsa_agent_get_info(, 12296, 0x7ffc1fedb250) = 0 +3802696361724014:3802696361724354 1969:1969 hsa_agent_get_info(, 12290, 0x7ffc1fedb2d0) = 0 +3802696361724774:3802696361725084 1969:1969 hsa_agent_get_info(, 6, 0x1ca886c) = 0 +3802696361725474:3802696361725774 1969:1969 hsa_agent_get_info(, 40967, 0x1ca85d0) = 0 +3802696361726154:3802696361726444 1969:1969 hsa_agent_get_info(, 40970, 0x7ffc1fedb248) = 0 +3802696361726834:3802696361727144 1969:1969 hsa_agent_get_info(, 18, 0x7ffc1fedb2d0) = 0 +3802696361727534:3802696361727814 1969:1969 hsa_agent_get_info(, 40978, 0x7ffc1fedb250) = 0 +3802696361743884:3802696361781614 1969:1969 hsa_amd_memory_pool_allocate(, , , 0x7ffc1fedb460) = 0 +3802696361783274:3802696362110486 1969:1969 hsa_amd_agents_allow_access(, 0x1ca84e0, 0, 0x7f5d952fa000) = 0 +3802696362112796:3802696362312818 1969:1969 hsa_amd_memory_pool_allocate(, , , 0x7ffc1fedb640) = 0 +3802696362313538:3802696362416709 1969:1969 hsa_amd_agents_allow_access(, 0x1ca84e0, 0, 0x7f5c85200000) = 0 +3802696362419649:3802696362617930 1969:1969 hsa_amd_memory_pool_allocate(, , , 0x7ffc1fedb640) = 0 +3802696362618500:3802696362703071 1969:1969 hsa_amd_agents_allow_access(, 0x1ca84e0, 0, 0x7f5c85000000) = 0 +3802696362708071:3802696362713581 1969:1969 hsa_signal_create(1, , 0, 0x1ca8af0) = 0 +3802696362727151:3802696362727621 1969:1969 hsa_system_get_info(3, 0x7ffc1fedb7a0) = 0 +3802696362734401:3802696362734941 1969:1969 hsa_system_get_info(2, 0x7ffc1fedb7a0) = 0 +3802696362743121:3802696362743731 1969:1969 hsa_system_get_info(2, 0x7ffc1fedb790) = 0 +3802696363812839:3802696363813449 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696363818009:3802696363948340 1969:1969 hsa_amd_memory_pool_allocate(, , , 0x7ffc1fedbbf0) = 0 +3802696363950790:3802696363951320 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696363952380:3802696363952950 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696363954650:3802696364099851 1969:1969 hsa_amd_memory_pool_allocate(, , , 0x7ffc1fedbbf0) = 0 +3802696364102051:3802696364102581 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696364112521:3802696364113051 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696364447024:3802696364450154 1969:1973 hsa_agent_get_info(, 14, 0x7f5d951de8ec) = 0 +3802696364458454:3802696374167256 1969:1973 hsa_queue_create(, , , 1, 0x1ca8500, , , ) = 0 +3802696374178696:3802696374179986 1969:1973 hsa_amd_profiling_set_profiler_enabled(, 1) = 0 +3802696374183186:3802696374284077 1969:1973 hsa_amd_memory_pool_allocate(, , , 0x7f5d951deb00) = 0 +3802696374285437:3802696374386988 1969:1973 hsa_amd_agents_allow_access(, 0x1ca84e0, 0, 0x7f5c84300000) = 0 +3802696374393258:3802696374397998 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374398608:3802696374400028 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374400418:3802696374401608 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374401988:3802696374403688 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374404078:3802696374405308 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374405688:3802696374406928 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374407308:3802696374408178 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374408558:3802696374409678 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374410058:3802696374411108 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374411488:3802696374412448 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374412828:3802696374413798 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374414168:3802696374415048 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374415428:3802696374416418 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374418198:3802696374419428 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374419818:3802696374420658 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374421038:3802696374422078 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374422458:3802696374423588 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374423968:3802696374424768 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374425148:3802696374425948 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374426328:3802696374427158 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374427538:3802696374429468 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374429858:3802696374430898 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374431288:3802696374432268 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374432648:3802696374433938 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374434318:3802696374435358 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374435738:3802696374502709 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374503329:3802696374504419 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374504799:3802696374505529 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374505919:3802696374506809 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374507189:3802696374508089 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374508479:3802696374509189 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374509579:3802696374510469 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374510859:3802696374511799 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374512179:3802696374513069 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374513449:3802696374514179 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374514559:3802696374515479 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374515869:3802696374516789 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374517179:3802696374518339 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374518719:3802696374519569 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374519959:3802696374520829 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374521209:3802696374522179 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374523879:3802696374524729 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374525119:3802696374527299 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374527689:3802696374528699 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374529079:3802696374529799 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374530179:3802696374530899 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374531279:3802696374531999 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374532379:3802696374533099 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374533479:3802696374534519 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374534899:3802696374535619 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374535999:3802696374536719 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374537099:3802696374537819 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374538199:3802696374538919 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374539299:3802696374540059 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374540439:3802696374541159 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374541539:3802696374542389 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374542769:3802696374543659 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374544039:3802696374544819 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374545199:3802696374546299 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374546679:3802696374547629 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374548009:3802696374548749 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374549129:3802696374550489 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374550869:3802696374551639 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374552019:3802696374552849 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374553229:3802696374553979 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374554359:3802696374555179 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374555569:3802696374556289 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374556669:3802696374557399 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374557779:3802696374558499 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374558879:3802696374559709 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374561059:3802696374561799 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374562179:3802696374565169 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374565559:3802696374566289 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374566679:3802696374567399 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374567779:3802696374568499 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374568879:3802696374569599 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374569979:3802696374570699 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374571079:3802696374571799 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374572189:3802696374572909 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374573289:3802696374574189 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374574559:3802696374575289 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374575669:3802696374576549 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374576929:3802696374577649 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374578029:3802696374578759 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374579139:3802696374579869 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374580249:3802696374580989 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374581369:3802696374582289 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374582669:3802696374583589 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374583969:3802696374584989 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374585369:3802696374660700 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374661340:3802696374662160 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374662540:3802696374663520 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374663900:3802696374664810 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374665190:3802696374666340 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374666730:3802696374667490 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374667880:3802696374668600 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374668980:3802696374669710 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374670090:3802696374670820 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374672090:3802696374672840 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374673230:3802696374673970 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374674350:3802696374675070 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374675450:3802696374676180 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374676560:3802696374677280 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374677660:3802696374678390 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374678770:3802696374679490 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374679870:3802696374680600 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374680980:3802696374681870 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374682250:3802696374682970 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374683350:3802696374684170 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374684550:3802696374685280 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374685660:3802696374686380 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374686760:3802696374687490 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374687860:3802696374688760 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374689140:3802696374690020 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374690410:3802696374691130 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374691510:3802696374692410 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374692790:3802696374693510 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374693890:3802696374694620 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374694990:3802696374696620 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374697010:3802696374697750 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374698130:3802696374699030 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374699410:3802696374700450 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374700840:3802696374701880 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374702260:3802696374703230 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374703610:3802696374704520 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374704890:3802696374705800 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374706180:3802696374706970 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374708160:3802696374709030 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374709410:3802696374710130 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374710510:3802696374711340 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374711720:3802696374712440 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374712820:3802696374713710 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374714090:3802696374714810 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374715190:3802696374715910 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374716300:3802696374717020 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374717400:3802696374718120 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374718510:3802696374719230 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374719610:3802696374720340 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374720720:3802696374721440 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374721820:3802696374722710 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374723090:3802696374723810 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374724190:3802696374724920 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374725300:3802696374726010 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374726400:3802696374727120 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374727500:3802696374728220 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374728600:3802696374729330 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374729710:3802696374731480 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374731860:3802696374732590 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374732970:3802696374733690 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374734070:3802696374734800 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374735180:3802696374735910 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374736290:3802696374737010 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374737400:3802696374738500 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374738890:3802696374740000 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374740380:3802696374741280 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374742470:3802696374743580 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374743970:3802696374744860 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374745240:3802696374746130 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374746510:3802696374747230 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374747620:3802696374748480 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374748860:3802696374749890 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374750270:3802696374751130 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374751510:3802696374752400 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374752780:3802696374753670 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374754050:3802696374754950 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374755330:3802696374756220 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374756600:3802696374757330 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374757710:3802696374758430 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374758810:3802696374759530 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374759910:3802696374760760 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374761141:3802696374761871 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374762251:3802696374763151 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374763531:3802696374764251 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374764631:3802696374765521 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374765901:3802696374766621 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374767001:3802696374768811 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374769201:3802696374769921 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374770301:3802696374771191 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374771571:3802696374772461 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374772841:3802696374773561 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374773941:3802696374774661 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374775041:3802696374775941 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374776331:3802696374777051 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374778181:3802696374778921 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374779311:3802696374780031 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374780411:3802696374781161 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374781541:3802696374782431 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374782811:3802696374783951 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374784331:3802696374785201 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374785581:3802696374786521 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374786911:3802696374787791 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374788171:3802696374788891 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374789271:3802696374790051 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374790431:3802696374791151 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374791531:3802696374792401 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374792781:3802696374793811 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374794191:3802696374795111 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374795491:3802696374796281 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374796661:3802696374797561 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374797941:3802696374798671 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374799051:3802696374799941 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374800321:3802696374801041 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374801421:3802696374802261 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374802651:3802696374804221 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374804611:3802696374805341 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374805721:3802696374806451 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374806831:3802696374807551 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374807931:3802696374808831 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374809211:3802696374810101 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374810481:3802696374811201 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374811581:3802696374812491 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374812871:3802696374813591 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374815421:3802696374816181 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374816561:3802696374817291 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374817671:3802696374818391 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374818771:3802696374819491 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374819871:3802696374820771 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374821151:3802696374927942 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374928602:3802696374929422 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374929812:3802696374930552 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374930932:3802696374931672 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374932052:3802696374932782 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374933162:3802696374933942 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374934332:3802696374935052 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374935432:3802696374936172 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374936552:3802696374937272 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374937652:3802696374938392 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374938772:3802696374939512 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374939892:3802696374940612 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374940992:3802696374941712 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374942102:3802696374942822 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374943202:3802696374943922 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374944302:3802696374945022 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374945402:3802696374946262 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374946642:3802696374947372 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374947752:3802696374948602 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374948982:3802696374949922 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374950302:3802696374951072 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374951452:3802696374952222 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374952602:3802696374953392 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374954832:3802696374955582 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374955962:3802696374956692 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374957072:3802696374957792 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374958172:3802696374959792 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374960182:3802696374960912 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374961292:3802696374962022 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374962402:3802696374963122 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374963502:3802696374964342 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374964722:3802696374965442 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374965822:3802696374966562 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374966942:3802696374967792 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374968172:3802696374968892 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374969272:3802696374970012 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374970392:3802696374971372 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374971752:3802696374972482 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374972862:3802696374973582 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374973962:3802696374974692 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374975072:3802696374975802 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374976182:3802696374976902 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374977282:3802696374978012 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374978392:3802696374979112 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374979492:3802696374980322 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374980702:3802696374981422 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374981802:3802696374982532 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374982912:3802696374983632 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374984012:3802696374984752 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374985132:3802696374985862 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374986242:3802696374987082 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374987472:3802696374988332 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374989532:3802696374990282 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374990662:3802696374991392 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374991782:3802696374992502 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374992882:3802696374994542 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374994942:3802696374995802 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374996182:3802696374997052 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374997432:3802696374998152 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374998532:3802696374999252 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696374999632:3802696375000352 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375000732:3802696375001452 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375001832:3802696375002562 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375002942:3802696375003662 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375004042:3802696375004812 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375005192:3802696375005912 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375006292:3802696375007012 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375007392:3802696375008112 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375008492:3802696375009352 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375009732:3802696375010452 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375010832:3802696375011552 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375011932:3802696375012652 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375013032:3802696375013752 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375014132:3802696375014852 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375015232:3802696375016082 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375016462:3802696375017182 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375017562:3802696375018282 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375018662:3802696375019382 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375019762:3802696375020482 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375020862:3802696375021592 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375023382:3802696375024152 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375024532:3802696375025252 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375025632:3802696375026352 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375026732:3802696375028352 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375028742:3802696375029472 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375029863:3802696375030583 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375030963:3802696375031683 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375032063:3802696375032783 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375033163:3802696375033903 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375034283:3802696375035003 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375035383:3802696375036293 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375036683:3802696375037613 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375037993:3802696375038843 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375039223:3802696375039943 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375040323:3802696375041053 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375041433:3802696375042153 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375042533:3802696375043343 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375043723:3802696375044443 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375044823:3802696375045543 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375045923:3802696375046663 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375047043:3802696375048053 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375048433:3802696375049163 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375049543:3802696375050263 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375050643:3802696375051413 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375051783:3802696375052573 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375052953:3802696375053673 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375054053:3802696375054943 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375055323:3802696375056173 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375056563:3802696375057423 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375058853:3802696375059593 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375059983:3802696375060703 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375061093:3802696375061813 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375062193:3802696375065323 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375065713:3802696375066543 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375066923:3802696375067643 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375068023:3802696375068743 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375069123:3802696375069893 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375070273:3802696375071133 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375071513:3802696375072233 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375072613:3802696375073333 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375073713:3802696375074443 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375074813:3802696375075543 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375075923:3802696375076693 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375077073:3802696375077793 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375078173:3802696375078893 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375079263:3802696375079983 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375080363:3802696375081083 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375081463:3802696375082183 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375082563:3802696375083293 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375083673:3802696375084523 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375084903:3802696375085623 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375086003:3802696375086753 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375087133:3802696375087853 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375088233:3802696375089013 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375089393:3802696375090113 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375090493:3802696375091213 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375091593:3802696375092313 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375093453:3802696375094253 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375094633:3802696375095433 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375095813:3802696375096833 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375097223:3802696375099023 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375099413:3802696375100283 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375100663:3802696375101373 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375101753:3802696375102603 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375102983:3802696375103863 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375104243:3802696375105083 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375105463:3802696375106183 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375106563:3802696375107283 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375107663:3802696375108423 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375108803:3802696375109523 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375109903:3802696375110663 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375111043:3802696375111823 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375112193:3802696375113073 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375113453:3802696375114493 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375114883:3802696375115893 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375116273:3802696375117163 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375117543:3802696375118273 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375118653:3802696375119363 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375119743:3802696375120523 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375120903:3802696375121733 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375122113:3802696375122853 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375123233:3802696375123993 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375124373:3802696375125083 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375125463:3802696375126193 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375126573:3802696375127543 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375127933:3802696375128653 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375129823:3802696375130583 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375130963:3802696375131683 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375132073:3802696375133693 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375134093:3802696375134823 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375135203:3802696375135933 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375136313:3802696375137033 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375137413:3802696375138133 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375138513:3802696375139243 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375139623:3802696375140463 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375140843:3802696375141563 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375141953:3802696375142673 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375143053:3802696375143773 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375144153:3802696375144873 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375145253:3802696375145973 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375146353:3802696375147073 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375147453:3802696375148163 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375148543:3802696375149263 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375149653:3802696375150383 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375150763:3802696375151493 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375151873:3802696375153053 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375153433:3802696375154293 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375154673:3802696375155453 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375155833:3802696375156553 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375156933:3802696375157653 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375158033:3802696375158753 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375159133:3802696375159853 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375160233:3802696375161063 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375161443:3802696375162223 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375163423:3802696375164304 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375164684:3802696375165524 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375165904:3802696375166634 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375167014:3802696375168484 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375168864:3802696375169594 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375169974:3802696375170824 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375171204:3802696375171924 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375172304:3802696375173024 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375173404:3802696375174124 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375174504:3802696375175224 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375175604:3802696375176334 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375176714:3802696375177444 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375177824:3802696375178594 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375178974:3802696375179824 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375180214:3802696375180934 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375181314:3802696375182164 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375182544:3802696375183264 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375183644:3802696375184364 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375184744:3802696375185474 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375185854:3802696375186574 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375186954:3802696375187674 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375188054:3802696375188764 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375189144:3802696375189864 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375190244:3802696375190964 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375191344:3802696375192064 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375192444:3802696375193174 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375193554:3802696375194274 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375194654:3802696375195374 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375196664:3802696375197414 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375197794:3802696375198514 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375198894:3802696375199624 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375200004:3802696375201844 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375202234:3802696375203254 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375203644:3802696375204654 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375205034:3802696375205924 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375206304:3802696375207034 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375207414:3802696375208274 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375208654:3802696375209384 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375209764:3802696375210484 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375210864:3802696375211584 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375211964:3802696375212694 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375213074:3802696375213804 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375214184:3802696375214974 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375215354:3802696375216124 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375216504:3802696375217284 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375217664:3802696375218394 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375218774:3802696375219624 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375220004:3802696375220734 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375221114:3802696375221844 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375222224:3802696375223074 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375223454:3802696375224174 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375224554:3802696375225284 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375225664:3802696375226384 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375226764:3802696375227494 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375227874:3802696375228604 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375228984:3802696375229704 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375230094:3802696375230944 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375232354:3802696375233094 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375233484:3802696375234194 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375234584:3802696375235304 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375235684:3802696375237144 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375237524:3802696375238254 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375238634:3802696375319985 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375320645:3802696375321495 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375321875:3802696375322845 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375323235:3802696375324125 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375324505:3802696375325285 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375325665:3802696375326505 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375326875:3802696375327615 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375327985:3802696375328715 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375329085:3802696375329935 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375330315:3802696375331195 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375331575:3802696375332425 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375332805:3802696375333515 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375333895:3802696375334605 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375334985:3802696375335705 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375336085:3802696375336865 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375337245:3802696375338155 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375338535:3802696375339295 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375339675:3802696375340415 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375340795:3802696375341525 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375341905:3802696375342625 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375343005:3802696375343735 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375344115:3802696375344835 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375345215:3802696375345945 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375347535:3802696375348285 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375348675:3802696375349395 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375349775:3802696375350635 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375351015:3802696375351745 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375352125:3802696375352855 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375353235:3802696375354065 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375354445:3802696375355165 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375355545:3802696375356275 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375356645:3802696375357375 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375357755:3802696375358485 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375358865:3802696375359585 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375359965:3802696375360695 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375361075:3802696375361805 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375362185:3802696375363155 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375363545:3802696375365235 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375365615:3802696375366345 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375366725:3802696375367465 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375367845:3802696375368575 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375368955:3802696375370035 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375370425:3802696375371655 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375372045:3802696375372935 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375373315:3802696375374045 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375374425:3802696375375145 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375375525:3802696375376435 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375376815:3802696375377705 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375378085:3802696375379115 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375379495:3802696375380375 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375380755:3802696375381545 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375381925:3802696375382995 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375384305:3802696375385255 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375385645:3802696375386495 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375386875:3802696375387595 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375387975:3802696375388695 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375389075:3802696375389855 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375390235:3802696375391235 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375391615:3802696375392415 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375392795:3802696375393525 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375393905:3802696375394755 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375395135:3802696375395855 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375396235:3802696375396955 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375397335:3802696375398065 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375398445:3802696375399285 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375399665:3802696375400595 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375400975:3802696375403985 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375404375:3802696375405105 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375405485:3802696375406215 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375406595:3802696375407315 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375407695:3802696375408425 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375408805:3802696375409525 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375409905:3802696375410635 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375411005:3802696375411735 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375412115:3802696375412835 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375413215:3802696375413935 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375414315:3802696375415045 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375415425:3802696375416145 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375416525:3802696375417245 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375417625:3802696375418355 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375419665:3802696375420415 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375420805:3802696375421525 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375421905:3802696375422635 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375423015:3802696375423735 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375424115:3802696375424835 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375425215:3802696375425945 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375426325:3802696375427045 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375427425:3802696375428145 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375428525:3802696375429255 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375429635:3802696375430355 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375430735:3802696375431475 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375431855:3802696375432585 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375432955:3802696375434176 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375434556:3802696375435576 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375435946:3802696375437756 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375438146:3802696375438886 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375439266:3802696375440116 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375440496:3802696375441226 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375441606:3802696375442336 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375442716:3802696375443446 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375443826:3802696375444926 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375445316:3802696375446036 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375446416:3802696375447136 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375447516:3802696375448246 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375448626:3802696375449346 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375449726:3802696375450446 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375450826:3802696375451596 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375451986:3802696375452706 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375453086:3802696375453806 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375454916:3802696375455686 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375456076:3802696375456796 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375457176:3802696375458026 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375458406:3802696375459126 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375459506:3802696375460236 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375460616:3802696375461466 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375461846:3802696375462636 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375463016:3802696375463736 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375464116:3802696375464946 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375465326:3802696375466046 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375466426:3802696375467216 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375467596:3802696375468326 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375468706:3802696375469816 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375470196:3802696375471046 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375471426:3802696375473096 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375473486:3802696375474206 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375474586:3802696375475306 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375475686:3802696375476406 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375476786:3802696375477546 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375477926:3802696375478646 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375479026:3802696375479886 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375480266:3802696375481116 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375481496:3802696375482216 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375482596:3802696375483326 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375483696:3802696375484426 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375484806:3802696375485526 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375485906:3802696375486796 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375487176:3802696375487896 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375489486:3802696375490296 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375490686:3802696375491546 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375491926:3802696375492646 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375493026:3802696375493746 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375494126:3802696375494856 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375495236:3802696375495956 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375496336:3802696375497056 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375497436:3802696375498156 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375498536:3802696375499266 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375499646:3802696375500366 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375500746:3802696375501466 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375501846:3802696375502566 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375502946:3802696375503766 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375504146:3802696375504866 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375505246:3802696375506846 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375507236:3802696375508076 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375508456:3802696375509186 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375509566:3802696375510306 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375510686:3802696375511576 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375511966:3802696375512936 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375513316:3802696375514166 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375514546:3802696375515336 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375515716:3802696375516586 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375516966:3802696375517686 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375518076:3802696375518806 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375519186:3802696375519916 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375520296:3802696375521026 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375521406:3802696375522186 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375522576:3802696375523296 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375525036:3802696375525856 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375526236:3802696375526956 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375527346:3802696375528066 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375528446:3802696375529176 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375529546:3802696375530286 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375530666:3802696375531386 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375531766:3802696375532486 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375532866:3802696375533706 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375534076:3802696375534806 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375535186:3802696375535916 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375536286:3802696375537016 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375537396:3802696375538266 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375538646:3802696375539386 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375539766:3802696375540496 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375540876:3802696375542696 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375543096:3802696375544096 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375544476:3802696375545196 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375545576:3802696375546366 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375546746:3802696375547466 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375547846:3802696375548566 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375548946:3802696375549666 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375550046:3802696375550896 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375551276:3802696375552006 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375552386:3802696375553116 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375553496:3802696375554226 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375554596:3802696375555326 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375555706:3802696375556426 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375556806:3802696375557536 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375558896:3802696375559656 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375560036:3802696375560756 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375561136:3802696375561856 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375562236:3802696375562966 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375563346:3802696375564066 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375564446:3802696375565166 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375565546:3802696375566266 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375566646:3802696375567506 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375567887:3802696375568617 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375568997:3802696375569717 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375570097:3802696375570827 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375571207:3802696375571927 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375572307:3802696375573027 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375573407:3802696375574127 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375574507:3802696375576097 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375576487:3802696375577217 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375577607:3802696375578517 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375578907:3802696375579897 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375580287:3802696375581007 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375581387:3802696375582167 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375582547:3802696375583277 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375583657:3802696375584377 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375584757:3802696375585477 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375585857:3802696375586587 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375586967:3802696375587867 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375588247:3802696375588967 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375589347:3802696375590087 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375590467:3802696375591297 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375592407:3802696375593167 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375593547:3802696375594267 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375594647:3802696375595367 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375595747:3802696375596467 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375596847:3802696375597577 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375597957:3802696375598687 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375599067:3802696375600077 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375600457:3802696375601187 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375601557:3802696375602287 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375602667:3802696375603387 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375603767:3802696375604487 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375604867:3802696375605587 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375605967:3802696375606687 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375607067:3802696375607797 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375608177:3802696375612817 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375613227:3802696375614887 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375615277:3802696375616017 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375616397:3802696375617127 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375617517:3802696375618417 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375618797:3802696375619907 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375620287:3802696375621117 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375621497:3802696375622217 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375622597:3802696375623447 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375623837:3802696375624597 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375624977:3802696375625697 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375626087:3802696375626937 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375627317:3802696375628027 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375628407:3802696375629197 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375629577:3802696375630297 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375631567:3802696375632337 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375632727:3802696375633467 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375633847:3802696375634567 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375634947:3802696375635667 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375636047:3802696375636767 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375637147:3802696375637867 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375638247:3802696375638967 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375639347:3802696375640067 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375640447:3802696375641297 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375641677:3802696375642397 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375642777:3802696375643497 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375643877:3802696375644607 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375644987:3802696375645727 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375646107:3802696375646937 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375647327:3802696375649727 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375650127:3802696375650857 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375651237:3802696375651957 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375652337:3802696375653057 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375653437:3802696375654167 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375654547:3802696375655317 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375655697:3802696375656477 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375656857:3802696375657577 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375657957:3802696375658827 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375659207:3802696375659927 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375660307:3802696375661147 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375661527:3802696375662247 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375662627:3802696375663347 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375663727:3802696375664497 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375665727:3802696375666477 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375666867:3802696375667717 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375668097:3802696375668827 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375669207:3802696375669937 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375670317:3802696375671037 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375671417:3802696375672137 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375672517:3802696375673237 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375673617:3802696375674347 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375674727:3802696375675457 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375675837:3802696375676557 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375676937:3802696375677657 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375678037:3802696375678757 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375679137:3802696375679867 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375680247:3802696375681157 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375681537:3802696375683597 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375683987:3802696375684727 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375685107:3802696375685827 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375686207:3802696375686927 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375687307:3802696375688027 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375688407:3802696375689127 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375689507:3802696375690237 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375690617:3802696375691497 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375691887:3802696375692607 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375692987:3802696375693717 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375694087:3802696375694827 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375695207:3802696375695937 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375696317:3802696375697317 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375697697:3802696375698697 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375699077:3802696375699867 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375701177:3802696375702058 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375702438:3802696375703158 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375703538:3802696375704328 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375704708:3802696375705578 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375705958:3802696375706808 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375707188:3802696375707978 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375708358:3802696375709078 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375709458:3802696375710178 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375710558:3802696375711278 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375711658:3802696375712508 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375712888:3802696375713608 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375713988:3802696375714708 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375715088:3802696375715858 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375716238:3802696375716968 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375717348:3802696375719458 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375719848:3802696375720578 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375720958:3802696375721688 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375722068:3802696375722788 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375723168:3802696375723888 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375724268:3802696375724998 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375725378:3802696375726118 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375726498:3802696375727218 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375727598:3802696375728478 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375728868:3802696375729708 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375730088:3802696375730878 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375731258:3802696375731988 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375732368:3802696375733088 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375733468:3802696375734188 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375735328:3802696375736078 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375736468:3802696375737188 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375737568:3802696375738298 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375738678:3802696375739578 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375739958:3802696375740678 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375741058:3802696375741848 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375742228:3802696375742948 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375743328:3802696375744048 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375744428:3802696375745148 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375745528:3802696375746258 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375746638:3802696375747358 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375747738:3802696375748458 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375748838:3802696375749668 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375750048:3802696375750768 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375751148:3802696375753038 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375753428:3802696375754328 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375754708:3802696375755448 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375755828:3802696375756548 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375756928:3802696375757658 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375758038:3802696375758868 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375759248:3802696375760238 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375760628:3802696375761358 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375761738:3802696375762648 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375763028:3802696375763838 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375764218:3802696375765148 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375765528:3802696375766548 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375766928:3802696375768058 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375768448:3802696375769168 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375769548:3802696375770278 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375772158:3802696375772918 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375773308:3802696375774028 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375774408:3802696375775138 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375775518:3802696375776238 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375776618:3802696375777348 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375777728:3802696375778448 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375778828:3802696375779548 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375779928:3802696375780658 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375781038:3802696375781758 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375782138:3802696375782928 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375783308:3802696375784158 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375784538:3802696375785268 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375785648:3802696375786428 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375786808:3802696375787528 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375787908:3802696375789888 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375790268:3802696375790998 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375791378:3802696375792108 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375792488:3802696375793208 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375793588:3802696375794308 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375794688:3802696375795428 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375795808:3802696375796528 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375796908:3802696375797628 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375798008:3802696375798738 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375799118:3802696375799838 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375800218:3802696375800938 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375801318:3802696375802048 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375802428:3802696375803148 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375803528:3802696375804248 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375805368:3802696375806128 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375806508:3802696375807228 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375807618:3802696375808338 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375808718:3802696375809448 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375809828:3802696375810558 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375810938:3802696375811928 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375812308:3802696375813338 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375813718:3802696375814848 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375815228:3802696375815958 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375816338:3802696375817108 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375817488:3802696375818208 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375818588:3802696375819308 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375819688:3802696375820418 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375820798:3802696375821638 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375822018:3802696375824218 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375824608:3802696375825558 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375825938:3802696375826808 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375827188:3802696375828078 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375828458:3802696375829198 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375829578:3802696375830468 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375830848:3802696375831738 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375832118:3802696375832848 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375833228:3802696375833958 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375834338:3802696375835078 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375835458:3802696375836238 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375836619:3802696375837349 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375837729:3802696375838509 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375838889:3802696375839769 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375840159:3802696375840949 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375842319:3802696375843069 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375843449:3802696375844189 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375844569:3802696375845299 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375845669:3802696375846409 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375846789:3802696375847529 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375847909:3802696375848639 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375849019:3802696375849939 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375850319:3802696375851399 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375851779:3802696375852509 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375852899:3802696375853629 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375854009:3802696375854799 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375855179:3802696375855909 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375856289:3802696375857029 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375857409:3802696375858139 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375858519:3802696375860429 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375860829:3802696375861679 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375862059:3802696375862789 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375863159:3802696375863899 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375864279:3802696375865099 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375865479:3802696375866209 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375866589:3802696375867329 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375867709:3802696375868439 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375868819:3802696375869549 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375869929:3802696375870659 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375871039:3802696375871759 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375872139:3802696375872939 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375873309:3802696375874049 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375874429:3802696375875169 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375876319:3802696375877069 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375877459:3802696375878189 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375878579:3802696375879299 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375879679:3802696375880409 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375880789:3802696375881519 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375881899:3802696375882629 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375883009:3802696375883739 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375884119:3802696375884849 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375885229:3802696375885959 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375886339:3802696375887069 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375887449:3802696375888179 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375888559:3802696375889289 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375889669:3802696375890399 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375890779:3802696375891569 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375891949:3802696375893959 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375894349:3802696375895079 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375895459:3802696375896189 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375896569:3802696375897369 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375897749:3802696375898659 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375899049:3802696375899899 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375900289:3802696375901259 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375901639:3802696375902489 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375902869:3802696375903599 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375903979:3802696375904869 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375905249:3802696375905979 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375906359:3802696375907329 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375907709:3802696375908569 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375908949:3802696375909819 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375911129:3802696375911879 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375912269:3802696375913159 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375913549:3802696375914289 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375914669:3802696375915399 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375915779:3802696375916499 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375916879:3802696375917669 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375918049:3802696375918809 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375919189:3802696375919919 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375920299:3802696375921029 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375921409:3802696375922139 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375922519:3802696375923419 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375923789:3802696375924519 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375924899:3802696375925629 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375926009:3802696375926799 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375927179:3802696375928319 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375928709:3802696375930259 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375930649:3802696375931389 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375931769:3802696375932509 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375932889:3802696375934129 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375934509:3802696375935469 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375935849:3802696375936639 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375937019:3802696375937879 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375938259:3802696375938989 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375939369:3802696375940229 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375940609:3802696375941349 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375941729:3802696375942569 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375942949:3802696375943749 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375944129:3802696375944849 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375945229:3802696375945969 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375948849:3802696375949869 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375950259:3802696375950989 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375951369:3802696375952099 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375952489:3802696375953219 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375953599:3802696375954329 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696375954709:3802696376086820 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376087590:3802696376088470 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376088850:3802696376089610 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376089990:3802696376090690 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376091070:3802696376091790 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376092170:3802696376092900 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376093280:3802696376094160 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376094540:3802696376095560 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376095940:3802696376096640 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376097020:3802696376097750 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376098130:3802696376098860 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376099240:3802696376099940 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376100320:3802696376101030 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376101410:3802696376102140 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376102520:3802696376103230 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376103610:3802696376104330 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376104710:3802696376105420 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376105800:3802696376106520 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376106900:3802696376107630 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376108010:3802696376108731 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376109111:3802696376110061 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376110451:3802696376111371 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376111751:3802696376112621 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376113911:3802696376114791 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376115171:3802696376115891 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376116271:3802696376116991 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376117371:3802696376118151 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376118531:3802696376119251 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376119631:3802696376120411 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376120801:3802696376121601 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376121981:3802696376122741 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376123121:3802696376123871 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376124251:3802696376125001 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376125381:3802696376126101 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376126481:3802696376127311 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376127691:3802696376129881 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376130281:3802696376131341 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376131731:3802696376132441 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376132831:3802696376133551 1969:1973 hsa_signal_create(0, , 0, 0x7f5d951deb30) = 0 +3802696376136551:3802696376137291 1969:1973 hsa_signal_create(0, , 0, 0x7f5bf002d258) = 0 +3802696636208197:3802696636219457 1969:1973 hsa_executable_create_alt(1, 0, +3802696636239667:3802696636263718 1969:1973 hsa_code_object_reader_create_from_memory(0x7f5bf03d6ef0, , 0x7f5bf002e1c0) = 0 +3802696636265718:3802696636658401 1969:1973 hsa_executable_load_agent_code_object(, , , +3802696636660761:3802696637044383 1969:1973 hsa_executable_freeze(, +3802696637134094:3802696637135134 1969:1973 hsa_executable_get_symbol_by_name(, copyBuffer.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637136884:3802696637137764 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf01a6c08) = 0 +3802696637138954:3802696637139534 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637203235:3802696637203845 1969:1973 hsa_executable_get_symbol_by_name(, copyBufferAligned.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637204295:3802696637204585 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf0431c58) = 0 +3802696637204975:3802696637205255 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637260925:3802696637261475 1969:1973 hsa_executable_get_symbol_by_name(, copyBufferRect.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637261895:3802696637262195 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf009bba8) = 0 +3802696637264855:3802696637265135 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637321075:3802696637321605 1969:1973 hsa_executable_get_symbol_by_name(, copyBufferRectAligned.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637322025:3802696637322325 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf0133068) = 0 +3802696637322715:3802696637322995 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637386116:3802696637386646 1969:1973 hsa_executable_get_symbol_by_name(, copyBufferToImage.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637387076:3802696637387366 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf002dca8) = 0 +3802696637387756:3802696637388046 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637443946:3802696637444426 1969:1973 hsa_executable_get_symbol_by_name(, copyImage.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637444856:3802696637445156 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf019b5c8) = 0 +3802696637445546:3802696637445826 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637501277:3802696637501737 1969:1973 hsa_executable_get_symbol_by_name(, copyImage1DA.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637502157:3802696637502447 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf0842748) = 0 +3802696637502837:3802696637503117 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637573027:3802696637573537 1969:1973 hsa_executable_get_symbol_by_name(, copyImageToBuffer.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637573947:3802696637574227 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf0165558) = 0 +3802696637574707:3802696637574987 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637634778:3802696637635238 1969:1973 hsa_executable_get_symbol_by_name(, fillBuffer.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637635648:3802696637635938 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf02109b8) = 0 +3802696637636328:3802696637636608 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637697828:3802696637698258 1969:1973 hsa_executable_get_symbol_by_name(, fillImage.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637698668:3802696637698968 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf023bdc8) = 0 +3802696637699358:3802696637699638 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637739479:3802696637739899 1969:1973 hsa_executable_get_symbol_by_name(, gwsInit.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637740309:3802696637740599 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf023c098) = 0 +3802696637740979:3802696637741259 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637781799:3802696637782229 1969:1973 hsa_executable_get_symbol_by_name(, scheduler.kd, 0x7f5d951ddd88, 0x7f5d951ddd80) = 0 +3802696637782639:3802696637782929 1969:1973 hsa_executable_symbol_get_info(, 22, 0x7f5bf00eaa88) = 0 +3802696637783319:3802696637783609 1969:1973 hsa_agent_get_info(, 6, 0x7f5d951ddd98) = 0 +3802696637813079:3802696637913290 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5bf03d2000, , 0, 0, , , 0x7f5bf00ebac8) = 0 +3802696637914640:3802696637916070 1969:1973 hsa_signal_create(1, , 0, 0x7f5d951deb88) = 0 +3802696637918390:3802696637918690 1969:1973 hsa_system_get_info(3, 0x7f5d951deb90) = 0 +3802696637973540:3802696638254652 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696638259112:3802696638259722 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696638261622:3802696638677616 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696638680216:3802696640039776 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696640049646:3802696640050906 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696640085356:3802696640086416 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696640093286:3802696640094496 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696640097646:3802696640098776 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696640050196:3802696640100846 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696640101806:3802696640103006 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696640106396:3802696640107606 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696640268107:3802696640270707 1969:1969 hsa_executable_create_alt(1, 0, +3802696640290898:3802696640315738 1969:1969 hsa_code_object_reader_create_from_memory(0x4019c5, , 0x1cd0540) = 0 +3802696640317018:3802696640536219 1969:1969 hsa_executable_load_agent_code_object(, , , +3802696640536949:3802696640581260 1969:1969 hsa_executable_freeze(, +3802696640645370:3802696640646110 1969:1969 hsa_executable_get_symbol_by_name(, _Z15matrixTransposePfS_i.kd, 0x7ffc1fedb0f8, 0x7ffc1fedb0f0) = 0 +3802696640646640:3802696640647010 1969:1969 hsa_executable_symbol_get_info(, 22, 0x1ce0dc8) = 0 +3802696640647470:3802696640647870 1969:1969 hsa_agent_get_info(, 6, 0x7ffc1fedb108) = 0 +3802696640671410:3802696640672850 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 0 +3802696640674130:3802696640674670 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696640675840:3802696640676690 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 0 +3802696640678620:3802696640679150 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696640679620:3802696640680400 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 0 +3802696640683170:3802696640684010 1969:1973 hsa_signal_store_screlease(, 0) = void +3802696640688470:3802696641815069 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696641817609:3802696641818469 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696641821809:3802696641822619 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 1 +3802696641823459:3802696641824209 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 0 +3802696641825109:3802696641825919 1969:1973 hsa_signal_store_screlease(, 1) = void +3802696641826959:3802696641954740 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696641956220:3802696641956750 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696641957650:3802696642503434 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696642504714:3802696644059565 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696644069935:3802696644076095 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696644084325:3802696644084965 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696644082355:3802696644170236 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696652342326:3802696652343846 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696652384927:3802696652805530 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696652809720:3802696652811000 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696652812400:3802696652817490 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696652818650:3802696654336061 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696654343431:3802696654344031 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696654350501:3802696654351191 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696654353721:3802696654354411 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696654356111:3802696654356801 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696654358541:3802696654359221 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696654360751:3802696654361391 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696654375712:3802696654376402 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696654379642:3802696654380282 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696654346381:3802696654414142 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696654422042:3802696654423702 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 2 +3802696654425142:3802696654426242 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 2 +3802696654427602:3802696654428302 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 2 +3802696654429382:3802696654430932 1969:1973 hsa_signal_store_screlease(, 2) = void +3802696654439682:3802696654727864 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696654729744:3802696654730524 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696654731344:3802696654731974 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 3 +3802696654732774:3802696654733384 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 2 +3802696654734174:3802696654734914 1969:1973 hsa_signal_store_screlease(, 3) = void +3802696654735894:3802696656054044 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696656056824:3802696656057664 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696656058774:3802696656061704 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696656062704:3802696657476215 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696657480905:3802696657486795 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696657491265:3802696657492035 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696657491335:3802696657550815 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696664968170:3802696664969340 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696665022881:3802696665438474 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696665442854:3802696665444054 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696665445414:3802696665450074 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696665451524:3802696667044206 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696667051166:3802696667051766 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696667063486:3802696667064086 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696667066036:3802696667066636 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696667067776:3802696667068366 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696667070036:3802696667070636 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696667071986:3802696667072586 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696667079726:3802696667080416 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696667083356:3802696667083986 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696667053866:3802696667121616 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696667129186:3802696667130576 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 4 +3802696667131856:3802696667132726 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 4 +3802696667133966:3802696667134656 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 4 +3802696667140366:3802696667141936 1969:1973 hsa_signal_store_screlease(, 4) = void +3802696667146017:3802696667431719 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696667433739:3802696667434609 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696667435429:3802696667436059 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 5 +3802696667436879:3802696667437519 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 4 +3802696667438299:3802696667439049 1969:1973 hsa_signal_store_screlease(, 5) = void +3802696667440019:3802696668433126 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696668434416:3802696668434966 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696668435856:3802696668438556 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696668439396:3802696669820506 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696669825226:3802696669830886 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696669836366:3802696669837106 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696669835256:3802696669894987 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696677168380:3802696677169510 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696677225811:3802696677633634 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696677637934:3802696677639114 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696677640614:3802696677645604 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696677646784:3802696679119775 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696679126625:3802696679127315 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696679133105:3802696679133795 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696679136005:3802696679136695 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696679137915:3802696679138605 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696679140305:3802696679140905 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696679142405:3802696679142995 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696679155395:3802696679156085 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696679158885:3802696679159525 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696679129495:3802696679197085 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696679204745:3802696679206305 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 6 +3802696679211885:3802696679212785 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 6 +3802696679214015:3802696679214705 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 6 +3802696679215795:3802696679217326 1969:1973 hsa_signal_store_screlease(, 6) = void +3802696679221186:3802696679506948 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696679509068:3802696679509958 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696679510768:3802696679511418 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 7 +3802696679512218:3802696679512838 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 6 +3802696679513618:3802696679514368 1969:1973 hsa_signal_store_screlease(, 7) = void +3802696679515328:3802696680597446 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696680598836:3802696680599366 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696680600276:3802696680602696 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696680603496:3802696681854005 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696681858715:3802696681864485 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696681869035:3802696681869755 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696681868825:3802696681928856 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696689185330:3802696689186730 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696689242110:3802696689648263 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696689652463:3802696689654013 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696689655273:3802696689660373 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696689661503:3802696691155074 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696691161864:3802696691162474 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696691169034:3802696691169634 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696691176654:3802696691177254 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696691178724:3802696691179314 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696691181174:3802696691181865 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696691183445:3802696691184155 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696691190885:3802696691191575 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696691194345:3802696691194985 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696691164634:3802696691231555 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696691239105:3802696691240645 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 8 +3802696691242105:3802696691242985 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 8 +3802696691244195:3802696691244885 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 8 +3802696691246065:3802696691247555 1969:1973 hsa_signal_store_screlease(, 8) = void +3802696691251475:3802696691536597 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696691538617:3802696691539397 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696691540227:3802696691540857 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 9 +3802696691541657:3802696691542267 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 8 +3802696691543037:3802696691543787 1969:1973 hsa_signal_store_screlease(, 9) = void +3802696691544747:3802696692609315 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696692610615:3802696692611165 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696692612055:3802696692614565 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696692615385:3802696693865354 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696693870075:3802696693875405 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696693881035:3802696693881795 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696693879835:3802696693938665 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696701213478:3802696701214508 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696701270429:3802696701676602 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696701680872:3802696701682142 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696701683482:3802696701688172 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696701689342:3802696703190973 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696703198253:3802696703198863 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696703204443:3802696703205043 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696703207063:3802696703207663 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696703208753:3802696703209353 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696703210963:3802696703211553 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696703212963:3802696703213553 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696703224913:3802696703225603 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696703229673:3802696703230363 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696703200713:3802696703267144 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696703274504:3802696703275994 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 10 +3802696703277214:3802696703278094 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 10 +3802696703279304:3802696703280004 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 10 +3802696703281024:3802696703282424 1969:1973 hsa_signal_store_screlease(, 10) = void +3802696703286194:3802696703572866 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696703574896:3802696703575686 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696703576496:3802696703577106 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 11 +3802696703577926:3802696703578516 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 10 +3802696703579306:3802696703580056 1969:1973 hsa_signal_store_screlease(, 11) = void +3802696703580996:3802696704670194 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696704671574:3802696704672164 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696704673074:3802696704675424 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696704676224:3802696705926163 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696705930883:3802696705936563 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696705940673:3802696705941533 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696705941113:3802696706001194 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696713251168:3802696713252428 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696713308368:3802696713736581 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696713740952:3802696713742312 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696713743522:3802696713748272 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696713749642:3802696715256813 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696715263813:3802696715264423 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696715270793:3802696715271393 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696715278003:3802696715278603 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696715279983:3802696715280573 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696715282163:3802696715282753 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696715287373:3802696715287983 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696715295043:3802696715295643 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696715298373:3802696715298973 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696715266223:3802696715332133 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696715339643:3802696715341043 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 12 +3802696715342403:3802696715343153 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 12 +3802696715344513:3802696715345203 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 12 +3802696715346373:3802696715347773 1969:1973 hsa_signal_store_screlease(, 12) = void +3802696715351753:3802696715635726 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696715637836:3802696715638616 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696715639446:3802696715640096 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 13 +3802696715640926:3802696715641546 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 12 +3802696715642376:3802696715643126 1969:1973 hsa_signal_store_screlease(, 13) = void +3802696715644076:3802696716729344 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696716732244:3802696716733094 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696716734214:3802696716737244 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696716738254:3802696717987523 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696717992253:3802696717997773 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696718001863:3802696718002673 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696718002273:3802696718062854 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696725319337:3802696725320407 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696725377927:3802696725775560 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696725779910:3802696725781270 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696725782610:3802696725787210 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696725788590:3802696727329442 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696727342022:3802696727342632 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696727348482:3802696727349082 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696727350912:3802696727351502 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696727352592:3802696727353192 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696727356212:3802696727356812 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696727358172:3802696727358762 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696727366432:3802696727367122 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696727371622:3802696727372262 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696727338852:3802696727406852 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696727414392:3802696727415892 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 14 +3802696727417272:3802696727418022 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 14 +3802696727419352:3802696727420052 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 14 +3802696727421332:3802696727422712 1969:1973 hsa_signal_store_screlease(, 14) = void +3802696727426752:3802696727723555 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696727725465:3802696727726305 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696727727115:3802696727727755 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 15 +3802696727728565:3802696727729165 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 14 +3802696727729985:3802696727730745 1969:1973 hsa_signal_store_screlease(, 15) = void +3802696727731705:3802696728809113 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696728811823:3802696728812663 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696728813783:3802696728816563 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696728817573:3802696730067042 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696730071752:3802696730077212 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696730081322:3802696730082112 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696730081742:3802696730140813 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696737394717:3802696737395757 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696737453097:3802696737856030 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696737860070:3802696737861590 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696737862870:3802696737867850 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696737869060:3802696739369081 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696739375641:3802696739376251 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696739382011:3802696739382611 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696739390851:3802696739391451 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696739392692:3802696739393292 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696739395152:3802696739395752 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696739397152:3802696739397802 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696739404822:3802696739405422 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696739408412:3802696739409012 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696739378491:3802696739445012 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696739452972:3802696739454492 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 16 +3802696739455712:3802696739456592 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 16 +3802696739457812:3802696739458502 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 16 +3802696739459582:3802696739460972 1969:1973 hsa_signal_store_screlease(, 16) = void +3802696739464822:3802696739750864 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696739752914:3802696739753704 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696739754524:3802696739755124 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 17 +3802696739755934:3802696739756564 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 16 +3802696739757324:3802696739758074 1969:1973 hsa_signal_store_screlease(, 17) = void +3802696739759024:3802696740892353 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696740895073:3802696740895913 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696740897023:3802696740900073 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696740901073:3802696742422664 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696742427404:3802696742432914 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696742437014:3802696742437804 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696742437464:3802696742496205 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696749709718:3802696749710818 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696749769248:3802696750176611 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696750181051:3802696750182401 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696750184011:3802696750188851 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696750190111:3802696751638432 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696751651592:3802696751652222 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696751659782:3802696751660382 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696751662252:3802696751662842 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696751664122:3802696751664722 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696751666412:3802696751667002 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696751668362:3802696751669012 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696751676262:3802696751676952 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696751680772:3802696751681412 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696751648132:3802696751716102 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696751723852:3802696751725542 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 18 +3802696751726912:3802696751728053 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 18 +3802696751729273:3802696751729973 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 18 +3802696751731053:3802696751732453 1969:1973 hsa_signal_store_screlease(, 18) = void +3802696751736483:3802696752031855 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696752033875:3802696752034735 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696752035555:3802696752036195 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 19 +3802696752037005:3802696752037625 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 18 +3802696752038405:3802696752039155 1969:1973 hsa_signal_store_screlease(, 19) = void +3802696752040125:3802696753029452 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696753032182:3802696753033012 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696753034132:3802696753036992 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696753037992:3802696754483653 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696754488633:3802696754494153 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696754498793:3802696754499563 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696754498883:3802696754559414 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696761931618:3802696761932708 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696761990429:3802696762396442 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696762400932:3802696762402422 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696762403742:3802696762408672 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696762415992:3802696763873073 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696763880433:3802696763881043 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696763886833:3802696763887433 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696763892323:3802696763892923 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696763894093:3802696763894693 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696763896293:3802696763896893 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696763898333:3802696763898923 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696763906473:3802696763907153 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696763910013:3802696763910653 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696763883163:3802696763952183 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696763960063:3802696763961283 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 20 +3802696763962553:3802696763963413 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 20 +3802696763964653:3802696763965353 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 20 +3802696763966483:3802696763968013 1969:1973 hsa_signal_store_screlease(, 20) = void +3802696763972234:3802696764271616 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696764273646:3802696764274456 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696764275276:3802696764275876 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 21 +3802696764276686:3802696764277306 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 20 +3802696764278086:3802696764278836 1969:1973 hsa_signal_store_screlease(, 21) = void +3802696764279796:3802696765476775 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696765479495:3802696765480345 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696765481465:3802696765484375 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696765485375:3802696766857705 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696766862425:3802696766867935 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696766872055:3802696766872845 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696766872475:3802696766931586 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696774435021:3802696774436211 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696774498382:3802696774901125 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696774905335:3802696774906685 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696774914805:3802696774919935 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696774921115:3802696776379246 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696776389226:3802696776389896 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696776396116:3802696776396716 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696776398866:3802696776399466 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696776400746:3802696776401346 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696776403086:3802696776403686 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696776405126:3802696776405726 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696776412986:3802696776413586 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696776417646:3802696776418236 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696776389466:3802696776456546 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696776464366:3802696776466026 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 22 +3802696776467286:3802696776468036 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 22 +3802696776469256:3802696776469946 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 22 +3802696776471036:3802696776472576 1969:1973 hsa_signal_store_screlease(, 22) = void +3802696776476406:3802696776763429 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696776765389:3802696776766189 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696776767019:3802696776767619 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 23 +3802696776768439:3802696776769039 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 22 +3802696776769809:3802696776770569 1969:1973 hsa_signal_store_screlease(, 23) = void +3802696776771529:3802696777893867 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696777896597:3802696777897437 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696777898567:3802696777901607 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696777902617:3802696779418188 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696779422888:3802696779428568 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696779432558:3802696779433268 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696779433068:3802696779494038 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696786928913:3802696786930323 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696786997984:3802696787396077 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696787400247:3802696787401547 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696787402777:3802696787407457 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696787408647:3802696788874928 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696788882068:3802696788882678 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696788889308:3802696788889898 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696788891658:3802696788892248 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696788893398:3802696788893988 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696788899898:3802696788900498 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696788901688:3802696788902288 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696788909438:3802696788910128 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696788912998:3802696788913638 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696788884648:3802696788951209 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696788958629:3802696788960289 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 24 +3802696788961519:3802696788962389 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 24 +3802696788963609:3802696788964309 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 24 +3802696788965359:3802696788966759 1969:1973 hsa_signal_store_screlease(, 24) = void +3802696788970619:3802696789257091 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696789259061:3802696789259891 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696789260701:3802696789261311 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 25 +3802696789262131:3802696789262751 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 24 +3802696789263531:3802696789264281 1969:1973 hsa_signal_store_screlease(, 25) = void +3802696789265241:3802696790495030 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696790497770:3802696790498620 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696790499750:3802696790502530 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696790503530:3802696791872300 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696791876980:3802696791882570 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696791886560:3802696791887360 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696791887000:3802696791945461 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696799340816:3802696799341866 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696799403596:3802696799799899 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696799804189:3802696799805799 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696799807119:3802696799811899 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696799813059:3802696801346270 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696801358521:3802696801359191 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696801365021:3802696801365621 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696801367621:3802696801368211 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696801369391:3802696801369981 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696801371581:3802696801372181 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696801373491:3802696801374091 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696801381221:3802696801381821 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696801385761:3802696801386361 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696801355911:3802696801422161 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696801429411:3802696801430761 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 26 +3802696801432171:3802696801433041 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 26 +3802696801434241:3802696801434941 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 26 +3802696801436071:3802696801437581 1969:1973 hsa_signal_store_screlease(, 26) = void +3802696801441541:3802696801731173 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696801733183:3802696801733973 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696801734783:3802696801735383 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 27 +3802696801736193:3802696801736783 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 26 +3802696801737613:3802696801738363 1969:1973 hsa_signal_store_screlease(, 27) = void +3802696801739303:3802696802867561 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696802870281:3802696802871121 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696802872242:3802696802875212 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696802876212:3802696804121121 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696804125421:3802696804131081 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696804139531:3802696804140281 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696804139751:3802696804199621 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696811548406:3802696811549616 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696811610856:3802696812019789 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696812024439:3802696812026109 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696812027409:3802696812032439 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696812033899:3802696813496990 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696813503890:3802696813504500 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696813510230:3802696813510820 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696813512550:3802696813513140 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696813514340:3802696813514940 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696813522000:3802696813522600 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696813523971:3802696813524571 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696813532061:3802696813532751 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696813535541:3802696813536181 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696813506800:3802696813573841 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696813581561:3802696813582921 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 28 +3802696813584321:3802696813585081 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 28 +3802696813586281:3802696813586981 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 28 +3802696813588181:3802696813589711 1969:1973 hsa_signal_store_screlease(, 28) = void +3802696813593781:3802696813881363 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696813883373:3802696813884183 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696813884993:3802696813885603 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 29 +3802696813886403:3802696813887003 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 28 +3802696813887833:3802696813888583 1969:1973 hsa_signal_store_screlease(, 29) = void +3802696813889523:3802696815050532 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696815053252:3802696815054182 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696815055292:3802696815058112 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696815064032:3802696816303981 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696816308151:3802696816313641 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696816317761:3802696816318481 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696816317551:3802696816378902 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696823718066:3802696823719076 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696823780557:3802696824201180 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696824205690:3802696824206950 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696824208540:3802696824213760 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696824214930:3802696825676611 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696825683701:3802696825684301 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696825695241:3802696825695831 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696825697791:3802696825698381 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696825699511:3802696825700101 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696825701711:3802696825702311 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696825703671:3802696825704271 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696825711561:3802696825712251 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696825720581:3802696825721221 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696825686401:3802696825754851 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696825762392:3802696825763612 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 30 +3802696825765052:3802696825765842 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 30 +3802696825767212:3802696825767922 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 30 +3802696825769072:3802696825770892 1969:1973 hsa_signal_store_screlease(, 30) = void +3802696825774932:3802696826059964 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696826062084:3802696826062874 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696826063714:3802696826064344 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 31 +3802696826065144:3802696826065774 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 30 +3802696826066564:3802696826067314 1969:1973 hsa_signal_store_screlease(, 31) = void +3802696826068284:3802696827083341 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696827086061:3802696827086991 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696827093081:3802696827095941 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696827096971:3802696828342071 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696828346411:3802696828351871 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696828355651:3802696828356411 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696828355801:3802696828417331 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696835758885:3802696835759945 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696835820196:3802696836233149 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696836237749:3802696836239049 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696836240389:3802696836245219 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696836246429:3802696837707470 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696837714200:3802696837714820 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696837721300:3802696837721910 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696837723920:3802696837724510 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696837725650:3802696837726240 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696837733220:3802696837733820 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696837735100:3802696837735700 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696837743040:3802696837743730 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696837746710:3802696837747350 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696837717310:3802696837784440 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696837791990:3802696837793200 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 32 +3802696837794620:3802696837795480 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 32 +3802696837796740:3802696837797430 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 32 +3802696837798540:3802696837799930 1969:1973 hsa_signal_store_screlease(, 32) = void +3802696837803790:3802696838088102 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696838090142:3802696838090942 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696838091772:3802696838092402 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 33 +3802696838093242:3802696838093832 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 32 +3802696838094612:3802696838095362 1969:1973 hsa_signal_store_screlease(, 33) = void +3802696838100633:3802696839406082 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696839408802:3802696839409722 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696839410832:3802696839413912 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696839414922:3802696840657942 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696840661352:3802696840666662 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696840670392:3802696840671142 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696840670592:3802696840732502 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696848173067:3802696848174297 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696848214018:3802696848626971 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696848631191:3802696848632461 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696848633841:3802696848638571 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696848639991:3802696850110362 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696850117142:3802696850117742 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696850132112:3802696850132712 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696850134412:3802696850135002 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696850136282:3802696850136872 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696850138462:3802696850139052 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696850140732:3802696850141342 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696850148112:3802696850148802 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696850152722:3802696850153362 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696850120122:3802696850187682 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696850195102:3802696850196782 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 34 +3802696850198202:3802696850199293 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 34 +3802696850200503:3802696850201193 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 34 +3802696850202283:3802696850203813 1969:1973 hsa_signal_store_screlease(, 34) = void +3802696850207603:3802696850491025 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696850492995:3802696850493825 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696850494645:3802696850495245 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 35 +3802696850496045:3802696850496655 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 34 +3802696850501525:3802696850502285 1969:1973 hsa_signal_store_screlease(, 35) = void +3802696850503285:3802696851630703 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696851633423:3802696851634343 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696851635463:3802696851638343 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696851639343:3802696852891743 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696852896493:3802696852902073 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696852906323:3802696852907083 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696852906663:3802696852966593 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696860479568:3802696860480628 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696860516598:3802696860926091 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696860930652:3802696860932072 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696860933302:3802696860938212 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696860939452:3802696862402112 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696862409253:3802696862409863 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696862415803:3802696862416403 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696862418413:3802696862419003 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696862420313:3802696862420913 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696862427813:3802696862428503 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696862430023:3802696862430663 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696862438123:3802696862438803 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696862441733:3802696862442373 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696862412533:3802696862479343 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696862486603:3802696862488183 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 36 +3802696862489443:3802696862490253 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 36 +3802696862491443:3802696862492143 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 36 +3802696862493413:3802696862494803 1969:1973 hsa_signal_store_screlease(, 36) = void +3802696862498693:3802696862785255 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696862787255:3802696862788055 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696862792885:3802696862793565 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 37 +3802696862794405:3802696862795025 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 36 +3802696862795795:3802696862796555 1969:1973 hsa_signal_store_screlease(, 37) = void +3802696862797535:3802696864056505 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696864059265:3802696864060125 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696864061235:3802696864064145 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696864065145:3802696865510666 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696865515446:3802696865521066 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696865525406:3802696865526156 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696865525646:3802696865587436 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696872834300:3802696872835480 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696872875330:3802696873277343 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696873281673:3802696873283093 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696873285063:3802696873289983 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696873291163:3802696874762724 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696874769524:3802696874770124 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696874780775:3802696874781375 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696874783195:3802696874783785 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696874785065:3802696874785665 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696874787255:3802696874787845 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696874789705:3802696874790305 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696874797325:3802696874797925 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696874800655:3802696874801255 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696874772424:3802696874839785 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696874846925:3802696874848135 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 38 +3802696874849555:3802696874850365 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 38 +3802696874851715:3802696874852405 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 38 +3802696874853515:3802696874855045 1969:1973 hsa_signal_store_screlease(, 38) = void +3802696874858885:3802696875145057 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696875151097:3802696875151927 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696875152747:3802696875153347 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 39 +3802696875154157:3802696875154797 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 38 +3802696875155587:3802696875156327 1969:1973 hsa_signal_store_screlease(, 39) = void +3802696875157277:3802696876427597 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696876428947:3802696876429487 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696876430417:3802696876432857 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696876433687:3802696877683076 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696877687806:3802696877693336 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696877701326:3802696877702026 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696877697856:3802696877757617 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696885055790:3802696885056900 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696885112871:3802696885864756 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696885869136:3802696885870416 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696885871736:3802696885876496 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696885877716:3802696887384807 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696887391708:3802696887392308 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696887398128:3802696887398718 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696887400718:3802696887401308 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696887402438:3802696887403038 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696887409368:3802696887409968 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696887411348:3802696887411948 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696887419108:3802696887419798 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696887422688:3802696887423328 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696887395128:3802696887461938 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696887469528:3802696887470888 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 40 +3802696887472148:3802696887472948 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 40 +3802696887474188:3802696887474888 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 40 +3802696887480428:3802696887481958 1969:1973 hsa_signal_store_screlease(, 40) = void +3802696887485958:3802696887771870 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696887773830:3802696887774640 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696887775450:3802696887776080 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 41 +3802696887776920:3802696887777560 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 40 +3802696887778350:3802696887779100 1969:1973 hsa_signal_store_screlease(, 41) = void +3802696887780070:3802696889052630 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696889055350:3802696889056180 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696889057300:3802696889060100 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696889061100:3802696890477000 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696890481711:3802696890487111 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696890491661:3802696890492451 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696890491741:3802696890550941 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696897756035:3802696897757285 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696897815535:3802696898215808 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696898220188:3802696898221538 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696898222828:3802696898227998 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696898229178:3802696899687399 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696899694139:3802696899694749 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696899705359:3802696899705949 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696899707719:3802696899708309 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696899709599:3802696899710189 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696899711819:3802696899712409 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696899713539:3802696899714139 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696899720749:3802696899721349 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696899724289:3802696899724889 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696899697219:3802696899764590 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696899772300:3802696899773510 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 42 +3802696899779180:3802696899779900 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 42 +3802696899781260:3802696899782030 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 42 +3802696899783050:3802696899784440 1969:1973 hsa_signal_store_screlease(, 42) = void +3802696899788390:3802696900248913 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696900250893:3802696900251693 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696900252513:3802696900253163 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 43 +3802696900253993:3802696900254583 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 42 +3802696900255363:3802696900256113 1969:1973 hsa_signal_store_screlease(, 43) = void +3802696900257093:3802696901073289 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696901074579:3802696901075109 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696901075989:3802696901078759 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696901079539:3802696902508940 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696902513690:3802696902519140 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696902525010:3802696902525750 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696902523830:3802696902583351 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696909790424:3802696909791534 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696909852634:3802696910256237 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696910260297:3802696910261587 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696910262917:3802696910267607 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696910268777:3802696911736508 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696911743258:3802696911743858 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696911749778:3802696911750378 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696911752278:3802696911752868 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696911754178:3802696911754778 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696911756368:3802696911756968 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696911758598:3802696911759198 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696911771898:3802696911772598 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696911775498:3802696911776138 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696911746248:3802696911814328 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696911826939:3802696911828159 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 44 +3802696911829549:3802696911830419 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 44 +3802696911831789:3802696911832489 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 44 +3802696911833509:3802696911835059 1969:1973 hsa_signal_store_screlease(, 44) = void +3802696911839159:3802696912129321 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696912131271:3802696912132101 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696912132911:3802696912133551 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 45 +3802696912134381:3802696912135011 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 44 +3802696912135841:3802696912136591 1969:1973 hsa_signal_store_screlease(, 45) = void +3802696912137531:3802696913418780 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696913421540:3802696913422390 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696913423510:3802696913426540 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696913427550:3802696914810021 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696914814741:3802696914820581 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696914824791:3802696914825561 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696914825071:3802696914885101 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696922287816:3802696922288976 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696922348807:3802696922755220 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696922759540:3802696922760820 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696922762070:3802696922766830 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696922767990:3802696924263661 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696924270561:3802696924271171 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696924283431:3802696924284031 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696924285851:3802696924286441 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696924287771:3802696924288371 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696924289991:3802696924290581 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696924292101:3802696924292741 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696924300431:3802696924301111 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696924306811:3802696924307491 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696924272521:3802696924339192 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696924346942:3802696924348602 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 46 +3802696924349982:3802696924351202 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 46 +3802696924352472:3802696924353172 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 46 +3802696924354192:3802696924355702 1969:1973 hsa_signal_store_screlease(, 46) = void +3802696924359532:3802696924646434 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696924648774:3802696924649594 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696924650394:3802696924651034 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 47 +3802696924651854:3802696924652474 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 46 +3802696924653304:3802696924654064 1969:1973 hsa_signal_store_screlease(, 47) = void +3802696924655044:3802696925777872 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696925780602:3802696925781442 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696925782552:3802696925785332 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696925786342:3802696927034422 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696927039152:3802696927044552 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696927049822:3802696927050602 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696927049052:3802696927109802 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696934597478:3802696934598498 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696934659378:3802696935058771 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696935062881:3802696935064611 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696935065951:3802696935070481 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696935071691:3802696936527002 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696936533932:3802696936534542 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696936540692:3802696936541292 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696936543372:3802696936543962 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696936545132:3802696936545722 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696936547362:3802696936547952 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696936549332:3802696936549932 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696936563242:3802696936563932 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696936566762:3802696936567412 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696936536342:3802696936603083 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696936611183:3802696936612373 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 48 +3802696936613833:3802696936614713 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 48 +3802696936616203:3802696936616893 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 48 +3802696936618323:3802696936619713 1969:1973 hsa_signal_store_screlease(, 48) = void +3802696936623863:3802696936910565 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696936912525:3802696936913315 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696936914125:3802696936914735 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 49 +3802696936915555:3802696936916185 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 48 +3802696936916975:3802696936917725 1969:1973 hsa_signal_store_screlease(, 49) = void +3802696936918685:3802696937942642 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696937945372:3802696937946212 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696937947322:3802696937950552 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696937951562:3802696939418023 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696939422683:3802696939428463 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696939432513:3802696939433263 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696939433013:3802696939490644 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696946940499:3802696946942009 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696947002819:3802696947401302 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696947405592:3802696947406982 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696947408262:3802696947412982 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696947414152:3802696948879723 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696948887003:3802696948887613 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696948893293:3802696948893893 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696948901293:3802696948901893 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696948903143:3802696948903733 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696948906474:3802696948907064 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696948908474:3802696948909084 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696948916474:3802696948917074 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696948919864:3802696948920464 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696948888943:3802696948955244 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696948962744:3802696948963964 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 50 +3802696948965334:3802696948966194 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 50 +3802696948967404:3802696948968094 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 50 +3802696948969184:3802696948970724 1969:1973 hsa_signal_store_screlease(, 50) = void +3802696948974664:3802696949259766 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696949261596:3802696949262376 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696949263186:3802696949263796 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 51 +3802696949264616:3802696949265216 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 50 +3802696949266106:3802696949266856 1969:1973 hsa_signal_store_screlease(, 51) = void +3802696949267916:3802696950505725 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696950508465:3802696950509305 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696950510425:3802696950513385 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696950514395:3802696951882496 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696951887156:3802696951892756 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696951897906:3802696951898646 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696951897376:3802696951956666 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696959368541:3802696959369671 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696959430332:3802696959824345 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696959829125:3802696959830395 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696959831655:3802696959836485 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696959837695:3802696961369366 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696961376876:3802696961377496 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696961383276:3802696961383876 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696961386066:3802696961386656 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696961393386:3802696961393986 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696961395566:3802696961396166 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696961397916:3802696961398516 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696961407226:3802696961407826 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696961410746:3802696961411346 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696961379316:3802696961448107 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696961455497:3802696961456727 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 52 +3802696961458197:3802696961459097 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 52 +3802696961460297:3802696961460987 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 52 +3802696961462077:3802696961463477 1969:1973 hsa_signal_store_screlease(, 52) = void +3802696961467437:3802696961754349 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696961756329:3802696961757129 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696961757939:3802696961758549 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 53 +3802696961759389:3802696961759999 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 52 +3802696961760909:3802696961761659 1969:1973 hsa_signal_store_screlease(, 53) = void +3802696961762629:3802696962755786 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696962757406:3802696962757986 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696962758886:3802696962761366 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696962762186:3802696964016295 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696964021035:3802696964026715 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696964030905:3802696964031635 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696964030845:3802696964091196 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696971340690:3802696971341770 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696971403150:3802696971803453 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696971807633:3802696971808923 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696971810753:3802696971816013 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696971817183:3802696973419265 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696973426575:3802696973427185 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696973437785:3802696973438375 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696973441435:3802696973442035 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696973443145:3802696973443735 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696973445375:3802696973445965 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696973447425:3802696973448025 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696973455765:3802696973456455 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696973459345:3802696973459995 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696973429205:3802696973496866 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696973504516:3802696973505846 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 54 +3802696973507226:3802696973507976 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 54 +3802696973509216:3802696973509916 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 54 +3802696973511006:3802696973512416 1969:1973 hsa_signal_store_screlease(, 54) = void +3802696973516216:3802696973803608 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696973805558:3802696973806378 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696973807258:3802696973807928 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 55 +3802696973808758:3802696973809458 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 54 +3802696973810298:3802696973811168 1969:1973 hsa_signal_store_screlease(, 55) = void +3802696973812508:3802696975058257 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696975060987:3802696975061837 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696975062957:3802696975065817 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696975066827:3802696976505798 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696976510528:3802696976515768 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696976519988:3802696976520708 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696976519888:3802696976579349 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696983886023:3802696983887183 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696983948713:3802696984374077 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696984378347:3802696984379717 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696984381007:3802696984385957 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696984387187:3802696985852668 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696985869398:3802696985870048 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696985876688:3802696985877278 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696985879128:3802696985879718 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696985880838:3802696985881428 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696985882988:3802696985883578 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696985884998:3802696985885598 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696985893728:3802696985894428 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696985897358:3802696985898008 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696985869428:3802696985936208 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696985943838:3802696985945208 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 56 +3802696985946788:3802696985947658 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 56 +3802696985948888:3802696985949588 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 56 +3802696985950608:3802696985952288 1969:1973 hsa_signal_store_screlease(, 56) = void +3802696985956138:3802696986240960 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696986242950:3802696986243760 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696986244570:3802696986245200 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 57 +3802696986246030:3802696986246630 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 56 +3802696986247440:3802696986248180 1969:1973 hsa_signal_store_screlease(, 57) = void +3802696986249140:3802696987422159 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696987424889:3802696987425729 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696987426849:3802696987429729 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696987430729:3802696988777579 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696988782329:3802696988787829 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802696988792189:3802696988793029 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696988792619:3802696988851030 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802696996265394:3802696996266554 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696996302814:3802696996710517 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696996714858:3802696996716238 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696996723948:3802696996728968 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802696996730148:3802696998232289 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696998239039:3802696998239639 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696998245319:3802696998245909 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696998250209:3802696998250809 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802696998251919:3802696998252509 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696998254179:3802696998254869 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802696998256409:3802696998257049 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696998263779:3802696998264469 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802696998267329:3802696998267969 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696998241559:3802696998309599 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802696998316919:3802696998318189 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 58 +3802696998319469:3802696998320269 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 58 +3802696998321459:3802696998322159 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 58 +3802696998323619:3802696998325139 1969:1973 hsa_signal_store_screlease(, 58) = void +3802696998329040:3802696998611862 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802696998613842:3802696998614662 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696998615482:3802696998616122 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 59 +3802696998616922:3802696998617522 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 58 +3802696998618282:3802696998619032 1969:1973 hsa_signal_store_screlease(, 59) = void +3802696998619982:3802696999758340 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802696999761310:3802696999762220 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802696999763340:3802696999766170 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802696999767180:3802697001016790 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697001021510:3802697001026970 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697001031200:3802697001031990 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697001031670:3802697001089960 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697008350884:3802697008351934 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697008398664:3802697008798757 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697008803047:3802697008804557 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697008805817:3802697008810617 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697008811827:3802697010348679 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697010357439:3802697010358099 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697010363849:3802697010364439 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697010366359:3802697010366949 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697010368109:3802697010368709 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697010370449:3802697010371049 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697010372469:3802697010373069 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697010380729:3802697010381419 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697010386649:3802697010387309 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697010358079:3802697010425510 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697010432750:3802697010434090 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 60 +3802697010435340:3802697010436150 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 60 +3802697010437360:3802697010438060 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 60 +3802697010439080:3802697010440820 1969:1973 hsa_signal_store_screlease(, 60) = void +3802697010444810:3802697010742492 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697010744392:3802697010745212 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697010746032:3802697010746632 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 61 +3802697010747432:3802697010748052 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 60 +3802697010748812:3802697010749562 1969:1973 hsa_signal_store_screlease(, 61) = void +3802697010750532:3802697011858770 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697011861480:3802697011862400 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697011863530:3802697011866710 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697011867720:3802697013134250 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697013149850:3802697013156330 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697013165250:3802697013165950 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697013168160:3802697013285631 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697020361333:3802697020362383 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697020400743:3802697020787226 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697020791396:3802697020792316 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697020793916:3802697020799286 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697020800566:3802697022150126 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697022157286:3802697022157816 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697022165846:3802697022166376 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697022176336:3802697022177346 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697022178936:3802697022179466 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697022181246:3802697022181846 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697022183636:3802697022184196 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697022194556:3802697022195166 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697022202356:3802697022202926 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697022159216:3802697022221486 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697022231007:3802697022232517 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 62 +3802697022234117:3802697022235057 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 62 +3802697022236417:3802697022237167 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 62 +3802697022238177:3802697022239337 1969:1973 hsa_signal_store_screlease(, 62) = void +3802697022243417:3802697022506609 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697022508669:3802697022509839 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697022510619:3802697022511259 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 63 +3802697022512039:3802697022512619 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 62 +3802697022513499:3802697022514279 1969:1973 hsa_signal_store_screlease(, 63) = void +3802697022515209:3802697023551206 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697023553966:3802697023554806 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697023555906:3802697023558606 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697023559616:3802697024898276 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697024903376:3802697024907716 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697024917146:3802697024918016 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697024916876:3802697024974527 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697032171420:3802697032172380 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697032205651:3802697032513623 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697032516323:3802697032517113 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697032518353:3802697032520403 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697032521553:3802697033866503 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697033882573:3802697033883283 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697033890173:3802697033890703 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697033893623:3802697033894143 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697033895783:3802697033896313 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697033898093:3802697033898613 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697033900103:3802697033900633 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697033909273:3802697033909883 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697033914403:3802697033914963 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697033875213:3802697033936494 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697033942904:3802697033943644 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 64 +3802697033944924:3802697033945584 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 64 +3802697033946674:3802697033947284 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 64 +3802697033948394:3802697033949384 1969:1973 hsa_signal_store_screlease(, 64) = void +3802697033952964:3802697034213376 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697034215306:3802697034215996 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697034216786:3802697034217416 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 65 +3802697034218186:3802697034218816 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 64 +3802697034219566:3802697034220356 1969:1973 hsa_signal_store_screlease(, 65) = void +3802697034221296:3802697035258763 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697035261493:3802697035262313 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697035263413:3802697035266063 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697035267073:3802697036511273 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697036518483:3802697036522543 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697036528793:3802697036529573 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697036528313:3802697036584993 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697043712756:3802697043713816 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697043768796:3802697044073458 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697044076228:3802697044077068 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697044078298:3802697044080338 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697044081298:3802697045429088 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697045436728:3802697045437428 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697045445428:3802697045445948 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697045448318:3802697045448838 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697045450158:3802697045450678 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697045460288:3802697045460818 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697045462429:3802697045462959 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697045472319:3802697045472919 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697045476039:3802697045476609 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697045438538:3802697045499409 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697045506119:3802697045506869 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 66 +3802697045508049:3802697045508689 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 66 +3802697045509589:3802697045510189 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 66 +3802697045511279:3802697045512209 1969:1973 hsa_signal_store_screlease(, 66) = void +3802697045516069:3802697045775731 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697045777911:3802697045778621 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697045779531:3802697045780171 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 67 +3802697045780981:3802697045781561 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 66 +3802697045782301:3802697045783091 1969:1973 hsa_signal_store_screlease(, 67) = void +3802697045784021:3802697046824119 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697046826849:3802697046827689 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697046832829:3802697046835539 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697046836399:3802697048083288 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697048087728:3802697048091788 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697048098448:3802697048099608 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697048098018:3802697048155889 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697055285302:3802697055286392 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697055335262:3802697055646504 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697055649154:3802697055649974 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697055651224:3802697055653264 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697055654434:3802697057001504 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697057017264:3802697057017964 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697057027025:3802697057027975 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697057030045:3802697057030575 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697057032145:3802697057032675 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697057034655:3802697057035185 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697057036735:3802697057037265 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697057045815:3802697057046425 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697057050975:3802697057051535 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697057010294:3802697057071405 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697057078025:3802697057078785 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 68 +3802697057080035:3802697057080685 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 68 +3802697057081775:3802697057082375 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 68 +3802697057083455:3802697057084375 1969:1973 hsa_signal_store_screlease(, 68) = void +3802697057088265:3802697057347297 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697057349307:3802697057350017 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697057350807:3802697057351417 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 69 +3802697057352217:3802697057352817 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 68 +3802697057353557:3802697057354367 1969:1973 hsa_signal_store_screlease(, 69) = void +3802697057355297:3802697058400205 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697058407075:3802697058407915 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697058409085:3802697058411675 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697058412525:3802697059663344 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697059668194:3802697059672724 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697059679064:3802697059679844 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697059678724:3802697059735985 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697066853648:3802697066854818 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697066903018:3802697067214750 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697067217570:3802697067218390 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697067219580:3802697067221630 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697067222590:3802697068560080 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697068566120:3802697068566870 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697068574550:3802697068575070 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697068577310:3802697068577830 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697068579580:3802697068580580 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697068589790:3802697068590320 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697068591830:3802697068592350 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697068601741:3802697068602351 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697068605621:3802697068606181 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697068567180:3802697068620751 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697068627281:3802697068627961 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 70 +3802697068629081:3802697068629721 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 70 +3802697068630621:3802697068631221 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 70 +3802697068632091:3802697068633011 1969:1973 hsa_signal_store_screlease(, 70) = void +3802697068635951:3802697068890163 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697068891913:3802697068892583 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697068893363:3802697068893973 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 71 +3802697068894793:3802697068895393 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 70 +3802697068899073:3802697068899883 1969:1973 hsa_signal_store_screlease(, 71) = void +3802697068900843:3802697069956700 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697069959440:3802697069960270 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697069961360:3802697069963950 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697069964990:3802697071215109 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697071219989:3802697071224359 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697071230870:3802697071231660 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697071230570:3802697071288160 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697078416943:3802697078418053 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697078466273:3802697078775876 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697078778596:3802697078779416 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697078780666:3802697078782716 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697078783876:3802697080120876 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697080136326:3802697080137036 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697080144946:3802697080145636 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697080148406:3802697080148936 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697080150426:3802697080150946 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697080152766:3802697080153286 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697080154736:3802697080155256 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697080164426:3802697080165026 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697080169656:3802697080170226 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697080129046:3802697080190356 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697080196666:3802697080197456 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 72 +3802697080198736:3802697080199376 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 72 +3802697080200486:3802697080201076 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 72 +3802697080202156:3802697080203106 1969:1973 hsa_signal_store_screlease(, 72) = void +3802697080206656:3802697080466658 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697080468528:3802697080469258 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697080470048:3802697080470638 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 73 +3802697080474558:3802697080475178 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 72 +3802697080475938:3802697080476738 1969:1973 hsa_signal_store_screlease(, 73) = void +3802697080477638:3802697081515266 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697081517996:3802697081518826 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697081519916:3802697081522536 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697081523576:3802697082774085 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697082778985:3802697082783395 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697082790675:3802697082791645 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697082790475:3802697082847626 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697089982569:3802697089983719 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697090032759:3802697090337572 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697090340312:3802697090341142 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697090342392:3802697090344452 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697090345392:3802697091694032 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697091701562:3802697091702352 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697091709992:3802697091710522 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697091713062:3802697091713582 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697091714912:3802697091715432 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697091724092:3802697091724622 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697091726052:3802697091726572 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697091735712:3802697091736322 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697091739442:3802697091740012 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697091703182:3802697091764752 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697091771412:3802697091772182 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 74 +3802697091773482:3802697091774122 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 74 +3802697091775032:3802697091775632 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 74 +3802697091776522:3802697091777442 1969:1973 hsa_signal_store_screlease(, 74) = void +3802697091781102:3802697092063964 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697092071634:3802697092072464 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697092073474:3802697092074174 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 75 +3802697092075064:3802697092075704 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 74 +3802697092076514:3802697092077414 1969:1973 hsa_signal_store_screlease(, 75) = void +3802697092078344:3802697093092302 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697093095012:3802697093095852 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697093096962:3802697093099642 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697093100702:3802697094353921 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697094358921:3802697094363331 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697094370422:3802697094371622 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697094369791:3802697094437802 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697101549124:3802697101550184 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697101606005:3802697101903967 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697101906697:3802697101907527 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697101908777:3802697101910837 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697101912017:3802697103262107 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697103269427:3802697103270127 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697103285317:3802697103285847 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697103287917:3802697103288437 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697103291027:3802697103291557 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697103293267:3802697103293787 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697103295097:3802697103295627 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697103304467:3802697103305077 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697103309757:3802697103310327 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697103271127:3802697103340867 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697103347427:3802697103348217 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 76 +3802697103349487:3802697103350137 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 76 +3802697103351047:3802697103351658 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 76 +3802697103356148:3802697103357118 1969:1973 hsa_signal_store_screlease(, 76) = void +3802697103361028:3802697103627570 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697103629700:3802697103630400 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697103631220:3802697103631860 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 77 +3802697103632660:3802697103633300 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 76 +3802697103634170:3802697103634980 1969:1973 hsa_signal_store_screlease(, 77) = void +3802697103635930:3802697104656987 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697104658217:3802697104658737 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697104659597:3802697104661627 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697104662427:3802697105916397 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697105921447:3802697105925917 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697105932737:3802697105933607 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697105932417:3802697105997867 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697113118640:3802697113119660 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697113168711:3802697113463423 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697113466213:3802697113467043 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697113468313:3802697113470403 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697113471343:3802697114820793 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697114828073:3802697114828773 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697114836933:3802697114837453 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697114839803:3802697114840323 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697114841803:3802697114842323 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697114855523:3802697114856133 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697114857543:3802697114858103 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697114869853:3802697114870463 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697114878943:3802697114879513 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697114830813:3802697114899383 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697114906673:3802697114907443 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 78 +3802697114908613:3802697114909253 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 78 +3802697114913624:3802697114914254 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 78 +3802697114915174:3802697114916104 1969:1973 hsa_signal_store_screlease(, 78) = void +3802697114919974:3802697115185556 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697115187676:3802697115188376 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697115189206:3802697115189846 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 79 +3802697115190646:3802697115191276 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 78 +3802697115192036:3802697115192846 1969:1973 hsa_signal_store_screlease(, 79) = void +3802697115193806:3802697116214073 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697116215273:3802697116215793 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697116216653:3802697116218673 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697116219473:3802697117472183 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697117477233:3802697117481623 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697117488163:3802697117489333 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697117487693:3802697117553173 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697124672035:3802697124673055 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697124719956:3802697125014508 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697125017308:3802697125018208 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697125019478:3802697125021498 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697125022638:3802697126372708 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697126380008:3802697126380538 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697126396058:3802697126396588 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697126398398:3802697126398928 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697126401108:3802697126401818 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697126403628:3802697126404148 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697126405508:3802697126406028 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697126415038:3802697126415638 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697126418828:3802697126419398 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697126381478:3802697126450939 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697126461229:3802697126462019 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 80 +3802697126462979:3802697126463619 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 80 +3802697126464529:3802697126465129 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 80 +3802697126466019:3802697126466959 1969:1973 hsa_signal_store_screlease(, 80) = void +3802697126470589:3802697126755511 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697126757511:3802697126758211 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697126759031:3802697126759671 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 81 +3802697126760481:3802697126761121 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 80 +3802697126761871:3802697126762701 1969:1973 hsa_signal_store_screlease(, 81) = void +3802697126763631:3802697127784738 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697127787448:3802697127788278 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697127789378:3802697127791998 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697127792989:3802697129054168 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697129059508:3802697129063518 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697129072608:3802697129073398 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697129069788:3802697129135058 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697136272812:3802697136273832 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697136308192:3802697136608484 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697136611294:3802697136612134 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697136613384:3802697136615514 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697136616464:3802697137969414 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697137976924:3802697137977634 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697137985474:3802697137985994 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697137988204:3802697137988724 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697137990184:3802697137990714 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697138000554:3802697138001074 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697138002704:3802697138003234 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697138011865:3802697138012465 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697138015515:3802697138016085 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697137978454:3802697138047435 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697138054275:3802697138055035 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 82 +3802697138055995:3802697138056645 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 82 +3802697138057555:3802697138058155 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 82 +3802697138059035:3802697138059965 1969:1973 hsa_signal_store_screlease(, 82) = void +3802697138063735:3802697138328127 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697138330107:3802697138330837 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697138331667:3802697138332307 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 83 +3802697138333127:3802697138333747 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 82 +3802697138334487:3802697138335277 1969:1973 hsa_signal_store_screlease(, 83) = void +3802697138336217:3802697139366035 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697139368745:3802697139369575 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697139370695:3802697139373295 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697139374285:3802697140617444 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697140620854:3802697140624914 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697140631714:3802697140632674 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697140631494:3802697140695934 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697147817577:3802697147818667 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697147874058:3802697148175920 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697148178710:3802697148179540 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697148180730:3802697148182820 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697148183930:3802697149530990 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697149538860:3802697149539560 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697149555280:3802697149555810 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697149558120:3802697149558640 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697149560520:3802697149561040 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697149562820:3802697149563340 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697149564550:3802697149565080 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697149575950:3802697149576560 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697149579450:3802697149580060 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697149540500:3802697149609890 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697149616841:3802697149617621 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 84 +3802697149618581:3802697149619221 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 84 +3802697149620131:3802697149620731 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 84 +3802697149621611:3802697149622531 1969:1973 hsa_signal_store_screlease(, 84) = void +3802697149626091:3802697149892773 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697149894803:3802697149895543 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697149896373:3802697149897003 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 85 +3802697149897813:3802697149898443 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 84 +3802697149899183:3802697149900003 1969:1973 hsa_signal_store_screlease(, 85) = void +3802697149900933:3802697150935640 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697150938360:3802697150939190 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697150940310:3802697150942920 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697150943900:3802697152189839 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697152194369:3802697152198569 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697152207229:3802697152208019 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697152204609:3802697152270470 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697159397353:3802697159398813 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697159446923:3802697159745395 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697159748125:3802697159748935 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697159750195:3802697159752395 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697159753365:3802697161099525 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697161107386:3802697161108086 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697161116706:3802697161117236 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697161119236:3802697161119756 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697161121226:3802697161121756 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697161123406:3802697161123936 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697161134056:3802697161134586 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697161146036:3802697161146646 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697161149446:3802697161150006 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697161109416:3802697161179646 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697161186736:3802697161187516 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 86 +3802697161188446:3802697161189086 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 86 +3802697161189986:3802697161190576 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 86 +3802697161191486:3802697161192416 1969:1973 hsa_signal_store_screlease(, 86) = void +3802697161196346:3802697161462338 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697161464488:3802697161465198 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697161466028:3802697161466668 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 87 +3802697161467488:3802697161468128 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 86 +3802697161468898:3802697161469688 1969:1973 hsa_signal_store_screlease(, 87) = void +3802697161470588:3802697162504586 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697162507316:3802697162508146 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697162509256:3802697162511866 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697162512866:3802697163763945 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697163768815:3802697163773185 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697163779815:3802697163781015 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697163779485:3802697163844546 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697170962159:3802697170963189 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697171011489:3802697171304641 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697171307391:3802697171308231 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697171309471:3802697171311531 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697171312701:3802697172651371 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697172657461:3802697172658631 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697172674172:3802697172674692 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697172676562:3802697172677092 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697172684482:3802697172685012 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697172686412:3802697172686932 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697172688442:3802697172688972 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697172701872:3802697172702402 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697172705602:3802697172706132 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697172657731:3802697172719762 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697172726322:3802697172727062 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 88 +3802697172727952:3802697172728572 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 88 +3802697172729482:3802697172730082 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 88 +3802697172730962:3802697172731872 1969:1973 hsa_signal_store_screlease(, 88) = void +3802697172735042:3802697172996524 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697172998424:3802697172999094 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697172999904:3802697173000544 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 89 +3802697173001344:3802697173001984 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 88 +3802697173002744:3802697173003534 1969:1973 hsa_signal_store_screlease(, 89) = void +3802697173004454:3802697174040622 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697174043352:3802697174044172 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697174045292:3802697174047882 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697174048882:3802697175409712 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697175414582:3802697175418982 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697175429562:3802697175430442 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697175426032:3802697175492253 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697182716155:3802697182717205 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697182767536:3802697183061878 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697183064668:3802697183065498 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697183066738:3802697183068808 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697183069758:3802697184410248 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697184417538:3802697184418238 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697184426608:3802697184427138 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697184437028:3802697184437718 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697184439518:3802697184440038 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697184441568:3802697184442088 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697184443748:3802697184444268 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697184455238:3802697184455848 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697184458938:3802697184459498 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697184418958:3802697184488649 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697184495579:3802697184496339 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 90 +3802697184497219:3802697184497859 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 90 +3802697184498759:3802697184499359 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 90 +3802697184500369:3802697184501319 1969:1973 hsa_signal_store_screlease(, 90) = void +3802697184505099:3802697184772251 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697184774301:3802697184775021 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697184775811:3802697184776451 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 91 +3802697184777241:3802697184777871 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 90 +3802697184779061:3802697184779851 1969:1973 hsa_signal_store_screlease(, 91) = void +3802697184780771:3802697185812568 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697185815318:3802697185816138 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697185817258:3802697185819869 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697185820859:3802697187072008 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697187076868:3802697187081358 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697187088028:3802697187088998 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697187087758:3802697187152918 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697194272551:3802697194274011 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697194322022:3802697194620454 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697194623194:3802697194624104 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697194625344:3802697194627394 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697194628534:3802697195977634 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697195989014:3802697195989724 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697195997644:3802697195998174 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697196021734:3802697196022344 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697196023844:3802697196024414 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697196026254:3802697196026774 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697196028294:3802697196028814 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697196038755:3802697196039285 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697196042505:3802697196043035 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697195991144:3802697196070005 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697196076635:3802697196077385 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 92 +3802697196078675:3802697196079375 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 92 +3802697196080475:3802697196081075 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 92 +3802697196082015:3802697196082935 1969:1973 hsa_signal_store_screlease(, 92) = void +3802697196086475:3802697196354197 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697196356327:3802697196357027 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697196357847:3802697196358507 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 93 +3802697196359317:3802697196359947 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 92 +3802697196360717:3802697196361507 1969:1973 hsa_signal_store_screlease(, 93) = void +3802697196362447:3802697197390045 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697197392795:3802697197393625 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697197394745:3802697197397385 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697197398415:3802697198650594 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697198655434:3802697198659804 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697198668884:3802697198669664 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697198666274:3802697198731295 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697205858637:3802697205859747 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697205909807:3802697206205449 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697206208229:3802697206209059 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697206213869:3802697206216009 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697206216909:3802697207565279 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697207572310:3802697207572840 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697207581490:3802697207582020 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697207584040:3802697207584570 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697207586100:3802697207586630 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697207588450:3802697207588980 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697207590340:3802697207590870 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697207608490:3802697207609100 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697207613480:3802697207614040 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697207575350:3802697207645140 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697207652200:3802697207652990 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 94 +3802697207654250:3802697207654890 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 94 +3802697207655830:3802697207656430 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 94 +3802697207657340:3802697207658250 1969:1973 hsa_signal_store_screlease(, 94) = void +3802697207662000:3802697207927632 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697207929642:3802697207930362 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697207931192:3802697207931832 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 95 +3802697207932652:3802697207933282 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 94 +3802697207934022:3802697207934812 1969:1973 hsa_signal_store_screlease(, 95) = void +3802697207935732:3802697208976390 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697208979100:3802697208979920 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697208981030:3802697208983690 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697208984710:3802697210236929 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697210241969:3802697210246399 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697210252609:3802697210253769 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697210252169:3802697210317910 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697217434123:3802697217435223 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697217484803:3802697217786215 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697217792486:3802697217793306 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697217794286:3802697217796316 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697217797216:3802697219151236 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697219158516:3802697219159296 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697219167976:3802697219168506 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697219178616:3802697219179146 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697219181746:3802697219182266 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697219184256:3802697219184776 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697219186236:3802697219186756 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697219196166:3802697219196766 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697219199816:3802697219200376 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697219159806:3802697219231166 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697219238026:3802697219238786 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 96 +3802697219240046:3802697219240686 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 96 +3802697219241786:3802697219242386 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 96 +3802697219243526:3802697219244476 1969:1973 hsa_signal_store_screlease(, 96) = void +3802697219248426:3802697219514638 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697219516628:3802697219517338 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697219518168:3802697219518808 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 97 +3802697219519618:3802697219520258 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 96 +3802697219521008:3802697219521818 1969:1973 hsa_signal_store_screlease(, 97) = void +3802697219522728:3802697220541416 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697220542736:3802697220543276 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697220544136:3802697220546186 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697220546986:3802697221799515 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697221804605:3802697221809235 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697221816535:3802697221817675 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697221815745:3802697221882876 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697229003319:3802697229004809 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697229054119:3802697229349801 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697229352761:3802697229353571 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697229354791:3802697229356891 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697229357821:3802697230706571 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697230721531:3802697230722231 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697230729821:3802697230730351 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697230732321:3802697230733671 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697230735711:3802697230736241 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697230737841:3802697230738361 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697230739721:3802697230740251 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697230750511:3802697230751121 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697230754471:3802697230755031 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697230716101:3802697230785482 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697230792522:3802697230793272 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 98 +3802697230794562:3802697230795212 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 98 +3802697230796152:3802697230796762 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 98 +3802697230797652:3802697230798592 1969:1973 hsa_signal_store_screlease(, 98) = void +3802697230802302:3802697231065904 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697231067974:3802697231068684 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697231069514:3802697231070154 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 99 +3802697231070974:3802697231071604 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 98 +3802697231072354:3802697231073144 1969:1973 hsa_signal_store_screlease(, 99) = void +3802697231074084:3802697232108461 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697232110841:3802697232111621 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697232112581:3802697232114901 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697232115761:3802697233368431 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697233373551:3802697233378041 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697233385421:3802697233386701 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697233384531:3802697233451711 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697240590874:3802697240592334 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697240626035:3802697240925907 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697240928627:3802697240929477 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697240930737:3802697240932817 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697240933957:3802697242283297 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697242290507:3802697242291207 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697242299197:3802697242299727 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697242309497:3802697242310197 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697242312257:3802697242312777 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697242314657:3802697242315257 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697242316627:3802697242317187 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697242326097:3802697242326697 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697242329817:3802697242330387 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697242292347:3802697242363458 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697242370018:3802697242370788 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 100 +3802697242371978:3802697242372628 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 100 +3802697242373738:3802697242374338 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 100 +3802697242375458:3802697242376408 1969:1973 hsa_signal_store_screlease(, 100) = void +3802697242380028:3802697242644610 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697242646910:3802697242647620 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697242648440:3802697242649100 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 101 +3802697242649920:3802697242650550 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 100 +3802697242651300:3802697242652090 1969:1973 hsa_signal_store_screlease(, 101) = void +3802697242653010:3802697243686677 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697243689387:3802697243690217 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697243691337:3802697243693947 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697243694937:3802697244951057 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697244960207:3802697244964547 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697244970567:3802697244971527 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697244970347:3802697245036087 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697252180451:3802697252181281 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697252215321:3802697252509013 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697252511803:3802697252512623 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697252513853:3802697252515903 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697252516833:3802697253863093 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697253880723:3802697253881443 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697253891783:3802697253892313 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697253894383:3802697253894903 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697253896383:3802697253896903 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697253898563:3802697253899163 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697253900713:3802697253901273 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697253910293:3802697253910903 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697253915313:3802697253920093 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697253872593:3802697253940844 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697253947704:3802697253948474 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 102 +3802697253949664:3802697253950304 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 102 +3802697253951194:3802697253951794 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 102 +3802697253952704:3802697253953634 1969:1973 hsa_signal_store_screlease(, 102) = void +3802697253957324:3802697254221136 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697254223186:3802697254223896 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697254224686:3802697254225336 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 103 +3802697254226126:3802697254226766 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 102 +3802697254227506:3802697254228296 1969:1973 hsa_signal_store_screlease(, 103) = void +3802697254229246:3802697255261383 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697255264103:3802697255264933 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697255266043:3802697255268653 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697255274094:3802697256513603 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697256517093:3802697256521133 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697256527203:3802697256528083 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697256526753:3802697256592313 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697263711495:3802697263712896 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697263761056:3802697264057008 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697264059768:3802697264060578 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697264061838:3802697264063948 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697264065128:3802697265412778 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697265420408:3802697265421198 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697265429778:3802697265430298 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697265439278:3802697265439978 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697265442288:3802697265442808 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697265444588:3802697265445108 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697265446388:3802697265446908 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697265456528:3802697265457128 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697265460008:3802697265460579 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697265421808:3802697265491629 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697265498389:3802697265499159 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 104 +3802697265500419:3802697265501059 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 104 +3802697265502139:3802697265502739 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 104 +3802697265503629:3802697265504559 1969:1973 hsa_signal_store_screlease(, 104) = void +3802697265508159:3802697265778991 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697265781111:3802697265781821 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697265782651:3802697265783281 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 105 +3802697265784081:3802697265784721 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 104 +3802697265785461:3802697265786261 1969:1973 hsa_signal_store_screlease(, 105) = void +3802697265787191:3802697266819939 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697266826649:3802697266827489 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697266828619:3802697266831359 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697266832429:3802697268078318 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697268082828:3802697268086908 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697268094018:3802697268095208 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697268094158:3802697268160929 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697275277682:3802697275278732 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697275328332:3802697275627464 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697275630204:3802697275631044 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697275632314:3802697275634384 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697275635334:3802697276985864 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697277001494:3802697277002214 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697277009704:3802697277010234 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697277012074:3802697277012814 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697277014764:3802697277015464 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697277017044:3802697277017564 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697277018924:3802697277019444 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697277030775:3802697277031385 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697277035445:3802697277036005 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697276995244:3802697277065515 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697277072865:3802697277073625 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 106 +3802697277074915:3802697277075555 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 106 +3802697277076465:3802697277077065 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 106 +3802697277077955:3802697277078905 1969:1973 hsa_signal_store_screlease(, 106) = void +3802697277082635:3802697277346837 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697277348887:3802697277349587 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697277350417:3802697277351057 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 107 +3802697277351857:3802697277352497 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 106 +3802697277353237:3802697277354027 1969:1973 hsa_signal_store_screlease(, 107) = void +3802697277358317:3802697278391375 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697278394065:3802697278394895 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697278396015:3802697278398635 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697278399625:3802697279650334 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697279655214:3802697279659564 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697279666464:3802697279667624 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697279666084:3802697279730725 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697287061638:3802697287062928 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697287113879:3802697287407041 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697287409761:3802697287410641 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697287411851:3802697287413901 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697287415001:3802697288763231 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697288770961:3802697288771671 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697288779791:3802697288780391 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697288791321:3802697288792171 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697288794221:3802697288794781 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697288796761:3802697288797361 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697288798721:3802697288799281 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697288808721:3802697288809321 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697288812151:3802697288812711 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697288772441:3802697288842552 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697288849222:3802697288850012 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 108 +3802697288851092:3802697288851732 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 108 +3802697288852632:3802697288853232 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 108 +3802697288854142:3802697288855112 1969:1973 hsa_signal_store_screlease(, 108) = void +3802697288858732:3802697289124844 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697289126944:3802697289127654 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697289128484:3802697289129124 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 109 +3802697289133154:3802697289133814 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 108 +3802697289134594:3802697289135374 1969:1973 hsa_signal_store_screlease(, 109) = void +3802697289136314:3802697290158181 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697290160921:3802697290161741 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697290162861:3802697290165481 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697290166551:3802697291417411 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697291422291:3802697291426671 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697291433441:3802697291434401 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697291433221:3802697291498891 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697298626614:3802697298627694 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697298676425:3802697298969127 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697298971907:3802697298972757 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697298973997:3802697298976107 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697298977057:3802697300317397 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697300331887:3802697300332607 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697300339977:3802697300340507 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697300342847:3802697300343377 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697300344927:3802697300345817 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697300347727:3802697300348247 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697300349397:3802697300349917 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697300359927:3802697300360537 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697300366187:3802697300366747 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697300327057:3802697300395918 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697300402788:3802697300403558 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 110 +3802697300404768:3802697300405418 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 110 +3802697300406318:3802697300406918 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 110 +3802697300408028:3802697300408968 1969:1973 hsa_signal_store_screlease(, 110) = void +3802697300412958:3802697300678210 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697300683770:3802697300684490 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697300685310:3802697300685960 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 111 +3802697300686770:3802697300687390 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 110 +3802697300688150:3802697300688940 1969:1973 hsa_signal_store_screlease(, 111) = void +3802697300689860:3802697301720017 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697301722747:3802697301723567 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697301724687:3802697301727447 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697301728447:3802697302979367 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697302984207:3802697302988597 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697302995057:3802697302995977 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697302994757:3802697303060597 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697310184950:3802697310186030 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697310233620:3802697310528192 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697310530912:3802697310531762 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697310533002:3802697310535042 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697310536202:3802697311884292 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697311891952:3802697311892662 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697311900962:3802697311901482 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697311903332:3802697311903852 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697311905392:3802697311905912 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697311914952:3802697311915552 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697311917072:3802697311917642 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697311926683:3802697311927293 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697311930343:3802697311930903 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697311893142:3802697311962913 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697311969703:3802697311970483 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 112 +3802697311971753:3802697311972403 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 112 +3802697311973493:3802697311974103 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 112 +3802697311975003:3802697311975943 1969:1973 hsa_signal_store_screlease(, 112) = void +3802697311982973:3802697312262775 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697312264915:3802697312265615 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697312266405:3802697312267055 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 113 +3802697312267885:3802697312268525 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 112 +3802697312269295:3802697312270105 1969:1973 hsa_signal_store_screlease(, 113) = void +3802697312270995:3802697313282193 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697313284873:3802697313285703 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697313286803:3802697313289403 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697313290393:3802697314542542 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697314547592:3802697314552002 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697314559172:3802697314560342 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697314558772:3802697314623263 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697321748076:3802697321749126 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697321804236:3802697322099298 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697322102108:3802697322102888 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697322104158:3802697322106248 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697322107198:3802697323454218 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697323469728:3802697323470428 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697323477468:3802697323477998 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697323480388:3802697323480908 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697323482608:3802697323483348 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697323485389:3802697323485909 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697323487289:3802697323487809 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697323496909:3802697323497509 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697323501729:3802697323502299 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697323463538:3802697323534459 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697323541259:3802697323542029 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 114 +3802697323543299:3802697323543939 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 114 +3802697323548359:3802697323548979 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 114 +3802697323549909:3802697323550849 1969:1973 hsa_signal_store_screlease(, 114) = void +3802697323554689:3802697323821921 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697323823981:3802697323824691 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697323825511:3802697323826151 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 115 +3802697323826951:3802697323827591 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 114 +3802697323828341:3802697323829171 1969:1973 hsa_signal_store_screlease(, 115) = void +3802697323830111:3802697324860899 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697324863599:3802697324864429 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697324865549:3802697324868159 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697324869149:3802697326121388 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697326126478:3802697326131048 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697326138388:3802697326139558 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697326138028:3802697326204779 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697333340452:3802697333341672 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697333390152:3802697333917916 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697333920686:3802697333921506 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697333922766:3802697333924776 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697333925936:3802697335276056 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697335283286:3802697335283816 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697335291966:3802697335292496 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697335294496:3802697335295016 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697335296756:3802697335297286 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697335309746:3802697335310276 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697335311916:3802697335312436 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697335321037:3802697335321637 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697335324757:3802697335325327 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697335284796:3802697335353667 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697335360707:3802697335361457 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 116 +3802697335365947:3802697335366607 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 116 +3802697335367507:3802697335368107 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 116 +3802697335369017:3802697335369987 1969:1973 hsa_signal_store_screlease(, 116) = void +3802697335373657:3802697335638509 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697335640579:3802697335641289 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697335642109:3802697335642759 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 117 +3802697335643569:3802697335644199 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 116 +3802697335644979:3802697335645779 1969:1973 hsa_signal_store_screlease(, 117) = void +3802697335646699:3802697336655936 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697336657266:3802697336657826 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697336658706:3802697336660716 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697336661536:3802697337914725 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697337919775:3802697337924186 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697337931426:3802697337932176 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697337930916:3802697337994766 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697345129879:3802697345130929 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697345181919:3802697345478211 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697345480961:3802697345481771 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697345483011:3802697345485081 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697345486021:3802697346837891 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697346844881:3802697346845411 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697346861082:3802697346861612 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697346863522:3802697346864042 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697346865972:3802697346867082 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697346868832:3802697346869352 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697346870752:3802697346871282 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697346880282:3802697346880892 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697346885272:3802697346885842 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697346847641:3802697346916112 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697346922922:3802697346923682 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 118 +3802697346924652:3802697346925302 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 118 +3802697346926202:3802697346926812 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 118 +3802697346927692:3802697346928622 1969:1973 hsa_signal_store_screlease(, 118) = void +3802697346932342:3802697347195064 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697347197204:3802697347197904 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697347198734:3802697347199354 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 119 +3802697347200174:3802697347200804 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 118 +3802697347201554:3802697347202344 1969:1973 hsa_signal_store_screlease(, 119) = void +3802697347203284:3802697348219162 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697348220502:3802697348221032 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697348221892:3802697348223962 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697348224802:3802697349477681 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697349482751:3802697349487211 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697349494001:3802697349495221 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697349493231:3802697349558072 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697356688715:3802697356689865 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697356738145:3802697357033797 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697357036517:3802697357037337 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697357038557:3802697357040637 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697357041757:3802697358390577 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697358398107:3802697358398807 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697358406287:3802697358406817 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697358408777:3802697358409297 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697358410957:3802697358411487 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697358421838:3802697358422368 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697358424148:3802697358424668 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697358433928:3802697358434538 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697358439118:3802697358439678 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697358399597:3802697358469128 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697358475978:3802697358476738 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 120 +3802697358477718:3802697358478358 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 120 +3802697358479268:3802697358479868 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 120 +3802697358480778:3802697358481718 1969:1973 hsa_signal_store_screlease(, 120) = void +3802697358485318:3802697358752300 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697358754390:3802697358755080 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697358755900:3802697358756520 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 121 +3802697358757340:3802697358757980 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 120 +3802697358758720:3802697358759510 1969:1973 hsa_signal_store_screlease(, 121) = void +3802697358760460:3802697359795338 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697359798028:3802697359798928 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697359800028:3802697359802668 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697359803648:3802697361058497 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697361063537:3802697361067957 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697361075527:3802697361076717 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697361074897:3802697361140888 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697368269330:3802697368270230 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697368302650:3802697368602102 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697368604883:3802697368605703 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697368606953:3802697368609023 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697368609973:3802697369958553 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697369965893:3802697369966593 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697369982233:3802697369982763 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697369985063:3802697369985793 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697369987793:3802697369988493 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697369990163:3802697369990683 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697369993973:3802697369994503 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697370003353:3802697370003883 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697370006713:3802697370007243 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697369968083:3802697370038473 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697370045493:3802697370046283 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 122 +3802697370047233:3802697370047883 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 122 +3802697370048783:3802697370049383 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 122 +3802697370050313:3802697370051233 1969:1973 hsa_signal_store_screlease(, 122) = void +3802697370054893:3802697370319745 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697370321885:3802697370322585 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697370323415:3802697370324055 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 123 +3802697370324875:3802697370325505 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 122 +3802697370326265:3802697370327055 1969:1973 hsa_signal_store_screlease(, 123) = void +3802697370328025:3802697371364923 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697371367633:3802697371368463 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697371369563:3802697371372183 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697371373173:3802697372617222 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697372620782:3802697372625002 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697372633832:3802697372634622 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697372630772:3802697372696593 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697379811546:3802697379812536 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697379861676:3802697380166339 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697380169139:3802697380169959 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697380171169:3802697380173209 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697380174329:3802697381526609 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697381534389:3802697381535709 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697381543219:3802697381543749 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697381545869:3802697381546399 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697381547889:3802697381548409 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697381559879:3802697381560409 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697381561909:3802697381562429 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697381571099:3802697381571699 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697381576219:3802697381576739 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697381535509:3802697381613499 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697381620439:3802697381621209 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 124 +3802697381622169:3802697381622809 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 124 +3802697381623709:3802697381624309 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 124 +3802697381625239:3802697381626169 1969:1973 hsa_signal_store_screlease(, 124) = void +3802697381629889:3802697381898141 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697381900221:3802697381900911 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697381901741:3802697381902401 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 125 +3802697381903191:3802697381903821 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 124 +3802697381904691:3802697381905481 1969:1973 hsa_signal_store_screlease(, 125) = void +3802697381906431:3802697382955929 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697382958649:3802697382959479 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697382960609:3802697382963229 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697382964219:3802697384210559 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697384215119:3802697384219389 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697384226249:3802697384227429 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697384225689:3802697384290799 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697391588663:3802697391589913 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697391647684:3802697391944596 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697391947366:3802697391948186 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697391949446:3802697391951536 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697391952476:3802697393302916 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697393310896:3802697393311596 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697393328746:3802697393329266 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697393337556:3802697393338076 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697393339296:3802697393339826 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697393341326:3802697393341926 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697393343546:3802697393344106 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697393355466:3802697393356076 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697393364036:3802697393364606 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697393313756:3802697393382987 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697393390097:3802697393390847 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 126 +3802697393391827:3802697393392457 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 126 +3802697393393377:3802697393393977 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 126 +3802697393394897:3802697393395817 1969:1973 hsa_signal_store_screlease(, 126) = void +3802697393399547:3802697393664379 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697393666469:3802697393667179 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697393667999:3802697393668649 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 127 +3802697393669449:3802697393670079 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 126 +3802697393670949:3802697393671729 1969:1973 hsa_signal_store_screlease(, 127) = void +3802697393672649:3802697394711636 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697394714346:3802697394715176 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697394716286:3802697394718896 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697394719886:3802697395971395 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697395976295:3802697395980815 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697395989745:3802697395990535 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697395987095:3802697396059796 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697403165639:3802697403166749 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697403217439:3802697403510841 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697403513591:3802697403514421 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697403515671:3802697403517741 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697403518871:3802697404867111 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697404879092:3802697404879802 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697404887272:3802697404887792 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697404889512:3802697404890042 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697404891212:3802697404891742 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697404893202:3802697404893722 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697404895232:3802697404895752 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697404914042:3802697404914562 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697404917662:3802697404918192 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697404880512:3802697404949582 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697404956222:3802697404956982 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 128 +3802697404958282:3802697404958922 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 128 +3802697404960022:3802697404960622 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 128 +3802697404961522:3802697404962432 1969:1973 hsa_signal_store_screlease(, 128) = void +3802697404966022:3802697405233194 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697405235204:3802697405235914 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697405236734:3802697405237374 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 129 +3802697405238174:3802697405238804 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 128 +3802697405239574:3802697405240364 1969:1973 hsa_signal_store_screlease(, 129) = void +3802697405241294:3802697406279902 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697406282652:3802697406283472 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697406284592:3802697406287182 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697406288172:3802697407539471 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697407544351:3802697407548731 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697407556061:3802697407557221 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697407555601:3802697407620912 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697414747025:3802697414748175 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697414799465:3802697415091607 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697415094408:3802697415095248 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697415096468:3802697415098538 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697415102738:3802697416439168 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697416446368:3802697416447068 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697416462258:3802697416462788 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697416464998:3802697416465778 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697416467608:3802697416468138 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697416469858:3802697416470378 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697416472128:3802697416472658 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697416482128:3802697416482738 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697416485578:3802697416486138 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697416447728:3802697416516638 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697416523618:3802697416524368 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 130 +3802697416525558:3802697416526188 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 130 +3802697416527098:3802697416527688 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 130 +3802697416528598:3802697416529518 1969:1973 hsa_signal_store_screlease(, 130) = void +3802697416533278:3802697416800280 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697416802390:3802697416803090 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697416803930:3802697416804570 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 131 +3802697416805360:3802697416806000 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 130 +3802697416806740:3802697416807530 1969:1973 hsa_signal_store_screlease(, 131) = void +3802697416808460:3802697417849948 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697417852668:3802697417853488 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697417854598:3802697417857218 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697417858208:3802697419108997 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697419113837:3802697419118327 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697419128078:3802697419128868 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697419125197:3802697419190748 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697426314570:3802697426315770 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697426365011:3802697426677253 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697426683463:3802697426684303 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697426685273:3802697426687343 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697426688213:3802697428173694 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697428180614:3802697428181324 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697428189514:3802697428190044 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697428191904:3802697428192424 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697428194174:3802697428194694 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697428196474:3802697428196994 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697428198324:3802697428199204 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697428215914:3802697428216444 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697428219474:3802697428219994 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697428182074:3802697428243615 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697428250135:3802697428250885 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 132 +3802697428252145:3802697428252785 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 132 +3802697428253875:3802697428254475 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 132 +3802697428255355:3802697428256295 1969:1973 hsa_signal_store_screlease(, 132) = void +3802697428260225:3802697428525067 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697428526967:3802697428527727 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697428528527:3802697428529167 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 133 +3802697428529947:3802697428530557 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 132 +3802697428531307:3802697428532117 1969:1973 hsa_signal_store_screlease(, 133) = void +3802697428533037:3802697429567894 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697429570594:3802697429571424 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697429572544:3802697429575154 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697429576134:3802697430829684 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697430834534:3802697430839024 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697430845704:3802697430846914 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697430845854:3802697430902854 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697438070848:3802697438071938 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697438135038:3802697438441140 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697438444020:3802697438444900 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697438445860:3802697438447960 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697438448860:3802697439800860 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697439807971:3802697439808671 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697439816881:3802697439817401 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697439821981:3802697439822511 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697439823841:3802697439824361 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697439826041:3802697439826651 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697439828651:3802697439829221 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697439838671:3802697439839281 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697439842351:3802697439842921 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697439810241:3802697439871451 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697439878051:3802697439878801 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 134 +3802697439879731:3802697439880371 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 134 +3802697439881261:3802697439881861 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 134 +3802697439882741:3802697439883821 1969:1973 hsa_signal_store_screlease(, 134) = void +3802697439887561:3802697440160593 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697440162603:3802697440163293 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697440164083:3802697440164713 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 135 +3802697440165503:3802697440166133 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 134 +3802697440166883:3802697440167683 1969:1973 hsa_signal_store_screlease(, 135) = void +3802697440168613:3802697441194711 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697441197391:3802697441198221 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697441199321:3802697441201941 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697441203011:3802697442454850 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697442459940:3802697442464480 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697442474020:3802697442474810 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697442469630:3802697442527531 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697449669064:3802697449670154 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697449720374:3802697450027546 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697450030246:3802697450031066 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697450032306:3802697450034356 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697450035516:3802697451385296 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697451392906:3802697451393636 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697451408686:3802697451409216 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697451411816:3802697451412516 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697451414586:3802697451415106 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697451416846:3802697451417376 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697451419146:3802697451419666 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697451430566:3802697451431176 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697451434226:3802697451434786 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697451394356:3802697451457146 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697451463677:3802697451464457 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 136 +3802697451465737:3802697451466367 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 136 +3802697451467267:3802697451467867 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 136 +3802697451468757:3802697451469717 1969:1973 hsa_signal_store_screlease(, 136) = void +3802697451473387:3802697451732058 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697451734068:3802697451734799 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697451735589:3802697451736199 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 137 +3802697451736979:3802697451737569 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 136 +3802697451738319:3802697451739119 1969:1973 hsa_signal_store_screlease(, 137) = void +3802697451740029:3802697452785136 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697452787806:3802697452788646 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697452789756:3802697452792406 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697452793486:3802697454045816 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697454050866:3802697454055366 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697454067896:3802697454069076 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697454067056:3802697454124536 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697461258389:3802697461259479 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697461309030:3802697461620672 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697461623382:3802697461624202 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697461625462:3802697461627532 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697461628472:3802697462977822 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697462985392:3802697462986092 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697462994462:3802697462994982 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697463007642:3802697463008172 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697463009782:3802697463010302 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697463011882:3802697463012402 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697463013572:3802697463014102 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697463023832:3802697463024442 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697463027332:3802697463027902 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697462987442:3802697463049803 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697463056583:3802697463057343 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 138 +3802697463058543:3802697463059183 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 138 +3802697463060073:3802697463060673 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 138 +3802697463061543:3802697463062483 1969:1973 hsa_signal_store_screlease(, 138) = void +3802697463066103:3802697463324535 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697463326445:3802697463327145 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697463327935:3802697463328575 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 139 +3802697463329375:3802697463330005 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 138 +3802697463330775:3802697463331565 1969:1973 hsa_signal_store_screlease(, 139) = void +3802697463332495:3802697464363822 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697464364992:3802697464365522 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697464366372:3802697464368452 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697464372592:3802697465621652 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697465626652:3802697465631192 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697465638992:3802697465640002 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697465636982:3802697465694572 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697472967186:3802697472968236 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697473017827:3802697473324339 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697473326999:3802697473327769 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697473329009:3802697473331079 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697473332239:3802697474681719 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697474696209:3802697474696919 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697474703269:3802697474703799 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697474705699:3802697474706229 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697474708109:3802697474709179 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697474710889:3802697474711419 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697474712689:3802697474713219 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697474723679:3802697474724209 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697474727189:3802697474727709 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697474691019:3802697474752490 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697474759210:3802697474759980 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 140 +3802697474761240:3802697474761880 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 140 +3802697474762970:3802697474763570 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 140 +3802697474764440:3802697474765470 1969:1973 hsa_signal_store_screlease(, 140) = void +3802697474769150:3802697475029542 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697475031592:3802697475032332 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697475033112:3802697475033732 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 141 +3802697475034502:3802697475035102 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 140 +3802697475035852:3802697475036652 1969:1973 hsa_signal_store_screlease(, 141) = void +3802697475037562:3802697476067579 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697476069959:3802697476070679 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697476075589:3802697476077880 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697476078740:3802697477331039 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697477336069:3802697477340569 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697477347669:3802697477348629 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697477347369:3802697477405169 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697484548032:3802697484549012 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697484582952:3802697484881144 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697484883864:3802697484884704 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697484885984:3802697484887994 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697484888934:3802697486235614 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697486242834:3802697486243534 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697486251534:3802697486252064 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697486261294:3802697486262004 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697486264104:3802697486264624 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697486266385:3802697486266985 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697486268525:3802697486269095 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697486282045:3802697486282655 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697486287035:3802697486287605 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697486245074:3802697486307565 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697486314515:3802697486315275 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 142 +3802697486316545:3802697486317175 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 142 +3802697486318095:3802697486318695 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 142 +3802697486319575:3802697486320505 1969:1973 hsa_signal_store_screlease(, 142) = void +3802697486324235:3802697486585017 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697486586977:3802697486587687 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697486588467:3802697486589107 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 143 +3802697486589907:3802697486590517 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 142 +3802697486591277:3802697486592067 1969:1973 hsa_signal_store_screlease(, 143) = void +3802697486596407:3802697487626585 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697487629285:3802697487630125 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697487631235:3802697487633845 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697487634875:3802697488907134 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697488912144:3802697488916514 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697488923924:3802697488924884 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697488923404:3802697488980705 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697496255759:3802697496257089 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697496290949:3802697496595561 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697496598251:3802697496599091 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697496600351:3802697496602381 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697496603551:3802697497951511 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697497967552:3802697497968262 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697497975442:3802697497975972 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697497978502:3802697497979422 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697497980912:3802697497981442 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697497983222:3802697497983752 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697497985092:3802697497985622 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697497996012:3802697497996542 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697497999872:3802697498000392 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697497960211:3802697498022582 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697498028932:3802697498029672 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 144 +3802697498030972:3802697498031612 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 144 +3802697498032722:3802697498033322 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 144 +3802697498034222:3802697498035182 1969:1973 hsa_signal_store_screlease(, 144) = void +3802697498038732:3802697498297084 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697498298934:3802697498299664 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697498300454:3802697498301094 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 145 +3802697498305064:3802697498305684 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 144 +3802697498306444:3802697498307244 1969:1973 hsa_signal_store_screlease(, 145) = void +3802697498308184:3802697499338892 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697499341592:3802697499342422 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697499343542:3802697499346192 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697499347242:3802697500591081 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697500594641:3802697500598691 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697500604941:3802697500606461 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697500604471:3802697500662782 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697507794864:3802697507796214 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697507851584:3802697508175517 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697508178237:3802697508179067 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697508180317:3802697508182357 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697508183277:3802697509530627 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697509538567:3802697509539277 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697509546977:3802697509547497 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697509558977:3802697509559587 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697509561137:3802697509561707 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697509563587:3802697509564187 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697509565957:3802697509566517 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697509575607:3802697509576207 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697509579187:3802697509579757 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697509539937:3802697509601797 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697509608607:3802697509609347 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 146 +3802697509610547:3802697509611187 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 146 +3802697509612077:3802697509612687 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 146 +3802697509613567:3802697509614497 1969:1973 hsa_signal_store_screlease(, 146) = void +3802697509618197:3802697509877899 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697509879839:3802697509880559 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697509884599:3802697509885269 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 147 +3802697509886069:3802697509886679 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 146 +3802697509887439:3802697509888249 1969:1973 hsa_signal_store_screlease(, 147) = void +3802697509889169:3802697510921807 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697510924497:3802697510925337 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697510926447:3802697510929047 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697510930087:3802697512176276 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697512180726:3802697512184936 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697512192167:3802697512193327 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697512191707:3802697512249267 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697519377870:3802697519378900 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697519428030:3802697519739743 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697519742463:3802697519743353 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697519744583:3802697519746643 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697519747793:3802697521095163 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697521110943:3802697521111663 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697521118683:3802697521119203 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697521121743:3802697521122443 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697521124343:3802697521124873 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697521126683:3802697521127203 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697521128773:3802697521129303 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697521138133:3802697521138743 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697521143043:3802697521143613 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697521104273:3802697521166353 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697521172593:3802697521173343 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 148 +3802697521174603:3802697521175233 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 148 +3802697521176333:3802697521176933 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 148 +3802697521177833:3802697521178763 1969:1973 hsa_signal_store_screlease(, 148) = void +3802697521185683:3802697521446895 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697521448895:3802697521449635 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697521450425:3802697521451045 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 149 +3802697521451835:3802697521452445 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 148 +3802697521453195:3802697521453995 1969:1973 hsa_signal_store_screlease(, 149) = void +3802697521454915:3802697522485583 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697522488283:3802697522489103 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697522490203:3802697522492803 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697522493843:3802697523744382 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697523749263:3802697523753643 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697523760773:3802697523761743 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697523760433:3802697523816593 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697530938036:3802697530939216 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697530987466:3802697531291869 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697531294609:3802697531295369 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697531296709:3802697531298929 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697531299889:3802697532638169 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697532644549:3802697532645759 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697532653969:3802697532654499 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697532663839:3802697532664369 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697532665709:3802697532666229 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697532667949:3802697532668559 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697532669779:3802697532670349 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697532680099:3802697532680699 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697532683579:3802697532684149 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697532645559:3802697532699549 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697532705779:3802697532706489 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 150 +3802697532707589:3802697532708219 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 150 +3802697532709119:3802697532709719 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 150 +3802697532714069:3802697532715029 1969:1973 hsa_signal_store_screlease(, 150) = void +3802697532718119:3802697532974071 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697532975881:3802697532976561 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697532977341:3802697532977931 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 151 +3802697532978731:3802697532979321 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 150 +3802697532980071:3802697532980871 1969:1973 hsa_signal_store_screlease(, 151) = void +3802697532981781:3802697534010418 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697534013108:3802697534013938 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697534015058:3802697534017648 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697534018648:3802697535376518 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697535381388:3802697535385838 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697535392878:3802697535394378 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697535392378:3802697535449489 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697542669812:3802697542671132 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697542718963:3802697543023815 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697543026525:3802697543027315 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697543028565:3802697543030605 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697543031775:3802697544372335 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697544386955:3802697544387585 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697544394765:3802697544395285 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697544397515:3802697544398215 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697544400105:3802697544400635 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697544402325:3802697544402855 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697544404235:3802697544404755 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697544414135:3802697544414745 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697544421285:3802697544421845 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697544380765:3802697544442166 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697544448716:3802697544449486 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 152 +3802697544454036:3802697544454696 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 152 +3802697544455606:3802697544456196 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 152 +3802697544457076:3802697544458026 1969:1973 hsa_signal_store_screlease(, 152) = void +3802697544461786:3802697544724868 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697544726818:3802697544727518 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697544728308:3802697544728928 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 153 +3802697544729708:3802697544730338 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 152 +3802697544731108:3802697544731918 1969:1973 hsa_signal_store_screlease(, 153) = void +3802697544732848:3802697545759605 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697545762295:3802697545763125 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697545764215:3802697545766885 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697545767965:3802697547019655 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697547024465:3802697547029025 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697547036835:3802697547038055 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697547036525:3802697547093245 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697554227278:3802697554228648 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697554275959:3802697554580881 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697554583601:3802697554584411 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697554585671:3802697554587721 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697554588671:3802697555937451 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697555944711:3802697555945411 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697555953541:3802697555954071 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697555956021:3802697555956551 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697555957991:3802697555958511 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697555967421:3802697555968371 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697555970261:3802697555970831 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697555979731:3802697555980341 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697555983171:3802697555983741 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697555947021:3802697556023162 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697556033392:3802697556034142 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 154 +3802697556035092:3802697556035732 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 154 +3802697556036642:3802697556037242 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 154 +3802697556038122:3802697556039062 1969:1973 hsa_signal_store_screlease(, 154) = void +3802697556042552:3802697556306694 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697556308664:3802697556309384 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697556310184:3802697556310824 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 155 +3802697556311654:3802697556312264 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 154 +3802697556313014:3802697556313814 1969:1973 hsa_signal_store_screlease(, 155) = void +3802697556314744:3802697557360741 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697557363441:3802697557364271 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697557365391:3802697557367982 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697557369002:3802697558621161 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697558626021:3802697558630491 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697558637891:3802697558639041 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697558637371:3802697558693721 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697565833414:3802697565834524 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697565884054:3802697566190727 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697566193447:3802697566194207 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697566195437:3802697566197497 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697566198637:3802697567545937 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697567561387:3802697567562097 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697567569077:3802697567569607 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697567571647:3802697567572527 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697567574987:3802697567575517 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697567577227:3802697567577757 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697567579237:3802697567579767 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697567588717:3802697567589327 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697567594737:3802697567595347 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697567555177:3802697567617037 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697567623937:3802697567624727 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 156 +3802697567625677:3802697567626347 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 156 +3802697567627247:3802697567627837 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 156 +3802697567628767:3802697567629717 1969:1973 hsa_signal_store_screlease(, 156) = void +3802697567633257:3802697567891079 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697567893129:3802697567893869 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697567894649:3802697567895289 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 157 +3802697567896099:3802697567896699 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 156 +3802697567897439:3802697567898249 1969:1973 hsa_signal_store_screlease(, 157) = void +3802697567899169:3802697568951027 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697568953697:3802697568954537 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697568955647:3802697568958247 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697568959297:3802697570211927 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697570216947:3802697570221397 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697570228527:3802697570229507 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697570228327:3802697570285627 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697577451160:3802697577452130 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697577500331:3802697577814923 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697577817663:3802697577818473 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697577819723:3802697577821773 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697577822733:3802697579168853 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697579176213:3802697579176913 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697579184983:3802697579185513 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697579187903:3802697579188433 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697579189923:3802697579190443 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697579200343:3802697579200873 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697579202183:3802697579202713 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697579214383:3802697579214993 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697579219014:3802697579219574 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697579178933:3802697579240094 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697579246934:3802697579247684 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 158 +3802697579248624:3802697579249264 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 158 +3802697579250164:3802697579250774 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 158 +3802697579251654:3802697579252694 1969:1973 hsa_signal_store_screlease(, 158) = void +3802697579256344:3802697579515766 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697579517796:3802697579518536 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697579519326:3802697579519966 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 159 +3802697579520746:3802697579521356 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 158 +3802697579522096:3802697579522896 1969:1973 hsa_signal_store_screlease(, 159) = void +3802697579523816:3802697580534883 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697580536203:3802697580536753 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697580537633:3802697580539653 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697580540463:3802697581793063 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697581798143:3802697581802693 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697581809163:3802697581810133 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697581808963:3802697581866793 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697588996145:3802697588997205 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697589045636:3802697589352448 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697589355138:3802697589355978 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697589357238:3802697589359288 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697589360448:3802697590709938 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697590717368:3802697590718158 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697590733978:3802697590734498 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697590736698:3802697590737768 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697590739428:3802697590739948 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697590743068:3802697590743598 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697590745188:3802697590745718 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697590754719:3802697590755249 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697590759009:3802697590759539 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697590718818:3802697590781439 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697590788019:3802697590788759 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 160 +3802697590789699:3802697590790329 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 160 +3802697590791229:3802697590791819 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 160 +3802697590792699:3802697590793679 1969:1973 hsa_signal_store_screlease(, 160) = void +3802697590797769:3802697591057531 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697591059581:3802697591060281 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697591061071:3802697591061681 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 161 +3802697591062461:3802697591063051 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 160 +3802697591063811:3802697591064601 1969:1973 hsa_signal_store_screlease(, 161) = void +3802697591065531:3802697592099599 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697592101949:3802697592102729 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697592103679:3802697592105959 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697592106859:3802697593359458 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697593364528:3802697593369038 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697593376848:3802697593378078 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697593376048:3802697593433098 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697600584622:3802697600585802 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697600618352:3802697600925794 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697600928494:3802697600929394 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697600930654:3802697600932694 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697600933634:3802697602275244 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697602282674:3802697602283384 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697602291784:3802697602292314 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697602303064:3802697602303584 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697602305394:3802697602306434 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697602309644:3802697602310164 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697602311764:3802697602312294 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697602321625:3802697602322155 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697602324945:3802697602325465 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697602285094:3802697602349735 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697602356405:3802697602357155 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 162 +3802697602358105:3802697602358735 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 162 +3802697602359625:3802697602360225 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 162 +3802697602361115:3802697602362105 1969:1973 hsa_signal_store_screlease(, 162) = void +3802697602365815:3802697602623847 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697602625887:3802697602626607 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697602627397:3802697602627987 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 163 +3802697602628767:3802697602629397 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 162 +3802697602630137:3802697602630937 1969:1973 hsa_signal_store_screlease(, 163) = void +3802697602631867:3802697603675865 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697603678565:3802697603679395 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697603680505:3802697603683105 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697603684105:3802697604938694 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697604943724:3802697604948204 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697604955734:3802697604956914 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697604955364:3802697605012095 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697612158858:3802697612159828 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697612192168:3802697612504040 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697612506720:3802697612507500 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697612508750:3802697612510750 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697612511910:3802697613860360 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697613867530:3802697613868230 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697613886810:3802697613887570 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697613889660:3802697613890180 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697613891460:3802697613891980 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697613893390:3802697613893920 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697613895380:3802697613895900 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697613904790:3802697613905320 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697613908230:3802697613908760 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697613869450:3802697613931241 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697613937881:3802697613938621 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 164 +3802697613939551:3802697613940171 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 164 +3802697613941061:3802697613941661 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 164 +3802697613942571:3802697613943521 1969:1973 hsa_signal_store_screlease(, 164) = void +3802697613947021:3802697614206513 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697614208403:3802697614209143 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697614209933:3802697614210563 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 165 +3802697614211363:3802697614211973 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 164 +3802697614212723:3802697614213523 1969:1973 hsa_signal_store_screlease(, 165) = void +3802697614214433:3802697615253210 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697615255890:3802697615256730 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697615257820:3802697615260400 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697615261410:3802697616504709 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697616508139:3802697616512189 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697616521019:3802697616521809 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697616518049:3802697616575010 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697623711233:3802697623712333 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697623767743:3802697624072866 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697624075566:3802697624076396 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697624077636:3802697624079686 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697624084196:3802697625428946 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697625436226:3802697625436936 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697625445476:3802697625446006 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697625448026:3802697625448546 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697625449936:3802697625450456 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697625460546:3802697625461076 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697625462416:3802697625462946 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697625472206:3802697625472806 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697625475876:3802697625476446 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697625438496:3802697625499796 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697625506616:3802697625507386 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 166 +3802697625508666:3802697625509296 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 166 +3802697625510206:3802697625510806 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 166 +3802697625511686:3802697625512666 1969:1973 hsa_signal_store_screlease(, 166) = void +3802697625516266:3802697625776428 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697625778498:3802697625779188 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697625779988:3802697625780618 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 167 +3802697625781408:3802697625782048 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 166 +3802697625782788:3802697625783588 1969:1973 hsa_signal_store_screlease(, 167) = void +3802697625784518:3802697626828096 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697626830786:3802697626831626 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697626832716:3802697626835296 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697626836306:3802697628087395 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697628091895:3802697628096035 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697628102026:3802697628103186 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697628101566:3802697628159156 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697635283369:3802697635284399 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697635332589:3802697635643552 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697635646272:3802697635647062 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697635651252:3802697635653292 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697635654192:3802697637003692 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697637011642:3802697637012342 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697637028022:3802697637028552 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697637031372:3802697637031902 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697637033582:3802697637034102 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697637035892:3802697637036412 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697637037682:3802697637038202 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697637047552:3802697637048152 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697637051152:3802697637051712 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697637013132:3802697637074852 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697637081242:3802697637081992 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 168 +3802697637082942:3802697637083772 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 168 +3802697637084682:3802697637085282 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 168 +3802697637086162:3802697637087122 1969:1973 hsa_signal_store_screlease(, 168) = void +3802697637090672:3802697637351814 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697637353814:3802697637354544 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697637355334:3802697637355964 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 169 +3802697637356774:3802697637357364 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 168 +3802697637358114:3802697637358914 1969:1973 hsa_signal_store_screlease(, 169) = void +3802697637359844:3802697638396162 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697638398852:3802697638399682 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697638400792:3802697638403432 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697638404492:3802697639655001 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697639659871:3802697639664312 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697639674802:3802697639675592 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697639672362:3802697639729332 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697646859844:3802697646860834 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697646917795:3802697647224537 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697647227397:3802697647228217 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697647229187:3802697647231247 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697647232157:3802697648571067 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697648577047:3802697648578157 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697648591527:3802697648592067 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697648594037:3802697648594557 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697648595797:3802697648596317 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697648597707:3802697648598227 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697648599827:3802697648600357 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697648612967:3802697648613577 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697648616417:3802697648616987 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697648577867:3802697648632237 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697648638587:3802697648639297 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 170 +3802697648640187:3802697648640817 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 170 +3802697648641727:3802697648642337 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 170 +3802697648643217:3802697648644148 1969:1973 hsa_signal_store_screlease(, 170) = void +3802697648647088:3802697648900359 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697648902159:3802697648902819 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697648903609:3802697648904229 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 171 +3802697648905029:3802697648905619 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 170 +3802697648906369:3802697648907159 1969:1973 hsa_signal_store_screlease(, 171) = void +3802697648908049:3802697649978007 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697649980697:3802697649981517 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697649982617:3802697649985237 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697649986297:3802697651236967 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697651241857:3802697651246327 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697651253287:3802697651254447 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697651252797:3802697651309217 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697658432450:3802697658433520 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697658482611:3802697658793323 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697658796073:3802697658796833 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697658798033:3802697658800063 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697658801173:3802697660293084 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697660300434:3802697660301714 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697660316764:3802697660317544 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697660320404:3802697660320994 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697660322784:3802697660323374 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697660325214:3802697660325814 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697660327394:3802697660327994 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697660336974:3802697660337664 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697660340845:3802697660341485 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697660301334:3802697660362085 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697660368525:3802697660369305 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 172 +3802697660370235:3802697660370865 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 172 +3802697660371755:3802697660372355 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 172 +3802697660373245:3802697660374285 1969:1973 hsa_signal_store_screlease(, 172) = void +3802697660377815:3802697660638907 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697660640867:3802697660641587 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697660642377:3802697660643017 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 173 +3802697660643797:3802697660644407 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 172 +3802697660645177:3802697660645967 1969:1973 hsa_signal_store_screlease(, 173) = void +3802697660646917:3802697661679574 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697661682264:3802697661683094 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697661684215:3802697661686805 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697661687795:3802697662938674 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697662943524:3802697662947964 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697662961404:3802697662962374 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697662959344:3802697663015884 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697670193027:3802697670194517 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697670243348:3802697670548870 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697670551580:3802697670552400 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697670553640:3802697670555660 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697670556600:3802697671904540 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697671912050:3802697671912750 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697671921190:3802697671921710 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697671923890:3802697671924410 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697671925720:3802697671926240 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697671927910:3802697671928430 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697671929670:3802697671930200 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697671948120:3802697671948720 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697671953260:3802697671953820 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697671914850:3802697671976960 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697671983870:3802697671984640 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 174 +3802697671985920:3802697671986560 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 174 +3802697671987460:3802697671988060 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 174 +3802697671989180:3802697671990110 1969:1973 hsa_signal_store_screlease(, 174) = void +3802697671993960:3802697672265012 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697672267242:3802697672267992 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697672268782:3802697672269432 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 175 +3802697672270242:3802697672270822 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 174 +3802697672271602:3802697672272402 1969:1973 hsa_signal_store_screlease(, 175) = void +3802697672273292:3802697673293600 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697673296300:3802697673297130 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697673298240:3802697673300920 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697673301990:3802697674554039 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697674563459:3802697674567880 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697674574390:3802697674575690 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697674573510:3802697674630950 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697681767643:3802697681768753 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697681823414:3802697682128386 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697682130996:3802697682131896 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697682133116:3802697682135176 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697682136356:3802697683484406 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697683491696:3802697683492396 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697683500406:3802697683500936 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697683513506:3802697683514036 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697683515756:3802697683516276 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697683518006:3802697683518526 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697683519936:3802697683520456 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697683529056:3802697683529656 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697683532546:3802697683533116 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697683493756:3802697683555676 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697683562296:3802697683563036 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 176 +3802697683564316:3802697683564946 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 176 +3802697683566026:3802697683566626 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 176 +3802697683567746:3802697683568676 1969:1973 hsa_signal_store_screlease(, 176) = void +3802697683572217:3802697683831608 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697683833518:3802697683834208 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697683834998:3802697683835638 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 177 +3802697683836408:3802697683837028 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 176 +3802697683837778:3802697683838578 1969:1973 hsa_signal_store_screlease(, 177) = void +3802697683839498:3802697684881486 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697684884176:3802697684885006 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697684890576:3802697684893406 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697684894536:3802697686146686 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697686151736:3802697686156166 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697686166326:3802697686167116 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697686163386:3802697686221776 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697693381489:3802697693382609 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697693432130:3802697693746182 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697693749052:3802697693749852 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697693751132:3802697693753172 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697693754142:3802697695103972 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697695111242:3802697695111952 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697695119752:3802697695120282 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697695122622:3802697695123142 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697695124382:3802697695124912 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697695126792:3802697695127312 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697695128552:3802697695129082 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697695144983:3802697695145513 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697695148113:3802697695148643 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697695113642:3802697695174793 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697695181563:3802697695182313 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 178 +3802697695183573:3802697695184213 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 178 +3802697695185123:3802697695185723 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 178 +3802697695186613:3802697695187553 1969:1973 hsa_signal_store_screlease(, 178) = void +3802697695214703:3802697695478285 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697695480305:3802697695481035 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697695481815:3802697695482465 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 179 +3802697695483265:3802697695483875 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 178 +3802697695484645:3802697695485445 1969:1973 hsa_signal_store_screlease(, 179) = void +3802697695489665:3802697696474172 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697696475412:3802697696475962 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697696476862:3802697696478862 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697696479662:3802697697732051 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697697737072:3802697697741512 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697697749432:3802697697750652 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697697749132:3802697697806522 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697704966425:3802697704967715 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697705017165:3802697705323087 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697705325858:3802697705326628 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697705327878:3802697705329888 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697705331048:3802697706657897 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697706665717:3802697706666507 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697706676328:3802697706676928 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697706686208:3802697706686818 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697706688628:3802697706689228 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697706691108:3802697706691698 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697706693368:3802697706693968 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697706704368:3802697706705058 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697706708288:3802697706708938 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697706667597:3802697706728928 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697706735778:3802697706736528 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 180 +3802697706737728:3802697706738368 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 180 +3802697706739468:3802697706740078 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 180 +3802697706740958:3802697706741888 1969:1973 hsa_signal_store_screlease(, 180) = void +3802697706745628:3802697707004890 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697707006780:3802697707007460 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697707008260:3802697707008890 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 181 +3802697707009690:3802697707010290 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 180 +3802697707014880:3802697707015690 1969:1973 hsa_signal_store_screlease(, 181) = void +3802697707016640:3802697708038128 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697708041038:3802697708041928 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697708043118:3802697708045418 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697708046278:3802697709300207 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697709305217:3802697709309697 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697709318587:3802697709319817 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697709317157:3802697709374378 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697716515841:3802697716517001 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697716555191:3802697716856983 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697716859683:3802697716860463 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697716861743:3802697716863803 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697716864743:3802697718212133 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697718219843:3802697718220543 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697718229294:3802697718229824 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697718232314:3802697718232834 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697718234164:3802697718234694 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697718236564:3802697718237084 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697718238574:3802697718239094 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697718258164:3802697718258774 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697718261754:3802697718262324 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697718222863:3802697718284584 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697718291634:3802697718292394 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 182 +3802697718293594:3802697718294244 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 182 +3802697718295154:3802697718295754 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 182 +3802697718296854:3802697718297814 1969:1973 hsa_signal_store_screlease(, 182) = void +3802697718301524:3802697718562106 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697718564266:3802697718564986 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697718569416:3802697718570066 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 183 +3802697718570856:3802697718571456 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 182 +3802697718572206:3802697718573016 1969:1973 hsa_signal_store_screlease(, 183) = void +3802697718573936:3802697719613874 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697719616574:3802697719617404 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697719618504:3802697719621074 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697719622064:3802697720883463 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697720888803:3802697720892923 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697720899173:3802697720900363 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697720900153:3802697720957794 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697728105136:3802697728106066 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697728140976:3802697728447399 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697728450159:3802697728450929 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697728452169:3802697728454199 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697728455339:3802697729816089 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697729823619:3802697729824319 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697729833019:3802697729833539 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697729843609:3802697729844319 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697729846449:3802697729846969 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697729848769:3802697729849369 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697729851129:3802697729851689 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697729861099:3802697729861709 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697729864729:3802697729865299 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697729826129:3802697729887379 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697729894399:3802697729895149 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 184 +3802697729896319:3802697729896949 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 184 +3802697729898059:3802697729898649 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 184 +3802697729899760:3802697729900710 1969:1973 hsa_signal_store_screlease(, 184) = void +3802697729904560:3802697730163821 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697730168892:3802697730169592 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697730170382:3802697730171002 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 185 +3802697730171782:3802697730172392 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 184 +3802697730173142:3802697730173942 1969:1973 hsa_signal_store_screlease(, 185) = void +3802697730174882:3802697731208029 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697731210749:3802697731211579 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697731212689:3802697731215299 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697731216349:3802697732460319 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697732463849:3802697732467849 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697732474399:3802697732475629 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697732475429:3802697732533679 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697739658272:3802697739659282 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697739715513:3802697740020505 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697740023245:3802697740024015 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697740025195:3802697740027235 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697740028185:3802697741377705 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697741393455:3802697741394155 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697741401795:3802697741402325 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697741404235:3802697741404755 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697741406805:3802697741407325 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697741408985:3802697741409505 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697741410995:3802697741411525 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697741422505:3802697741423105 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697741426065:3802697741426635 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697741387965:3802697741449925 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697741456895:3802697741457655 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 186 +3802697741458935:3802697741459575 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 186 +3802697741460485:3802697741461086 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 186 +3802697741465486:3802697741466476 1969:1973 hsa_signal_store_screlease(, 186) = void +3802697741470166:3802697741730738 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697741732738:3802697741733438 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697741734228:3802697741734858 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 187 +3802697741735678:3802697741736298 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 186 +3802697741737168:3802697741737978 1969:1973 hsa_signal_store_screlease(, 187) = void +3802697741738898:3802697742781725 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697742784395:3802697742785225 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697742786345:3802697742788935 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697742789925:3802697744043035 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697744047525:3802697744051785 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697744058355:3802697744059885 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697744059225:3802697744116015 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697751249028:3802697751250148 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697751298979:3802697751604151 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697751606861:3802697751607641 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697751608891:3802697751610941 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697751612111:3802697752961981 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697752969731:3802697752970431 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697752978941:3802697752979471 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697752989851:3802697752990561 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697752992151:3802697752992681 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697752994591:3802697752995191 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697752996721:3802697752997281 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697753006881:3802697753007491 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697753010461:3802697753011031 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697752972061:3802697753033161 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697753040091:3802697753040841 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 188 +3802697753041991:3802697753042621 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 188 +3802697753046941:3802697753047571 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 188 +3802697753048461:3802697753049411 1969:1973 hsa_signal_store_screlease(, 188) = void +3802697753053292:3802697753314113 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697753316143:3802697753316873 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697753317663:3802697753318293 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 189 +3802697753319103:3802697753319693 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 188 +3802697753320463:3802697753321273 1969:1973 hsa_signal_store_screlease(, 189) = void +3802697753322203:3802697754365491 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697754368181:3802697754369011 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697754370131:3802697754372801 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697754373871:3802697755624430 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697755629310:3802697755633730 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697755640230:3802697755641530 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697755641330:3802697755697571 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697763023905:3802697763025075 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697763076535:3802697763382148 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697763384888:3802697763385648 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697763386908:3802697763389088 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697763390028:3802697764738158 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697764755008:3802697764755718 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697764762978:3802697764763498 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697764765688:3802697764766398 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697764768608:3802697764769138 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697764770748:3802697764771268 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697764772418:3802697764772938 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697764784138:3802697764784748 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697764793198:3802697764793768 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697764749728:3802697764811458 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697764821898:3802697764822658 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 190 +3802697764823628:3802697764824278 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 190 +3802697764825178:3802697764825788 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 190 +3802697764826668:3802697764827609 1969:1973 hsa_signal_store_screlease(, 190) = void +3802697764831529:3802697765227431 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697765229441:3802697765230161 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697765230952:3802697765231582 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 191 +3802697765232402:3802697765232982 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 190 +3802697765233752:3802697765234542 1969:1973 hsa_signal_store_screlease(, 191) = void +3802697765235482:3802697766131958 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697766134658:3802697766135468 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697766136568:3802697766139158 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697766140168:3802697767390788 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697767395648:3802697767400348 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697767407448:3802697767408618 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697767406408:3802697767463078 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697774592171:3802697774593281 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697774642652:3802697774948964 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697774951704:3802697774952524 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697774953764:3802697774955794 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697774956944:3802697776298234 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697776305554:3802697776306094 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697776315374:3802697776315904 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697776326874:3802697776327474 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697776329194:3802697776329764 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697776331554:3802697776332164 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697776333694:3802697776334254 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697776343094:3802697776343694 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697776346654:3802697776347214 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697776308334:3802697776369534 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697776376684:3802697776377464 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 192 +3802697776378424:3802697776379054 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 192 +3802697776379974:3802697776380564 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 192 +3802697776381584:3802697776382504 1969:1973 hsa_signal_store_screlease(, 192) = void +3802697776386124:3802697776647606 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697776649516:3802697776650266 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697776651066:3802697776651706 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 193 +3802697776652516:3802697776653126 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 192 +3802697776653896:3802697776654696 1969:1973 hsa_signal_store_screlease(, 193) = void +3802697776655626:3802697777700574 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697777703274:3802697777704114 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697777705224:3802697777707954 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697777709034:3802697778960344 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697778965234:3802697778969614 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697778976444:3802697778977224 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697778977814:3802697779033974 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697786163416:3802697786164766 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697786215647:3802697786519829 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697786522659:3802697786523429 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697786524659:3802697786526679 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697786527629:3802697787876019 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697787891589:3802697787892289 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697787899269:3802697787899799 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697787901649:3802697787902179 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697787904179:3802697787905249 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697787906829:3802697787907359 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697787908809:3802697787909339 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697787921859:3802697787922469 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697787927430:3802697787928030 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697787886389:3802697787948540 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697787955630:3802697787956390 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 194 +3802697787957330:3802697787957950 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 194 +3802697787958850:3802697787959440 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 194 +3802697787960330:3802697787961280 1969:1973 hsa_signal_store_screlease(, 194) = void +3802697787965170:3802697788237342 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697788239352:3802697788240082 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697788240872:3802697788241512 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 195 +3802697788242322:3802697788242922 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 194 +3802697788243672:3802697788244472 1969:1973 hsa_signal_store_screlease(, 195) = void +3802697788245392:3802697789270130 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697789272840:3802697789273710 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697789274910:3802697789277710 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697789278770:3802697790533019 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697790538079:3802697790542839 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697790550109:3802697790551629 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697790550959:3802697790607869 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697797772363:3802697797773563 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697797831983:3802697798143986 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697798146686:3802697798147566 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697798148836:3802697798150876 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697798152046:3802697799501376 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697799508546:3802697799509256 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697799517826:3802697799518356 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697799520336:3802697799520856 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697799522516:3802697799523046 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697799533456:3802697799534066 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697799535626:3802697799536236 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697799545626:3802697799546236 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697799550396:3802697799550966 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697799510816:3802697799572836 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697799579936:3802697799580696 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 196 +3802697799581636:3802697799582276 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 196 +3802697799583166:3802697799583756 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 196 +3802697799584646:3802697799585576 1969:1973 hsa_signal_store_screlease(, 196) = void +3802697799589286:3802697799848088 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697799850038:3802697799850728 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697799851518:3802697799852138 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 197 +3802697799852938:3802697799853548 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 196 +3802697799854308:3802697799855098 1969:1973 hsa_signal_store_screlease(, 197) = void +3802697799856028:3802697800901316 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697800903976:3802697800904806 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697800905906:3802697800908496 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697800909486:3802697802162065 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697802167055:3802697802171495 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697802178016:3802697802179236 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697802178956:3802697802235986 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697809391539:3802697809392779 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697809443109:3802697809755272 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c84bff000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697809758092:3802697809758902 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697809760152:3802697809762212 1969:1973 hsa_amd_memory_async_copy(0x7f5bf6800000, , 0x7f5bee000010, , , , 0, ) = 0 +3802697809763172:3802697811112301 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697811128011:3802697811128721 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697811136372:3802697811136902 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697811139092:3802697811139792 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba70) = 0 +3802697811143922:3802697811144452 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697811145862:3802697811146382 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba50) = 0 +3802697811147882:3802697811148402 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697811158672:3802697811159202 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba60) = 0 +3802697811165792:3802697811166322 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697811122701:3802697811184352 1969:1973 hsa_amd_memory_unlock(0x7f5c84bff000) = 0 +3802697811191512:3802697811192262 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 198 +3802697811193212:3802697811193842 1969:1973 hsa_queue_load_read_index_relaxed(0x7f5d952ec000) = 198 +3802697811194762:3802697811195362 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 198 +3802697811196242:3802697811197172 1969:1973 hsa_signal_store_screlease(, 198) = void +3802697811200972:3802697811459074 1969:1973 hsa_amd_memory_lock_to_pool(0x7f5c847fe000, , 0, 0, , , 0x7f5bf00a8ff8) = 0 +3802697811461104:3802697811461824 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697811462614:3802697811463244 1969:1973 hsa_queue_add_write_index_screlease(0x7f5d952ec000, ) = 199 +3802697811464034:3802697811464624 1969:1973 hsa_queue_load_read_index_scacquire(0x7f5d952ec000) = 198 +3802697811465364:3802697811466164 1969:1973 hsa_signal_store_screlease(, 199) = void +3802697811467094:3802697812503422 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697812504622:3802697812505162 1969:1973 hsa_signal_store_relaxed(, 1) = void +3802697812506042:3802697812508062 1969:1973 hsa_amd_memory_async_copy(0x7f5bee000010, , 0x7f5bf6200000, , , , 0, ) = 0 +3802697812508872:3802697813763341 1969:1973 hsa_signal_wait_scacquire(, 0, 0, , 0) = 0 +3802697813768391:3802697813772841 1969:1973 hsa_amd_profiling_get_dispatch_time(, , 0x7f5d951deb30) = 0 +3802697813779951:3802697813781381 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697813780691:3802697813837191 1969:1973 hsa_amd_memory_unlock(0x7f5c847fe000) = 0 +3802697821036955:3802697821038245 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697821055615:3802697821124106 1969:1969 hsa_amd_memory_pool_free(0x7f5bf6800000) = 0 +3802697821128046:3802697821128576 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697821130356:3802697821130886 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802697821132606:3802697821159136 1969:1969 hsa_amd_memory_pool_free(0x7f5bf6200000) = 0 +3802697821160676:3802697821161216 1969:1969 hsa_system_get_info(2, 0x7ffc1fedba90) = 0 +3802696640066056 1969:1969 0:"before hipLaunchKernel" +3802696640077916 1969:1969 1:"hipLaunchKernel" +3802696640676490 1969:1969 0:"after hipLaunchKernel" +3802696640677170 1969:1969 1:"hipMemcpy" +3802696644087455 1969:1969 2:"" +3802696644088025 1969:1969 2:"" +3802696654346991 1969:1969 0:"before hipLaunchKernel" +3802696654348491 1969:1969 1:"hipLaunchKernel" +3802696654378152 1969:1969 0:"after hipLaunchKernel" +3802696654378832 1969:1969 1:"hipMemcpy" +3802696657493335 1969:1969 2:"" +3802696657493845 1969:1969 2:"" +3802696667060606 1969:1969 0:"before hipLaunchKernel" +3802696667061916 1969:1969 1:"hipLaunchKernel" +3802696667082066 1969:1969 0:"after hipLaunchKernel" +3802696667082686 1969:1969 1:"hipMemcpy" +3802696669838286 1969:1969 2:"" +3802696669838766 1969:1969 2:"" +3802696679130065 1969:1969 0:"before hipLaunchKernel" +3802696679131545 1969:1969 1:"hipLaunchKernel" +3802696679157575 1969:1969 0:"after hipLaunchKernel" +3802696679158185 1969:1969 1:"hipMemcpy" +3802696681870935 1969:1969 2:"" +3802696681871495 1969:1969 2:"" +3802696691165074 1969:1969 0:"before hipLaunchKernel" +3802696691167014 1969:1969 1:"hipLaunchKernel" +3802696691193095 1969:1969 0:"after hipLaunchKernel" +3802696691193715 1969:1969 1:"hipMemcpy" +3802696693882825 1969:1969 2:"" +3802696693883305 1969:1969 2:"" +3802696703201643 1969:1969 0:"before hipLaunchKernel" +3802696703203163 1969:1969 1:"hipLaunchKernel" +3802696703228303 1969:1969 0:"after hipLaunchKernel" +3802696703228933 1969:1969 1:"hipMemcpy" +3802696705942833 1969:1969 2:"" +3802696705943353 1969:1969 2:"" +3802696715266893 1969:1969 0:"before hipLaunchKernel" +3802696715268963 1969:1969 1:"hipLaunchKernel" +3802696715297093 1969:1969 0:"after hipLaunchKernel" +3802696715297723 1969:1969 1:"hipMemcpy" +3802696718003833 1969:1969 2:"" +3802696718004313 1969:1969 2:"" +3802696727345372 1969:1969 0:"before hipLaunchKernel" +3802696727346782 1969:1969 1:"hipLaunchKernel" +3802696727370332 1969:1969 0:"after hipLaunchKernel" +3802696727370952 1969:1969 1:"hipMemcpy" +3802696730083292 1969:1969 2:"" +3802696730083822 1969:1969 2:"" +3802696739378991 1969:1969 0:"before hipLaunchKernel" +3802696739380451 1969:1969 1:"hipLaunchKernel" +3802696739406892 1969:1969 0:"after hipLaunchKernel" +3802696739407552 1969:1969 1:"hipMemcpy" +3802696742439074 1969:1969 2:"" +3802696742439614 1969:1969 2:"" +3802696751656322 1969:1969 0:"before hipLaunchKernel" +3802696751657692 1969:1969 1:"hipLaunchKernel" +3802696751679432 1969:1969 0:"after hipLaunchKernel" +3802696751680052 1969:1969 1:"hipMemcpy" +3802696754500893 1969:1969 2:"" +3802696754501423 1969:1969 2:"" +3802696763883853 1969:1969 0:"before hipLaunchKernel" +3802696763885333 1969:1969 1:"hipLaunchKernel" +3802696763908683 1969:1969 0:"after hipLaunchKernel" +3802696763909313 1969:1969 1:"hipMemcpy" +3802696766873945 1969:1969 2:"" +3802696766874495 1969:1969 2:"" +3802696776393096 1969:1969 0:"before hipLaunchKernel" +3802696776394636 1969:1969 1:"hipLaunchKernel" +3802696776416376 1969:1969 0:"after hipLaunchKernel" +3802696776417006 1969:1969 1:"hipMemcpy" +3802696779434308 1969:1969 2:"" +3802696779434818 1969:1969 2:"" +3802696788885898 1969:1969 0:"before hipLaunchKernel" +3802696788887888 1969:1969 1:"hipLaunchKernel" +3802696788911638 1969:1969 0:"after hipLaunchKernel" +3802696788912248 1969:1969 1:"hipMemcpy" +3802696791889740 1969:1969 2:"" +3802696791890230 1969:1969 2:"" +3802696801361901 1969:1969 0:"before hipLaunchKernel" +3802696801363331 1969:1969 1:"hipLaunchKernel" +3802696801384511 1969:1969 0:"after hipLaunchKernel" +3802696801385121 1969:1969 1:"hipMemcpy" +3802696804141361 1969:1969 2:"" +3802696804141901 1969:1969 2:"" +3802696813507360 1969:1969 0:"before hipLaunchKernel" +3802696813508740 1969:1969 1:"hipLaunchKernel" +3802696813534251 1969:1969 0:"after hipLaunchKernel" +3802696813534881 1969:1969 1:"hipMemcpy" +3802696816319721 1969:1969 2:"" +3802696816320201 1969:1969 2:"" +3802696825691711 1969:1969 0:"before hipLaunchKernel" +3802696825693311 1969:1969 1:"hipLaunchKernel" +3802696825718991 1969:1969 0:"after hipLaunchKernel" +3802696825719661 1969:1969 1:"hipMemcpy" +3802696828357681 1969:1969 2:"" +3802696828358201 1969:1969 2:"" +3802696837718200 1969:1969 0:"before hipLaunchKernel" +3802696837719580 1969:1969 1:"hipLaunchKernel" +3802696837745350 1969:1969 0:"after hipLaunchKernel" +3802696837746030 1969:1969 1:"hipMemcpy" +3802696840672302 1969:1969 2:"" +3802696840672822 1969:1969 2:"" +3802696850125582 1969:1969 0:"before hipLaunchKernel" +3802696850130022 1969:1969 1:"hipLaunchKernel" +3802696850151392 1969:1969 0:"after hipLaunchKernel" +3802696850152022 1969:1969 1:"hipMemcpy" +3802696852908273 1969:1969 2:"" +3802696852908813 1969:1969 2:"" +3802696862412563 1969:1969 0:"before hipLaunchKernel" +3802696862414233 1969:1969 1:"hipLaunchKernel" +3802696862440343 1969:1969 0:"after hipLaunchKernel" +3802696862440963 1969:1969 1:"hipMemcpy" +3802696865527256 1969:1969 2:"" +3802696865527796 1969:1969 2:"" +3802696874778025 1969:1969 0:"before hipLaunchKernel" +3802696874779245 1969:1969 1:"hipLaunchKernel" +3802696874799345 1969:1969 0:"after hipLaunchKernel" +3802696874799985 1969:1969 1:"hipMemcpy" +3802696877703346 1969:1969 2:"" +3802696877703896 1969:1969 2:"" +3802696887395108 1969:1969 0:"before hipLaunchKernel" +3802696887396638 1969:1969 1:"hipLaunchKernel" +3802696887421338 1969:1969 0:"after hipLaunchKernel" +3802696887422048 1969:1969 1:"hipMemcpy" +3802696890493641 1969:1969 2:"" +3802696890494221 1969:1969 2:"" +3802696899702109 1969:1969 0:"before hipLaunchKernel" +3802696899703629 1969:1969 1:"hipLaunchKernel" +3802696899722759 1969:1969 0:"after hipLaunchKernel" +3802696899723479 1969:1969 1:"hipMemcpy" +3802696902527070 1969:1969 2:"" +3802696902527570 1969:1969 2:"" +3802696911746708 1969:1969 0:"before hipLaunchKernel" +3802696911748218 1969:1969 1:"hipLaunchKernel" +3802696911774138 1969:1969 0:"after hipLaunchKernel" +3802696911774778 1969:1969 1:"hipMemcpy" +3802696914826631 1969:1969 2:"" +3802696914827261 1969:1969 2:"" +3802696924279691 1969:1969 0:"before hipLaunchKernel" +3802696924281441 1969:1969 1:"hipLaunchKernel" +3802696924305491 1969:1969 0:"after hipLaunchKernel" +3802696924306121 1969:1969 1:"hipMemcpy" +3802696927051682 1969:1969 2:"" +3802696927052152 1969:1969 2:"" +3802696936537452 1969:1969 0:"before hipLaunchKernel" +3802696936538702 1969:1969 1:"hipLaunchKernel" +3802696936565432 1969:1969 0:"after hipLaunchKernel" +3802696936566052 1969:1969 1:"hipMemcpy" +3802696939434343 1969:1969 2:"" +3802696939434823 1969:1969 2:"" +3802696948890553 1969:1969 0:"before hipLaunchKernel" +3802696948891883 1969:1969 1:"hipLaunchKernel" +3802696948918554 1969:1969 0:"after hipLaunchKernel" +3802696948919194 1969:1969 1:"hipMemcpy" +3802696951899716 1969:1969 2:"" +3802696951900166 1969:1969 2:"" +3802696961380516 1969:1969 0:"before hipLaunchKernel" +3802696961381766 1969:1969 1:"hipLaunchKernel" +3802696961409276 1969:1969 0:"after hipLaunchKernel" +3802696961409926 1969:1969 1:"hipMemcpy" +3802696964032815 1969:1969 2:"" +3802696964033335 1969:1969 2:"" +3802696973434905 1969:1969 0:"before hipLaunchKernel" +3802696973436325 1969:1969 1:"hipLaunchKernel" +3802696973458045 1969:1969 0:"after hipLaunchKernel" +3802696973458655 1969:1969 1:"hipMemcpy" +3802696976521798 1969:1969 2:"" +3802696976522348 1969:1969 2:"" +3802696985873598 1969:1969 0:"before hipLaunchKernel" +3802696985874758 1969:1969 1:"hipLaunchKernel" +3802696985895938 1969:1969 0:"after hipLaunchKernel" +3802696985896588 1969:1969 1:"hipMemcpy" +3802696988794189 1969:1969 2:"" +3802696988794719 1969:1969 2:"" +3802696998242289 1969:1969 0:"before hipLaunchKernel" +3802696998243779 1969:1969 1:"hipLaunchKernel" +3802696998266029 1969:1969 0:"after hipLaunchKernel" +3802696998266649 1969:1969 1:"hipMemcpy" +3802697001033170 1969:1969 2:"" +3802697001033700 1969:1969 2:"" +3802697010360879 1969:1969 0:"before hipLaunchKernel" +3802697010362259 1969:1969 1:"hipLaunchKernel" +3802697010384079 1969:1969 0:"after hipLaunchKernel" +3802697010384739 1969:1969 1:"hipMemcpy" +3802697013168920 1969:1969 2:"" +3802697013169420 1969:1969 2:"" +3802697022162466 1969:1969 0:"before hipLaunchKernel" +3802697022164376 1969:1969 1:"hipLaunchKernel" +3802697022201056 1969:1969 0:"after hipLaunchKernel" +3802697022201596 1969:1969 1:"hipMemcpy" +3802697024920857 1969:1969 2:"" +3802697024921387 1969:1969 2:"" +3802697033887383 1969:1969 0:"before hipLaunchKernel" +3802697033888613 1969:1969 1:"hipLaunchKernel" +3802697033912823 1969:1969 0:"after hipLaunchKernel" +3802697033913393 1969:1969 1:"hipMemcpy" +3802697036532153 1969:1969 2:"" +3802697036532563 1969:1969 2:"" +3802697045442128 1969:1969 0:"before hipLaunchKernel" +3802697045443818 1969:1969 1:"hipLaunchKernel" +3802697045474649 1969:1969 0:"after hipLaunchKernel" +3802697045475199 1969:1969 1:"hipMemcpy" +3802697048102428 1969:1969 2:"" +3802697048102858 1969:1969 2:"" +3802697057021814 1969:1969 0:"before hipLaunchKernel" +3802697057024795 1969:1969 1:"hipLaunchKernel" +3802697057049555 1969:1969 0:"after hipLaunchKernel" +3802697057050135 1969:1969 1:"hipMemcpy" +3802697059682984 1969:1969 2:"" +3802697059683414 1969:1969 2:"" +3802697068571110 1969:1969 0:"before hipLaunchKernel" +3802697068573090 1969:1969 1:"hipLaunchKernel" +3802697068604261 1969:1969 0:"after hipLaunchKernel" +3802697068604861 1969:1969 1:"hipMemcpy" +3802697071234370 1969:1969 2:"" +3802697071234800 1969:1969 2:"" +3802697080141516 1969:1969 0:"before hipLaunchKernel" +3802697080143136 1969:1969 1:"hipLaunchKernel" +3802697080168276 1969:1969 0:"after hipLaunchKernel" +3802697080168856 1969:1969 1:"hipMemcpy" +3802697082794695 1969:1969 2:"" +3802697082795105 1969:1969 2:"" +3802697091706802 1969:1969 0:"before hipLaunchKernel" +3802697091708392 1969:1969 1:"hipLaunchKernel" +3802697091738112 1969:1969 0:"after hipLaunchKernel" +3802697091738672 1969:1969 1:"hipMemcpy" +3802697094374172 1969:1969 2:"" +3802697094374592 1969:1969 2:"" +3802697103281737 1969:1969 0:"before hipLaunchKernel" +3802697103283037 1969:1969 1:"hipLaunchKernel" +3802697103308387 1969:1969 0:"after hipLaunchKernel" +3802697103308957 1969:1969 1:"hipMemcpy" +3802697105936667 1969:1969 2:"" +3802697105937097 1969:1969 2:"" +3802697114833363 1969:1969 0:"before hipLaunchKernel" +3802697114835383 1969:1969 1:"hipLaunchKernel" +3802697114873653 1969:1969 0:"after hipLaunchKernel" +3802697114877913 1969:1969 1:"hipMemcpy" +3802697117492283 1969:1969 2:"" +3802697117492713 1969:1969 2:"" +3802697126392608 1969:1969 0:"before hipLaunchKernel" +3802697126393748 1969:1969 1:"hipLaunchKernel" +3802697126417308 1969:1969 0:"after hipLaunchKernel" +3802697126417878 1969:1969 1:"hipMemcpy" +3802697129075958 1969:1969 2:"" +3802697129076388 1969:1969 2:"" +3802697137982094 1969:1969 0:"before hipLaunchKernel" +3802697137983704 1969:1969 1:"hipLaunchKernel" +3802697138014205 1969:1969 0:"after hipLaunchKernel" +3802697138014765 1969:1969 1:"hipMemcpy" +3802697140635234 1969:1969 2:"" +3802697140635644 1969:1969 2:"" +3802697149551850 1969:1969 0:"before hipLaunchKernel" +3802697149553340 1969:1969 1:"hipLaunchKernel" +3802697149578070 1969:1969 0:"after hipLaunchKernel" +3802697149578630 1969:1969 1:"hipMemcpy" +3802697152210479 1969:1969 2:"" +3802697152210889 1969:1969 2:"" +3802697161113106 1969:1969 0:"before hipLaunchKernel" +3802697161114836 1969:1969 1:"hipLaunchKernel" +3802697161148336 1969:1969 0:"after hipLaunchKernel" +3802697161148886 1969:1969 1:"hipMemcpy" +3802697163783495 1969:1969 2:"" +3802697163783985 1969:1969 2:"" +3802697172670492 1969:1969 0:"before hipLaunchKernel" +3802697172671942 1969:1969 1:"hipLaunchKernel" +3802697172704232 1969:1969 0:"after hipLaunchKernel" +3802697172704792 1969:1969 1:"hipMemcpy" +3802697175433242 1969:1969 2:"" +3802697175433732 1969:1969 2:"" +3802697184423158 1969:1969 0:"before hipLaunchKernel" +3802697184424778 1969:1969 1:"hipLaunchKernel" +3802697184457578 1969:1969 0:"after hipLaunchKernel" +3802697184458138 1969:1969 1:"hipMemcpy" +3802697187091688 1969:1969 2:"" +3802697187092188 1969:1969 2:"" +3802697195994444 1969:1969 0:"before hipLaunchKernel" +3802697195995644 1969:1969 1:"hipLaunchKernel" +3802697196041125 1969:1969 0:"after hipLaunchKernel" +3802697196041715 1969:1969 1:"hipMemcpy" +3802697198672044 1969:1969 2:"" +3802697198672464 1969:1969 2:"" +3802697207577860 1969:1969 0:"before hipLaunchKernel" +3802697207579910 1969:1969 1:"hipLaunchKernel" +3802697207612150 1969:1969 0:"after hipLaunchKernel" +3802697207612700 1969:1969 1:"hipMemcpy" +3802697210256429 1969:1969 2:"" +3802697210256869 1969:1969 2:"" +3802697219164376 1969:1969 0:"before hipLaunchKernel" +3802697219165566 1969:1969 1:"hipLaunchKernel" +3802697219198436 1969:1969 0:"after hipLaunchKernel" +3802697219198996 1969:1969 1:"hipMemcpy" +3802697221820386 1969:1969 2:"" +3802697221820816 1969:1969 2:"" +3802697230726491 1969:1969 0:"before hipLaunchKernel" +3802697230728261 1969:1969 1:"hipLaunchKernel" +3802697230753031 1969:1969 0:"after hipLaunchKernel" +3802697230753581 1969:1969 1:"hipMemcpy" +3802697233391361 1969:1969 2:"" +3802697233391791 1969:1969 2:"" +3802697242295967 1969:1969 0:"before hipLaunchKernel" +3802697242297377 1969:1969 1:"hipLaunchKernel" +3802697242328467 1969:1969 0:"after hipLaunchKernel" +3802697242328997 1969:1969 1:"hipMemcpy" +3802697244974417 1969:1969 2:"" +3802697244974827 1969:1969 2:"" +3802697253885633 1969:1969 0:"before hipLaunchKernel" +3802697253889373 1969:1969 1:"hipLaunchKernel" +3802697253913973 1969:1969 0:"after hipLaunchKernel" +3802697253914523 1969:1969 1:"hipMemcpy" +3802697256530653 1969:1969 2:"" +3802697256531093 1969:1969 2:"" +3802697265426648 1969:1969 0:"before hipLaunchKernel" +3802697265428228 1969:1969 1:"hipLaunchKernel" +3802697265458638 1969:1969 0:"after hipLaunchKernel" +3802697265459208 1969:1969 1:"hipMemcpy" +3802697268098168 1969:1969 2:"" +3802697268098598 1969:1969 2:"" +3802697277006494 1969:1969 0:"before hipLaunchKernel" +3802697277008124 1969:1969 1:"hipLaunchKernel" +3802697277034065 1969:1969 0:"after hipLaunchKernel" +3802697277034615 1969:1969 1:"hipMemcpy" +3802697279670124 1969:1969 2:"" +3802697279670554 1969:1969 2:"" +3802697288776271 1969:1969 0:"before hipLaunchKernel" +3802697288777751 1969:1969 1:"hipLaunchKernel" +3802697288810821 1969:1969 0:"after hipLaunchKernel" +3802697288811311 1969:1969 1:"hipMemcpy" +3802697291437401 1969:1969 2:"" +3802697291437811 1969:1969 2:"" +3802697300336457 1969:1969 0:"before hipLaunchKernel" +3802697300338437 1969:1969 1:"hipLaunchKernel" +3802697300364907 1969:1969 0:"after hipLaunchKernel" +3802697300365377 1969:1969 1:"hipMemcpy" +3802697302998907 1969:1969 2:"" +3802697302999327 1969:1969 2:"" +3802697311897732 1969:1969 0:"before hipLaunchKernel" +3802697311898982 1969:1969 1:"hipLaunchKernel" +3802697311928953 1969:1969 0:"after hipLaunchKernel" +3802697311929443 1969:1969 1:"hipMemcpy" +3802697314563202 1969:1969 2:"" +3802697314563642 1969:1969 2:"" +3802697323474258 1969:1969 0:"before hipLaunchKernel" +3802697323475938 1969:1969 1:"hipLaunchKernel" +3802697323500399 1969:1969 0:"after hipLaunchKernel" +3802697323500949 1969:1969 1:"hipMemcpy" +3802697326142058 1969:1969 2:"" +3802697326142498 1969:1969 2:"" +3802697335288816 1969:1969 0:"before hipLaunchKernel" +3802697335289976 1969:1969 1:"hipLaunchKernel" +3802697335323447 1969:1969 0:"after hipLaunchKernel" +3802697335323937 1969:1969 1:"hipMemcpy" +3802697337935166 1969:1969 2:"" +3802697337935586 1969:1969 2:"" +3802697346857532 1969:1969 0:"before hipLaunchKernel" +3802697346859132 1969:1969 1:"hipLaunchKernel" +3802697346884032 1969:1969 0:"after hipLaunchKernel" +3802697346884502 1969:1969 1:"hipMemcpy" +3802697349497481 1969:1969 2:"" +3802697349497911 1969:1969 2:"" +3802697358403157 1969:1969 0:"before hipLaunchKernel" +3802697358404437 1969:1969 1:"hipLaunchKernel" +3802697358437828 1969:1969 0:"after hipLaunchKernel" +3802697358438318 1969:1969 1:"hipMemcpy" +3802697361079417 1969:1969 2:"" +3802697361079847 1969:1969 2:"" +3802697369978853 1969:1969 0:"before hipLaunchKernel" +3802697369980463 1969:1969 1:"hipLaunchKernel" +3802697370005263 1969:1969 0:"after hipLaunchKernel" +3802697370005813 1969:1969 1:"hipMemcpy" +3802697372636653 1969:1969 2:"" +3802697372637073 1969:1969 2:"" +3802697381540089 1969:1969 0:"before hipLaunchKernel" +3802697381541449 1969:1969 1:"hipLaunchKernel" +3802697381573249 1969:1969 0:"after hipLaunchKernel" +3802697381573739 1969:1969 1:"hipMemcpy" +3802697384230019 1969:1969 2:"" +3802697384230449 1969:1969 2:"" +3802697393325236 1969:1969 0:"before hipLaunchKernel" +3802697393326916 1969:1969 1:"hipLaunchKernel" +3802697393362736 1969:1969 0:"after hipLaunchKernel" +3802697393363226 1969:1969 1:"hipMemcpy" +3802697395993135 1969:1969 2:"" +3802697395993555 1969:1969 2:"" +3802697404884342 1969:1969 0:"before hipLaunchKernel" +3802697404885592 1969:1969 1:"hipLaunchKernel" +3802697404916232 1969:1969 0:"after hipLaunchKernel" +3802697404916842 1969:1969 1:"hipMemcpy" +3802697407559861 1969:1969 2:"" +3802697407560261 1969:1969 2:"" +3802697416458888 1969:1969 0:"before hipLaunchKernel" +3802697416460508 1969:1969 1:"hipLaunchKernel" +3802697416484348 1969:1969 0:"after hipLaunchKernel" +3802697416484808 1969:1969 1:"hipMemcpy" +3802697419130938 1969:1969 2:"" +3802697419131358 1969:1969 2:"" +3802697428186274 1969:1969 0:"before hipLaunchKernel" +3802697428187634 1969:1969 1:"hipLaunchKernel" +3802697428217954 1969:1969 0:"after hipLaunchKernel" +3802697428218524 1969:1969 1:"hipMemcpy" +3802697430849794 1969:1969 2:"" +3802697430850194 1969:1969 2:"" +3802697439813751 1969:1969 0:"before hipLaunchKernel" +3802697439815341 1969:1969 1:"hipLaunchKernel" +3802697439841101 1969:1969 0:"after hipLaunchKernel" +3802697439841571 1969:1969 1:"hipMemcpy" +3802697442477560 1969:1969 2:"" +3802697442478000 1969:1969 2:"" +3802697451398346 1969:1969 0:"before hipLaunchKernel" +3802697451399436 1969:1969 1:"hipLaunchKernel" +3802697451432836 1969:1969 0:"after hipLaunchKernel" +3802697451433486 1969:1969 1:"hipMemcpy" +3802697454071426 1969:1969 2:"" +3802697454071906 1969:1969 2:"" +3802697462991002 1969:1969 0:"before hipLaunchKernel" +3802697462992872 1969:1969 1:"hipLaunchKernel" +3802697463026062 1969:1969 0:"after hipLaunchKernel" +3802697463026522 1969:1969 1:"hipMemcpy" +3802697465642382 1969:1969 2:"" +3802697465642812 1969:1969 2:"" +3802697474700589 1969:1969 0:"before hipLaunchKernel" +3802697474701819 1969:1969 1:"hipLaunchKernel" +3802697474725719 1969:1969 0:"after hipLaunchKernel" +3802697474726449 1969:1969 1:"hipMemcpy" +3802697477351699 1969:1969 2:"" +3802697477352119 1969:1969 2:"" +3802697486247884 1969:1969 0:"before hipLaunchKernel" +3802697486249954 1969:1969 1:"hipLaunchKernel" +3802697486285795 1969:1969 0:"after hipLaunchKernel" +3802697486286275 1969:1969 1:"hipMemcpy" +3802697488927744 1969:1969 2:"" +3802697488928154 1969:1969 2:"" +3802697497972412 1969:1969 0:"before hipLaunchKernel" +3802697497973852 1969:1969 1:"hipLaunchKernel" +3802697497998102 1969:1969 0:"after hipLaunchKernel" +3802697497998792 1969:1969 1:"hipMemcpy" +3802697500609531 1969:1969 2:"" +3802697500610031 1969:1969 2:"" +3802697509543617 1969:1969 0:"before hipLaunchKernel" +3802697509545247 1969:1969 1:"hipLaunchKernel" +3802697509577827 1969:1969 0:"after hipLaunchKernel" +3802697509578287 1969:1969 1:"hipMemcpy" +3802697512195977 1969:1969 2:"" +3802697512196417 1969:1969 2:"" +3802697521115223 1969:1969 0:"before hipLaunchKernel" +3802697521116653 1969:1969 1:"hipLaunchKernel" +3802697521141633 1969:1969 0:"after hipLaunchKernel" +3802697521142203 1969:1969 1:"hipMemcpy" +3802697523764803 1969:1969 2:"" +3802697523765223 1969:1969 2:"" +3802697532650699 1969:1969 0:"before hipLaunchKernel" +3802697532652319 1969:1969 1:"hipLaunchKernel" +3802697532682329 1969:1969 0:"after hipLaunchKernel" +3802697532682799 1969:1969 1:"hipMemcpy" +3802697535397178 1969:1969 2:"" +3802697535397658 1969:1969 2:"" +3802697544391625 1969:1969 0:"before hipLaunchKernel" +3802697544392885 1969:1969 1:"hipLaunchKernel" +3802697544419945 1969:1969 0:"after hipLaunchKernel" +3802697544420435 1969:1969 1:"hipMemcpy" +3802697547040935 1969:1969 2:"" +3802697547041355 1969:1969 2:"" +3802697555950041 1969:1969 0:"before hipLaunchKernel" +3802697555951761 1969:1969 1:"hipLaunchKernel" +3802697555981931 1969:1969 0:"after hipLaunchKernel" +3802697555982411 1969:1969 1:"hipMemcpy" +3802697558641691 1969:1969 2:"" +3802697558642121 1969:1969 2:"" +3802697567566077 1969:1969 0:"before hipLaunchKernel" +3802697567567317 1969:1969 1:"hipLaunchKernel" +3802697567593357 1969:1969 0:"after hipLaunchKernel" +3802697567593937 1969:1969 1:"hipMemcpy" +3802697570232327 1969:1969 2:"" +3802697570232747 1969:1969 2:"" +3802697579181383 1969:1969 0:"before hipLaunchKernel" +3802697579183373 1969:1969 1:"hipLaunchKernel" +3802697579217774 1969:1969 0:"after hipLaunchKernel" +3802697579218254 1969:1969 1:"hipMemcpy" +3802697581813093 1969:1969 2:"" +3802697581813513 1969:1969 2:"" +3802697590730898 1969:1969 0:"before hipLaunchKernel" +3802697590732088 1969:1969 1:"hipLaunchKernel" +3802697590757709 1969:1969 0:"after hipLaunchKernel" +3802697590758209 1969:1969 1:"hipMemcpy" +3802697593380358 1969:1969 2:"" +3802697593380788 1969:1969 2:"" +3802697602288294 1969:1969 0:"before hipLaunchKernel" +3802697602290024 1969:1969 1:"hipLaunchKernel" +3802697602323695 1969:1969 0:"after hipLaunchKernel" +3802697602324165 1969:1969 1:"hipMemcpy" +3802697604959264 1969:1969 2:"" +3802697604959674 1969:1969 2:"" +3802697613883240 1969:1969 0:"before hipLaunchKernel" +3802697613884710 1969:1969 1:"hipLaunchKernel" +3802697613906860 1969:1969 0:"after hipLaunchKernel" +3802697613907420 1969:1969 1:"hipMemcpy" +3802697616524059 1969:1969 2:"" +3802697616524469 1969:1969 2:"" +3802697625442106 1969:1969 0:"before hipLaunchKernel" +3802697625443776 1969:1969 1:"hipLaunchKernel" +3802697625474596 1969:1969 0:"after hipLaunchKernel" +3802697625475066 1969:1969 1:"hipMemcpy" +3802697628105476 1969:1969 2:"" +3802697628105906 1969:1969 2:"" +3802697637024872 1969:1969 0:"before hipLaunchKernel" +3802697637025972 1969:1969 1:"hipLaunchKernel" +3802697637049772 1969:1969 0:"after hipLaunchKernel" +3802697637050332 1969:1969 1:"hipMemcpy" +3802697639678142 1969:1969 2:"" +3802697639678562 1969:1969 2:"" +3802697648582867 1969:1969 0:"before hipLaunchKernel" +3802697648584457 1969:1969 1:"hipLaunchKernel" +3802697648615167 1969:1969 0:"after hipLaunchKernel" +3802697648615637 1969:1969 1:"hipMemcpy" +3802697651256717 1969:1969 2:"" +3802697651257137 1969:1969 2:"" +3802697660313364 1969:1969 0:"before hipLaunchKernel" +3802697660314854 1969:1969 1:"hipLaunchKernel" +3802697660339415 1969:1969 0:"after hipLaunchKernel" +3802697660339965 1969:1969 1:"hipMemcpy" +3802697662964444 1969:1969 2:"" +3802697662964844 1969:1969 2:"" +3802697671917520 1969:1969 0:"before hipLaunchKernel" +3802697671919610 1969:1969 1:"hipLaunchKernel" +3802697671951960 1969:1969 0:"after hipLaunchKernel" +3802697671952430 1969:1969 1:"hipMemcpy" +3802697674578150 1969:1969 2:"" +3802697674578570 1969:1969 2:"" +3802697683497286 1969:1969 0:"before hipLaunchKernel" +3802697683498646 1969:1969 1:"hipLaunchKernel" +3802697683531256 1969:1969 0:"after hipLaunchKernel" +3802697683531736 1969:1969 1:"hipMemcpy" +3802697686169726 1969:1969 2:"" +3802697686170146 1969:1969 2:"" +3802697695116222 1969:1969 0:"before hipLaunchKernel" +3802697695118192 1969:1969 1:"hipLaunchKernel" +3802697695146883 1969:1969 0:"after hipLaunchKernel" +3802697695147333 1969:1969 1:"hipMemcpy" +3802697697753352 1969:1969 2:"" +3802697697753782 1969:1969 2:"" +3802697706672518 1969:1969 0:"before hipLaunchKernel" +3802697706674138 1969:1969 1:"hipLaunchKernel" +3802697706706818 1969:1969 0:"after hipLaunchKernel" +3802697706707478 1969:1969 1:"hipMemcpy" +3802697709322127 1969:1969 2:"" +3802697709322557 1969:1969 2:"" +3802697718225923 1969:1969 0:"before hipLaunchKernel" +3802697718227643 1969:1969 1:"hipLaunchKernel" +3802697718260434 1969:1969 0:"after hipLaunchKernel" +3802697718261054 1969:1969 1:"hipMemcpy" +3802697720903433 1969:1969 2:"" +3802697720903853 1969:1969 2:"" +3802697729830279 1969:1969 0:"before hipLaunchKernel" +3802697729831449 1969:1969 1:"hipLaunchKernel" +3802697729863269 1969:1969 0:"after hipLaunchKernel" +3802697729863919 1969:1969 1:"hipMemcpy" +3802697732478889 1969:1969 2:"" +3802697732479319 1969:1969 2:"" +3802697741398905 1969:1969 0:"before hipLaunchKernel" +3802697741400105 1969:1969 1:"hipLaunchKernel" +3802697741424635 1969:1969 0:"after hipLaunchKernel" +3802697741425295 1969:1969 1:"hipMemcpy" +3802697744062865 1969:1969 2:"" +3802697744063295 1969:1969 2:"" +3802697752975921 1969:1969 0:"before hipLaunchKernel" +3802697752977111 1969:1969 1:"hipLaunchKernel" +3802697753009031 1969:1969 0:"after hipLaunchKernel" +3802697753009691 1969:1969 1:"hipMemcpy" +3802697755644760 1969:1969 2:"" +3802697755645180 1969:1969 2:"" +3802697764760328 1969:1969 0:"before hipLaunchKernel" +3802697764761548 1969:1969 1:"hipLaunchKernel" +3802697764791588 1969:1969 0:"after hipLaunchKernel" +3802697764792338 1969:1969 1:"hipMemcpy" +3802697767411338 1969:1969 2:"" +3802697767411768 1969:1969 2:"" +3802697776312354 1969:1969 0:"before hipLaunchKernel" +3802697776313614 1969:1969 1:"hipLaunchKernel" +3802697776345234 1969:1969 0:"after hipLaunchKernel" +3802697776345884 1969:1969 1:"hipMemcpy" +3802697778980024 1969:1969 2:"" +3802697778980824 1969:1969 2:"" +3802697787896619 1969:1969 0:"before hipLaunchKernel" +3802697787897679 1969:1969 1:"hipLaunchKernel" +3802697787925330 1969:1969 0:"after hipLaunchKernel" +3802697787926290 1969:1969 1:"hipMemcpy" +3802697790554389 1969:1969 2:"" +3802697790554819 1969:1969 2:"" +3802697799514756 1969:1969 0:"before hipLaunchKernel" +3802697799516096 1969:1969 1:"hipLaunchKernel" +3802697799548376 1969:1969 0:"after hipLaunchKernel" +3802697799549396 1969:1969 1:"hipMemcpy" +3802697802182366 1969:1969 2:"" +3802697802182776 1969:1969 2:"" +3802697811133262 1969:1969 0:"before hipLaunchKernel" +3802697811134682 1969:1969 1:"hipLaunchKernel" +3802697811164182 1969:1969 0:"after hipLaunchKernel" +3802697811165142 1969:1969 1:"hipMemcpy" +3802697813784401 1969:1969 2:"" +3802697813784901 1969:1969 2:"" +3802696637970000:3802696640041366 0:0 CopyHostToDevice:4:1969 +3802696640702193:3802696641903883 0:0 KernelExecution:8:1969 +3802696640685320:3802696644062165 0:0 CopyDeviceToHost:10:1969 +3802696652370837:3802696654338831 0:0 CopyHostToDevice:11:1969 +3802696654471750:3802696655685144 0:0 KernelExecution:15:1969 +3802696654436782:3802696657478475 0:0 CopyDeviceToHost:17:1969 +3802696665009841:3802696667046736 0:0 CopyHostToDevice:18:1969 +3802696667166397:3802696668367346 0:0 KernelExecution:22:1969 +3802696667143257:3802696669822776 0:0 CopyDeviceToHost:24:1969 +3802696677213011:3802696679122295 0:0 CopyHostToDevice:25:1969 +3802696679243109:3802696680441836 0:0 KernelExecution:29:1969 +3802696679218436:3802696681856275 0:0 CopyDeviceToHost:31:1969 +3802696689228960:3802696691157594 0:0 CopyHostToDevice:32:1969 +3802696691271946:3802696692454228 0:0 KernelExecution:36:1969 +3802696691248725:3802696693867624 0:0 CopyDeviceToHost:38:1969 +3802696701258119:3802696703193593 0:0 CopyHostToDevice:39:1969 +3802696703306881:3802696704514201 0:0 KernelExecution:43:1969 +3802696703283484:3802696705928443 0:0 CopyDeviceToHost:45:1969 +3802696713296468:3802696715259523 0:0 CopyHostToDevice:46:1969 +3802696715371647:3802696716563855 0:0 KernelExecution:50:1969 +3802696715348963:3802696717989793 0:0 CopyDeviceToHost:52:1969 +3802696725365207:3802696727332082 0:0 CopyHostToDevice:53:1969 +3802696727446809:3802696728645388 0:0 KernelExecution:57:1969 +3802696727424062:3802696730069292 0:0 CopyDeviceToHost:59:1969 +3802696737440907:3802696739371591 0:0 CopyHostToDevice:60:1969 +3802696739484994:3802696740688017 0:0 KernelExecution:64:1969 +3802696739462092:3802696742424924 0:0 CopyDeviceToHost:66:1969 +3802696749756818:3802696751640962 0:0 CopyHostToDevice:67:1969 +3802696751757947:3802696752948081 0:0 KernelExecution:71:1969 +3802696751733533:3802696754485913 0:0 CopyDeviceToHost:73:1969 +3802696761977699:3802696763875733 0:0 CopyHostToDevice:74:1969 +3802696763992917:3802696765185273 0:0 KernelExecution:78:1969 +3802696763969384:3802696766859965 0:0 CopyDeviceToHost:80:1969 +3802696774485232:3802696776381536 0:0 CopyHostToDevice:81:1969 +3802696776496510:3802696777686644 0:0 KernelExecution:85:1969 +3802696776473636:3802696779420438 0:0 CopyDeviceToHost:87:1969 +3802696786985294:3802696788877458 0:0 CopyHostToDevice:88:1969 +3802696788991255:3802696790197389 0:0 KernelExecution:92:1969 +3802696788967899:3802696791874560 0:0 CopyDeviceToHost:94:1969 +3802696799390786:3802696801348840 0:0 CopyHostToDevice:95:1969 +3802696801461645:3802696802665557 0:0 KernelExecution:99:1969 +3802696801438801:3802696804123251 0:0 CopyDeviceToHost:101:1969 +3802696811598816:3802696813499630 0:0 CopyHostToDevice:102:1969 +3802696813628796:3802696814825894 0:0 KernelExecution:106:1969 +3802696813591051:3802696816306011 0:0 CopyDeviceToHost:108:1969 +3802696823768337:3802696825679171 0:0 CopyHostToDevice:109:1969 +3802696825795518:3802696827002245 0:0 KernelExecution:113:1969 +3802696825772002:3802696828344201 0:0 CopyDeviceToHost:115:1969 +3802696835807585:3802696837710010 0:0 CopyHostToDevice:116:1969 +3802696837824674:3802696839030216 0:0 KernelExecution:120:1969 +3802696837801090:3802696840659432 0:0 CopyDeviceToHost:122:1969 +3802696848201538:3802696850113022 0:0 CopyHostToDevice:123:1969 +3802696850228536:3802696851434819 0:0 KernelExecution:127:1969 +3802696850204883:3802696852894003 0:0 CopyDeviceToHost:129:1969 +3802696860505578:3802696862404772 0:0 CopyHostToDevice:130:1969 +3802696862518624:3802696863705499 0:0 KernelExecution:134:1969 +3802696862495933:3802696865512986 0:0 CopyDeviceToHost:136:1969 +3802696872863430:3802696874765294 0:0 CopyHostToDevice:137:1969 +3802696874879665:3802696876089207 0:0 KernelExecution:141:1969 +3802696874856175:3802696877685336 0:0 CopyDeviceToHost:143:1969 +3802696885100881:3802696887387458 0:0 CopyHostToDevice:144:1969 +3802696887505906:3802696888704040 0:0 KernelExecution:148:1969 +3802696887483168:3802696890479271 0:0 CopyDeviceToHost:150:1969 +3802696897803185:3802696899689929 0:0 CopyHostToDevice:151:1969 +3802696899809019:3802696901009080 0:0 KernelExecution:155:1969 +3802696899785550:3802696902511200 0:0 CopyDeviceToHost:157:1969 +3802696909840324:3802696911739018 0:0 CopyHostToDevice:158:1969 +3802696911859781:3802696913058804 0:0 KernelExecution:162:1969 +3802696911836349:3802696914812301 0:0 CopyDeviceToHost:164:1969 +3802696922336207:3802696924266071 0:0 CopyHostToDevice:165:1969 +3802696924379639:3802696925572143 0:0 KernelExecution:169:1969 +3802696924356762:3802696927036672 0:0 CopyDeviceToHost:171:1969 +3802696934646558:3802696936529602 0:0 CopyHostToDevice:172:1969 +3802696936644403:3802696937862982 0:0 KernelExecution:176:1969 +3802696936621093:3802696939420273 0:0 CopyDeviceToHost:178:1969 +3802696946990569:3802696948882273 0:0 CopyHostToDevice:179:1969 +3802696948995110:3802696950211319 0:0 KernelExecution:183:1969 +3802696948971944:3802696951884746 0:0 CopyDeviceToHost:185:1969 +3802696959418442:3802696961371916 0:0 CopyHostToDevice:186:1969 +3802696961487398:3802696962693088 0:0 KernelExecution:190:1969 +3802696961464617:3802696964018595 0:0 CopyDeviceToHost:192:1969 +3802696971390200:3802696973421935 0:0 CopyHostToDevice:193:1969 +3802696973536253:3802696974731572 0:0 KernelExecution:197:1969 +3802696973513486:3802696976508318 0:0 CopyDeviceToHost:199:1969 +3802696983936293:3802696985862278 0:0 CopyHostToDevice:200:1969 +3802696985976814:3802696987182653 0:0 KernelExecution:204:1969 +3802696985953408:3802696988779849 0:0 CopyDeviceToHost:206:1969 +3802696996291334:3802696998234809 0:0 CopyHostToDevice:207:1969 +3802696998349582:3802696999552753 0:0 KernelExecution:211:1969 +3802696998326300:3802697001019050 0:0 CopyDeviceToHost:213:1969 +3802697008386994:3802697010351309 0:0 CopyHostToDevice:214:1969 +3802697010464670:3802697011656286 0:0 KernelExecution:218:1969 +3802697010441950:3802697013142610 0:0 CopyDeviceToHost:220:1969 +3802697020389073:3802697022152906 0:0 CopyHostToDevice:221:1969 +3802697022262785:3802697023467142 0:0 KernelExecution:225:1969 +3802697022240587:3802697024900826 0:0 CopyDeviceToHost:227:1969 +3802697032199111:3802697033869083 0:0 CopyHostToDevice:228:1969 +3802697033974526:3802697035174734 0:0 KernelExecution:232:1969 +3802697033950364:3802697036516603 0:0 CopyDeviceToHost:234:1969 +3802697043761696:3802697045431988 0:0 CopyHostToDevice:235:1969 +3802697045536649:3802697046739821 0:0 KernelExecution:239:1969 +3802697045513499:3802697048085518 0:0 CopyDeviceToHost:241:1969 +3802697055327982:3802697057004304 0:0 CopyHostToDevice:242:1969 +3802697057109129:3802697058316597 0:0 KernelExecution:246:1969 +3802697057085675:3802697059665704 0:0 CopyDeviceToHost:248:1969 +3802697066895738:3802697068561680 0:0 CopyHostToDevice:249:1969 +3802697068658581:3802697069871828 0:0 KernelExecution:253:1969 +3802697068634061:3802697071217469 0:0 CopyDeviceToHost:255:1969 +3802697078458933:3802697080123546 0:0 CopyHostToDevice:256:1969 +3802697080227770:3802697081430349 0:0 KernelExecution:260:1969 +3802697080204076:3802697082776455 0:0 CopyDeviceToHost:262:1969 +3802697090025539:3802697091696762 0:0 CopyHostToDevice:263:1969 +3802697091802531:3802697093004962 0:0 KernelExecution:267:1969 +3802697091778532:3802697094356431 0:0 CopyDeviceToHost:269:1969 +3802697101598714:3802697103264697 0:0 CopyHostToDevice:270:1969 +3802697103381009:3802697104589070 0:0 KernelExecution:274:1969 +3802697103358348:3802697105918947 0:0 CopyDeviceToHost:276:1969 +3802697113161240:3802697114823533 0:0 CopyHostToDevice:277:1969 +3802697114941298:3802697116145951 0:0 KernelExecution:281:1969 +3802697114917384:3802697117474713 0:0 CopyDeviceToHost:283:1969 +3802697124712596:3802697126375298 0:0 CopyHostToDevice:284:1969 +3802697126491045:3802697127701329 0:0 KernelExecution:288:1969 +3802697126467929:3802697129056818 0:0 CopyDeviceToHost:290:1969 +3802697136301622:3802697137972234 0:0 CopyHostToDevice:291:1969 +3802697138085638:3802697139282884 0:0 KernelExecution:295:1969 +3802697138061075:3802697140619024 0:0 CopyDeviceToHost:297:1969 +3802697147866678:3802697149533780 0:0 CopyHostToDevice:298:1969 +3802697149648903:3802697150853111 0:0 KernelExecution:302:1969 +3802697149623541:3802697152192139 0:0 CopyDeviceToHost:304:1969 +3802697159439533:3802697161102415 0:0 CopyHostToDevice:305:1969 +3802697161216809:3802697162420574 0:0 KernelExecution:309:1969 +3802697161193736:3802697163766305 0:0 CopyDeviceToHost:311:1969 +3802697171004109:3802697172652911 0:0 CopyHostToDevice:312:1969 +3802697172757426:3802697173955116 0:0 KernelExecution:316:1969 +3802697172732972:3802697175412072 0:0 CopyDeviceToHost:318:1969 +3802697182760206:3802697184412858 0:0 CopyHostToDevice:319:1969 +3802697184525221:3802697185727207 0:0 KernelExecution:323:1969 +3802697184502499:3802697187074348 0:0 CopyDeviceToHost:325:1969 +3802697194314752:3802697195984364 0:0 CopyHostToDevice:326:1969 +3802697196107795:3802697197305781 0:0 KernelExecution:330:1969 +3802697196083925:3802697198652974 0:0 CopyDeviceToHost:332:1969 +3802697205902567:3802697207567769 0:0 CopyHostToDevice:333:1969 +3802697207683841:3802697208889827 0:0 KernelExecution:337:1969 +3802697207659390:3802697210239459 0:0 CopyDeviceToHost:339:1969 +3802697217477413:3802697219153736 0:0 CopyHostToDevice:340:1969 +3802697219268742:3802697220472358 0:0 KernelExecution:344:1969 +3802697219245796:3802697221802125 0:0 CopyDeviceToHost:346:1969 +3802697229046649:3802697230709291 0:0 CopyHostToDevice:347:1969 +3802697230823918:3802697232036275 0:0 KernelExecution:351:1969 +3802697230799702:3802697233370991 0:0 CopyDeviceToHost:353:1969 +3802697240619565:3802697242285887 0:0 CopyHostToDevice:354:1969 +3802697242400489:3802697243602327 0:0 KernelExecution:358:1969 +3802697242377418:3802697244957587 0:0 CopyDeviceToHost:360:1969 +3802697252208681:3802697253865823 0:0 CopyHostToDevice:361:1969 +3802697253979012:3802697255177591 0:0 KernelExecution:365:1969 +3802697253954744:3802697256515263 0:0 CopyDeviceToHost:367:1969 +3802697263753516:3802697265415408 0:0 CopyHostToDevice:368:1969 +3802697265528955:3802697266735830 0:0 KernelExecution:372:1969 +3802697265505559:3802697268080598 0:0 CopyDeviceToHost:374:1969 +3802697275321132:3802697276988734 0:0 CopyHostToDevice:375:1969 +3802697277104167:3802697278307043 0:0 KernelExecution:379:1969 +3802697277080025:3802697279652704 0:0 CopyDeviceToHost:381:1969 +3802697287106519:3802697288765991 0:0 CopyHostToDevice:382:1969 +3802697288880460:3802697290072816 0:0 KernelExecution:386:1969 +3802697288856122:3802697291419771 0:0 CopyDeviceToHost:388:1969 +3802697298669215:3802697300319987 0:0 CopyHostToDevice:389:1969 +3802697300433200:3802697301634594 0:0 KernelExecution:393:1969 +3802697300410318:3802697302981737 0:0 CopyDeviceToHost:395:1969 +3802697310226230:3802697311886902 0:0 CopyHostToDevice:396:1969 +3802697312001809:3802697313197573 0:0 KernelExecution:400:1969 +3802697311980253:3802697314545132 0:0 CopyDeviceToHost:402:1969 +3802697321796836:3802697323456938 0:0 CopyHostToDevice:403:1969 +3802697323574851:3802697324775059 0:0 KernelExecution:407:1969 +3802697323551999:3802697326123948 0:0 CopyDeviceToHost:409:1969 +3802697333382672:3802697335278646 0:0 CopyHostToDevice:410:1969 +3802697335394104:3802697336586905 0:0 KernelExecution:414:1969 +3802697335371017:3802697337917295 0:0 CopyDeviceToHost:416:1969 +3802697345174589:3802697346840611 0:0 CopyHostToDevice:417:1969 +3802697346954284:3802697348150048 0:0 KernelExecution:421:1969 +3802697346929712:3802697349480251 0:0 CopyDeviceToHost:423:1969 +3802697356730525:3802697358393207 0:0 CopyHostToDevice:424:1969 +3802697358505774:3802697359711908 0:0 KernelExecution:428:1969 +3802697358482688:3802697361061037 0:0 CopyDeviceToHost:430:1969 +3802697368296060:3802697369961283 0:0 CopyHostToDevice:431:1969 +3802697370076540:3802697371280749 0:0 KernelExecution:435:1969 +3802697370052343:3802697372618952 0:0 CopyDeviceToHost:437:1969 +3802697379854426:3802697381529429 0:0 CopyHostToDevice:438:1969 +3802697381669574:3802697382871561 0:0 KernelExecution:442:1969 +3802697381627299:3802697384212879 0:0 CopyDeviceToHost:444:1969 +3802697391640424:3802697393305796 0:0 CopyHostToDevice:445:1969 +3802697393420055:3802697394627523 0:0 KernelExecution:449:1969 +3802697393396937:3802697395973775 0:0 CopyDeviceToHost:451:1969 +3802697403210139:3802697404874291 0:0 CopyHostToDevice:452:1969 +3802697404987901:3802697406194480 0:0 KernelExecution:456:1969 +3802697404963452:3802697407541851 0:0 CopyDeviceToHost:458:1969 +3802697414792085:3802697416441578 0:0 CopyHostToDevice:459:1969 +3802697416553745:3802697417764769 0:0 KernelExecution:463:1969 +3802697416530688:3802697419111357 0:0 CopyDeviceToHost:465:1969 +3802697426357640:3802697428176194 0:0 CopyHostToDevice:466:1969 +3802697428281217:3802697429482463 0:0 KernelExecution:470:1969 +3802697428257595:3802697430832034 0:0 CopyDeviceToHost:472:1969 +3802697438127568:3802697439803341 0:0 CopyHostToDevice:473:1969 +3802697439908115:3802697441110545 0:0 KernelExecution:477:1969 +3802697439884961:3802697442457370 0:0 CopyDeviceToHost:479:1969 +3802697449713174:3802697451387876 0:0 CopyHostToDevice:480:1969 +3802697451493677:3802697452699960 0:0 KernelExecution:484:1969 +3802697451470807:3802697454048356 0:0 CopyDeviceToHost:486:1969 +3802697461301800:3802697462980532 0:0 CopyHostToDevice:487:1969 +3802697463087311:3802697464296261 0:0 KernelExecution:491:1969 +3802697463063563:3802697465624162 0:0 CopyDeviceToHost:493:1969 +3802697473010647:3802697474684319 0:0 CopyHostToDevice:494:1969 +3802697474791187:3802697475995247 0:0 KernelExecution:498:1969 +3802697474766630:3802697477333559 0:0 CopyDeviceToHost:500:1969 +3802697484576442:3802697486238314 0:0 CopyHostToDevice:501:1969 +3802697486344652:3802697487542935 0:0 KernelExecution:505:1969 +3802697486321615:3802697488909654 0:0 CopyDeviceToHost:507:1969 +3802697496284439:3802697497954091 0:0 CopyHostToDevice:508:1969 +3802697498059840:3802697499254418 0:0 KernelExecution:512:1969 +3802697498036132:3802697500592791 0:0 CopyDeviceToHost:514:1969 +3802697507844284:3802697509533537 0:0 CopyHostToDevice:515:1969 +3802697509639724:3802697510837414 0:0 KernelExecution:519:1969 +3802697509615617:3802697512178516 0:0 CopyDeviceToHost:521:1969 +3802697519420810:3802697521097933 0:0 CopyHostToDevice:522:1969 +3802697521203284:3802697522401863 0:0 KernelExecution:526:1969 +3802697521183063:3802697523746742 0:0 CopyDeviceToHost:528:1969 +3802697530980246:3802697532639829 0:0 CopyHostToDevice:529:1969 +3802697532741764:3802697533925083 0:0 KernelExecution:533:1969 +3802697532716169:3802697535378848 0:0 CopyDeviceToHost:535:1969 +3802697542711763:3802697544374825 0:0 CopyHostToDevice:536:1969 +3802697544482161:3802697545673332 0:0 KernelExecution:540:1969 +3802697544459136:3802697547022005 0:0 CopyDeviceToHost:542:1969 +3802697554268729:3802697555940141 0:0 CopyHostToDevice:543:1969 +3802697556063785:3802697557274660 0:0 KernelExecution:547:1969 +3802697556040072:3802697558623511 0:0 CopyDeviceToHost:549:1969 +3802697565876724:3802697567548507 0:0 CopyHostToDevice:550:1969 +3802697567654374:3802697568863769 0:0 KernelExecution:554:1969 +3802697567630707:3802697570214447 0:0 CopyDeviceToHost:556:1969 +3802697577493041:3802697579171593 0:0 CopyHostToDevice:557:1969 +3802697579276591:3802697580466577 0:0 KernelExecution:561:1969 +3802697579253814:3802697581795623 0:0 CopyDeviceToHost:563:1969 +3802697589038456:3802697590712578 0:0 CopyHostToDevice:564:1969 +3802697590819370:3802697592028023 0:0 KernelExecution:568:1969 +3802697590795159:3802697593362018 0:0 CopyDeviceToHost:570:1969 +3802697600611932:3802697602277954 0:0 CopyHostToDevice:571:1969 +3802697602386259:3802697603593134 0:0 KernelExecution:575:1969 +3802697602363205:3802697604941224 0:0 CopyDeviceToHost:577:1969 +3802697612185618:3802697613862940 0:0 CopyHostToDevice:578:1969 +3802697613968310:3802697615171038 0:0 KernelExecution:582:1969 +3802697613944481:3802697616506339 0:0 CopyDeviceToHost:584:1969 +3802697623760283:3802697625431596 0:0 CopyHostToDevice:585:1969 +3802697625536896:3802697626744513 0:0 KernelExecution:589:1969 +3802697625513736:3802697628089655 0:0 CopyDeviceToHost:591:1969 +3802697635325329:3802697637006352 0:0 CopyHostToDevice:592:1969 +3802697637111601:3802697638309290 0:0 KernelExecution:596:1969 +3802697637088112:3802697639657341 0:0 CopyDeviceToHost:598:1969 +3802697646910585:3802697648572337 0:0 CopyHostToDevice:599:1969 +3802697648692797:3802697649893301 0:0 KernelExecution:603:1969 +3802697648645148:3802697651239317 0:0 CopyDeviceToHost:605:1969 +3802697658475341:3802697660295544 0:0 CopyHostToDevice:606:1969 +3802697660398642:3802697661594554 0:0 KernelExecution:610:1969 +3802697660375245:3802697662941024 0:0 CopyDeviceToHost:612:1969 +3802697670236208:3802697671907260 0:0 CopyHostToDevice:613:1969 +3802697672014816:3802697673207765 0:0 KernelExecution:617:1969 +3802697671991410:3802697674560729 0:0 CopyDeviceToHost:619:1969 +3802697681816143:3802697683487016 0:0 CopyHostToDevice:620:1969 +3802697683592797:3802697684793895 0:0 KernelExecution:624:1969 +3802697683569646:3802697686149216 0:0 CopyDeviceToHost:626:1969 +3802697693424780:3802697695106672 0:0 CopyHostToDevice:627:1969 +3802697695212171:3802697696404972 0:0 KernelExecution:631:1969 +3802697695210703:3802697697734582 0:0 CopyDeviceToHost:633:1969 +3802697705009925:3802697706660467 0:0 CopyHostToDevice:634:1969 +3802697706767891:3802697707960099 0:0 KernelExecution:638:1969 +3802697706743098:3802697709302737 0:0 CopyDeviceToHost:640:1969 +3802697716548631:3802697718214823 0:0 CopyHostToDevice:641:1969 +3802697718322080:3802697719529104 0:0 KernelExecution:645:1969 +3802697718298954:3802697720886133 0:0 CopyDeviceToHost:647:1969 +3802697728134306:3802697729818739 0:0 CopyHostToDevice:648:1969 +3802697729925166:3802697731123596 0:0 KernelExecution:652:1969 +3802697729901970:3802697732462009 0:0 CopyDeviceToHost:654:1969 +3802697739707892:3802697741380565 0:0 CopyHostToDevice:655:1969 +3802697741490424:3802697742697744 0:0 KernelExecution:659:1969 +3802697741467626:3802697744045275 0:0 CopyDeviceToHost:661:1969 +3802697751291629:3802697752964761 0:0 CopyHostToDevice:662:1969 +3802697753074037:3802697754279875 0:0 KernelExecution:666:1969 +3802697753050711:3802697755626760 0:0 CopyDeviceToHost:668:1969 +3802697763069425:3802697764741028 0:0 CopyHostToDevice:669:1969 +3802697764852507:3802697766047234 0:0 KernelExecution:673:1969 +3802697764828879:3802697767393118 0:0 CopyDeviceToHost:675:1969 +3802697774635391:3802697776300724 0:0 CopyHostToDevice:676:1969 +3802697776406750:3802697777615996 0:0 KernelExecution:680:1969 +3802697776383624:3802697778962704 0:0 CopyDeviceToHost:682:1969 +3802697786208277:3802697787878729 0:0 CopyHostToDevice:683:1969 +3802697787986207:3802697789177378 0:0 KernelExecution:687:1969 +3802697787962550:3802697790535549 0:0 CopyDeviceToHost:689:1969 +3802697797824573:3802697799503976 0:0 CopyHostToDevice:690:1969 +3802697799609442:3802697800814984 0:0 KernelExecution:694:1969 +3802697799586736:3802697802164595 0:0 CopyDeviceToHost:696:1969 +3802697809435859:3802697811115011 0:0 CopyHostToDevice:697:1969 +3802697811222176:3802697812433792 0:0 KernelExecution:701:1969 +3802697811198442:3802697813765881 0:0 CopyDeviceToHost:703:1969 diff --git a/projects/roctracer/test/golden_traces/MatrixTranspose_test_trace.txt b/projects/roctracer/test/golden_traces/MatrixTranspose_test_trace.txt index 9292d17dba..bb62d7cb0c 100644 --- a/projects/roctracer/test/golden_traces/MatrixTranspose_test_trace.txt +++ b/projects/roctracer/test/golden_traces/MatrixTranspose_test_trace.txt @@ -1,6605 +1,6359 @@ ++ LD_PRELOAD=libkfdwrapper64.so ./test/MatrixTranspose_test # INIT ############################# # START (99) ############################# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x1ec46c0) size(0x400000) kind(1) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - dst(0x22c46d0) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0594a00000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0594400000) + dst(0x7f0594a00000) src(0x7f05957ff010) size(0x400000) kind(1) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> + + +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(6) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(6) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(7) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(7) on-exit pid(1942) tid(1942)> + + + + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x7f05953fe010) src(0x7f0594400000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0594a00000) + + + + + + ptr(0x7f0594400000) + + + + + # START (98) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (97) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> + +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(17) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(17) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(18) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(18) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (96) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (95) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(28) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(28) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(29) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(29) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> + +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (94) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (93) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> + +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(39) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(39) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(40) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(40) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> + + +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (92) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (91) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(1) time_ns(43919407742828:43919407756296) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(2) time_ns(43919407817087:43919407820516) process_id(26018) thread_id(26018) - hipMalloc correlation_id(3) time_ns(43919410011773:43919410120425) process_id(26018) thread_id(26018) - hipMalloc correlation_id(4) time_ns(43919410124840:43919410179960) process_id(26018) thread_id(26018) - (null) correlation_id(5) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(5) time_ns(43919410187829:43919415936514) process_id(26018) thread_id(26018) - (null) correlation_id(6) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(6) time_ns(43919700107716:43919702151719) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(6) time_ns(43919702156630:43919703997910) device_id(0) queue_id(0) - hcCommandMarker correlation_id(7) time_ns(43919704007210:43919704051050) device_id(0) queue_id(0) - (null) correlation_id(7) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(7) time_ns(43919702186876:43919705044964) process_id(26018) thread_id(26018) - (null) correlation_id(8) time_ns(0:0) external_id(31) - hipFree correlation_id(8) time_ns(43919719552955:43919719659234) process_id(26018) thread_id(26018) - (null) correlation_id(9) time_ns(0:0) external_id(31) - hipFree correlation_id(9) time_ns(43919719667174:43919719698129) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(10) time_ns(43919740145117:43919740154775) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(11) time_ns(43919740158543:43919740160977) process_id(26018) thread_id(26018) - hipMalloc correlation_id(12) time_ns(43919742293682:43919742344742) process_id(26018) thread_id(26018) - hipMalloc correlation_id(13) time_ns(43919742349121:43919742389355) process_id(26018) thread_id(26018) - (null) correlation_id(14) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(14) time_ns(43919742393482:43919743033105) process_id(26018) thread_id(26018) - (null) correlation_id(15) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(15) time_ns(43919743047173:43919743078643) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(15) time_ns(43919743084191:43919744928671) device_id(0) queue_id(0) - hcCommandMarker correlation_id(16) time_ns(43919744931570:43919744963410) device_id(0) queue_id(0) - (null) correlation_id(16) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(16) time_ns(43919743094358:43919745913718) process_id(26018) thread_id(26018) - (null) correlation_id(17) time_ns(0:0) external_id(31) - hipFree correlation_id(17) time_ns(43919760514161:43919760579549) process_id(26018) thread_id(26018) - (null) correlation_id(18) time_ns(0:0) external_id(31) - hipFree correlation_id(18) time_ns(43919760587004:43919760608342) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(19) time_ns(43919781056008:43919781065861) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(20) time_ns(43919781069562:43919781071963) process_id(26018) thread_id(26018) - hipMalloc correlation_id(21) time_ns(43919783224160:43919783274754) process_id(26018) thread_id(26018) - hipMalloc correlation_id(22) time_ns(43919783279008:43919783318551) process_id(26018) thread_id(26018) - (null) correlation_id(23) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(23) time_ns(43919783322836:43919783957646) process_id(26018) thread_id(26018) - (null) correlation_id(24) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(24) time_ns(43919783972133:43919784019162) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(24) time_ns(43919784024580:43919785862660) device_id(0) queue_id(0) - hcCommandMarker correlation_id(25) time_ns(43919785865600:43919785896960) device_id(0) queue_id(0) - (null) correlation_id(25) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(25) time_ns(43919784024115:43919786845437) process_id(26018) thread_id(26018) - (null) correlation_id(26) time_ns(0:0) external_id(31) - hipFree correlation_id(26) time_ns(43919801405400:43919801500824) process_id(26018) thread_id(26018) - (null) correlation_id(27) time_ns(0:0) external_id(31) - hipFree correlation_id(27) time_ns(43919801518027:43919801559764) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(28) time_ns(43919821904222:43919821913948) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(29) time_ns(43919821917750:43919821920207) process_id(26018) thread_id(26018) - hipMalloc correlation_id(30) time_ns(43919824083422:43919824146675) process_id(26018) thread_id(26018) - hipMalloc correlation_id(31) time_ns(43919824151196:43919824180920) process_id(26018) thread_id(26018) - (null) correlation_id(32) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(32) time_ns(43919824185085:43919824870961) process_id(26018) thread_id(26018) - (null) correlation_id(33) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(33) time_ns(43919824885642:43919824927435) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(33) time_ns(43919824933204:43919826765684) device_id(0) queue_id(0) - hcCommandMarker correlation_id(34) time_ns(43919826768796:43919826800156) device_id(0) queue_id(0) - (null) correlation_id(34) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(34) time_ns(43919824932592:43919827735361) process_id(26018) thread_id(26018) - (null) correlation_id(35) time_ns(0:0) external_id(31) - hipFree correlation_id(35) time_ns(43919842293529:43919842379822) process_id(26018) thread_id(26018) - (null) correlation_id(36) time_ns(0:0) external_id(31) - hipFree correlation_id(36) time_ns(43919842387516:43919842418660) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(50) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(50) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(51) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(51) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (90) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (89) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> + +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(61) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(61) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(62) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(62) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (88) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (87) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> + +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(72) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(72) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(73) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(73) on-exit pid(1942) tid(1942)> + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (86) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (85) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(83) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(83) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(84) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(84) on-exit pid(1942) tid(1942)> + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (84) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (83) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(37) time_ns(43919862886235:43919862896389) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(38) time_ns(43919862906956:43919862923035) process_id(26018) thread_id(26018) - hipMalloc correlation_id(39) time_ns(43919865199946:43919865252941) process_id(26018) thread_id(26018) - hipMalloc correlation_id(40) time_ns(43919865257463:43919865281882) process_id(26018) thread_id(26018) - (null) correlation_id(41) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(41) time_ns(43919865286624:43919865926998) process_id(26018) thread_id(26018) - (null) correlation_id(42) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(42) time_ns(43919865951583:43919865981786) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(42) time_ns(43919865986986:43919867817226) device_id(0) queue_id(0) - hcCommandMarker correlation_id(43) time_ns(43919867820070:43919867850950) device_id(0) queue_id(0) - (null) correlation_id(43) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(43) time_ns(43919865986664:43919868769470) process_id(26018) thread_id(26018) - (null) correlation_id(44) time_ns(0:0) external_id(31) - hipFree correlation_id(44) time_ns(43919883779847:43919883847612) process_id(26018) thread_id(26018) - (null) correlation_id(45) time_ns(0:0) external_id(31) - hipFree correlation_id(45) time_ns(43919883856116:43919883878027) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(46) time_ns(43919904356837:43919904366327) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(47) time_ns(43919904370176:43919904372575) process_id(26018) thread_id(26018) - hipMalloc correlation_id(48) time_ns(43919906538991:43919906589434) process_id(26018) thread_id(26018) - hipMalloc correlation_id(49) time_ns(43919906593945:43919906633022) process_id(26018) thread_id(26018) - (null) correlation_id(50) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(50) time_ns(43919906637967:43919907291714) process_id(26018) thread_id(26018) - (null) correlation_id(51) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(51) time_ns(43919907305682:43919907347789) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(51) time_ns(43919907353397:43919909190518) device_id(0) queue_id(0) - hcCommandMarker correlation_id(52) time_ns(43919909193540:43919909225060) device_id(0) queue_id(0) - (null) correlation_id(52) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(52) time_ns(43919907353088:43919910184232) process_id(26018) thread_id(26018) - (null) correlation_id(53) time_ns(0:0) external_id(31) - hipFree correlation_id(53) time_ns(43919924775326:43919924860727) process_id(26018) thread_id(26018) - (null) correlation_id(54) time_ns(0:0) external_id(31) - hipFree correlation_id(54) time_ns(43919924868475:43919924909604) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(55) time_ns(43919945290277:43919945299927) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(56) time_ns(43919945303639:43919945306398) process_id(26018) thread_id(26018) - hipMalloc correlation_id(57) time_ns(43919947439388:43919947490002) process_id(26018) thread_id(26018) - hipMalloc correlation_id(58) time_ns(43919947494498:43919947533384) process_id(26018) thread_id(26018) - (null) correlation_id(59) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(59) time_ns(43919947537550:43919948198420) process_id(26018) thread_id(26018) - (null) correlation_id(60) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(60) time_ns(43919948212770:43919948256220) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(60) time_ns(43919948262127:43919950097488) device_id(0) queue_id(0) - hcCommandMarker correlation_id(61) time_ns(43919950100510:43919950131710) device_id(0) queue_id(0) - (null) correlation_id(61) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(61) time_ns(43919948262624:43919951049377) process_id(26018) thread_id(26018) - (null) correlation_id(62) time_ns(0:0) external_id(31) - hipFree correlation_id(62) time_ns(43919965611360:43919965696230) process_id(26018) thread_id(26018) - (null) correlation_id(63) time_ns(0:0) external_id(31) - hipFree correlation_id(63) time_ns(43919965703947:43919965745358) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(64) time_ns(43919986107809:43919986118147) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(65) time_ns(43919986122288:43919986124704) process_id(26018) thread_id(26018) - hipMalloc correlation_id(66) time_ns(43919988305509:43919988356174) process_id(26018) thread_id(26018) - hipMalloc correlation_id(67) time_ns(43919988360796:43919988399798) process_id(26018) thread_id(26018) - (null) correlation_id(68) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(68) time_ns(43919988404661:43919989041988) process_id(26018) thread_id(26018) - (null) correlation_id(69) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(69) time_ns(43919989055520:43919989098082) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(69) time_ns(43919989102409:43919989585769) device_id(0) queue_id(0) - hcCommandMarker correlation_id(70) time_ns(43919989588829:43919989595229) device_id(0) queue_id(0) - (null) correlation_id(70) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(70) time_ns(43919989103240:43919990487120) process_id(26018) thread_id(26018) - (null) correlation_id(71) time_ns(0:0) external_id(31) - hipFree correlation_id(71) time_ns(43920005096466:43920005180628) process_id(26018) thread_id(26018) - (null) correlation_id(72) time_ns(0:0) external_id(31) - hipFree correlation_id(72) time_ns(43920005188773:43920005230304) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(94) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(94) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(95) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(95) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (82) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (81) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(105) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(105) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(106) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(106) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (80) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (79) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(116) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(116) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(117) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(117) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (78) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (77) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(127) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(127) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(128) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(128) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (76) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (75) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(73) time_ns(43920024248405:43920024258205) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(74) time_ns(43920024265683:43920024283668) process_id(26018) thread_id(26018) - hipMalloc correlation_id(75) time_ns(43920026559240:43920026611318) process_id(26018) thread_id(26018) - hipMalloc correlation_id(76) time_ns(43920026615907:43920026649989) process_id(26018) thread_id(26018) - (null) correlation_id(77) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(77) time_ns(43920026655081:43920027272261) process_id(26018) thread_id(26018) - (null) correlation_id(78) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(78) time_ns(43920027297980:43920027317667) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(78) time_ns(43920027322208:43920027811488) device_id(0) queue_id(0) - hcCommandMarker correlation_id(79) time_ns(43920027814269:43920027820669) device_id(0) queue_id(0) - (null) correlation_id(79) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(79) time_ns(43920027332354:43920028712656) process_id(26018) thread_id(26018) - (null) correlation_id(80) time_ns(0:0) external_id(31) - hipFree correlation_id(80) time_ns(43920043735027:43920043830120) process_id(26018) thread_id(26018) - (null) correlation_id(81) time_ns(0:0) external_id(31) - hipFree correlation_id(81) time_ns(43920043838524:43920043869635) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(82) time_ns(43920063280596:43920063290751) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(83) time_ns(43920063294643:43920063297153) process_id(26018) thread_id(26018) - hipMalloc correlation_id(84) time_ns(43920065468754:43920065529740) process_id(26018) thread_id(26018) - hipMalloc correlation_id(85) time_ns(43920065543552:43920065574620) process_id(26018) thread_id(26018) - (null) correlation_id(86) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(86) time_ns(43920065580222:43920066252159) process_id(26018) thread_id(26018) - (null) correlation_id(87) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(87) time_ns(43920066266167:43920066308515) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(87) time_ns(43920066313259:43920066799819) device_id(0) queue_id(0) - hcCommandMarker correlation_id(88) time_ns(43920066802992:43920066809392) device_id(0) queue_id(0) - (null) correlation_id(88) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(88) time_ns(43920066313737:43920067717901) process_id(26018) thread_id(26018) - (null) correlation_id(89) time_ns(0:0) external_id(31) - hipFree correlation_id(89) time_ns(43920082315955:43920082399850) process_id(26018) thread_id(26018) - (null) correlation_id(90) time_ns(0:0) external_id(31) - hipFree correlation_id(90) time_ns(43920082407867:43920082448518) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(91) time_ns(43920101445651:43920101455239) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(92) time_ns(43920101459000:43920101461431) process_id(26018) thread_id(26018) - hipMalloc correlation_id(93) time_ns(43920103635567:43920103686083) process_id(26018) thread_id(26018) - hipMalloc correlation_id(94) time_ns(43920103690637:43920103729736) process_id(26018) thread_id(26018) - (null) correlation_id(95) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(95) time_ns(43920103734659:43920104370021) process_id(26018) thread_id(26018) - (null) correlation_id(96) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(96) time_ns(43920104383906:43920104426176) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(96) time_ns(43920104430511:43920104915631) device_id(0) queue_id(0) - hcCommandMarker correlation_id(97) time_ns(43920104918555:43920104924955) device_id(0) queue_id(0) - (null) correlation_id(97) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(97) time_ns(43920104433032:43920105821164) process_id(26018) thread_id(26018) - (null) correlation_id(98) time_ns(0:0) external_id(31) - hipFree correlation_id(98) time_ns(43920120431824:43920120518064) process_id(26018) thread_id(26018) - (null) correlation_id(99) time_ns(0:0) external_id(31) - hipFree correlation_id(99) time_ns(43920120526072:43920120566935) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(100) time_ns(43920139450245:43920139460971) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(101) time_ns(43920139464609:43920139466959) process_id(26018) thread_id(26018) - hipMalloc correlation_id(102) time_ns(43920141603743:43920141662566) process_id(26018) thread_id(26018) - hipMalloc correlation_id(103) time_ns(43920141666874:43920141696276) process_id(26018) thread_id(26018) - (null) correlation_id(104) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(104) time_ns(43920141701119:43920142339410) process_id(26018) thread_id(26018) - (null) correlation_id(105) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(105) time_ns(43920142365496:43920142398740) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(105) time_ns(43920142403595:43920142893835) device_id(0) queue_id(0) - hcCommandMarker correlation_id(106) time_ns(43920142896514:43920142903074) device_id(0) queue_id(0) - (null) correlation_id(106) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(106) time_ns(43920142412825:43920143782901) process_id(26018) thread_id(26018) - (null) correlation_id(107) time_ns(0:0) external_id(31) - hipFree correlation_id(107) time_ns(43920158375045:43920158457393) process_id(26018) thread_id(26018) - (null) correlation_id(108) time_ns(0:0) external_id(31) - hipFree correlation_id(108) time_ns(43920158464539:43920158494063) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(138) on-enter pid(1942) tid(1942)> + +<__hipPushCallConfiguration id(46) correlation_id(138) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(139) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(139) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (74) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (73) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(149) on-enter pid(1942) tid(1942)> + +<__hipPushCallConfiguration id(46) correlation_id(149) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(150) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(150) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (72) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (71) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(160) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(160) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(161) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(161) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (70) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (69) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(171) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(171) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(172) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(172) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (68) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (67) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(109) time_ns(43920177497206:43920177507270) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(110) time_ns(43920177515459:43920177532898) process_id(26018) thread_id(26018) - hipMalloc correlation_id(111) time_ns(43920179786002:43920179827550) process_id(26018) thread_id(26018) - hipMalloc correlation_id(112) time_ns(43920179832078:43920179852569) process_id(26018) thread_id(26018) - (null) correlation_id(113) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(113) time_ns(43920179857787:43920180481752) process_id(26018) thread_id(26018) - (null) correlation_id(114) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(114) time_ns(43920180497441:43920180517435) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(114) time_ns(43920180521982:43920181004702) device_id(0) queue_id(0) - hcCommandMarker correlation_id(115) time_ns(43920181007827:43920181014227) device_id(0) queue_id(0) - (null) correlation_id(115) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(115) time_ns(43920180522885:43920181902961) process_id(26018) thread_id(26018) - (null) correlation_id(116) time_ns(0:0) external_id(31) - hipFree correlation_id(116) time_ns(43920197036668:43920197113694) process_id(26018) thread_id(26018) - (null) correlation_id(117) time_ns(0:0) external_id(31) - hipFree correlation_id(117) time_ns(43920197121846:43920197142600) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(118) time_ns(43920216590866:43920216600715) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(119) time_ns(43920216615023:43920216617575) process_id(26018) thread_id(26018) - hipMalloc correlation_id(120) time_ns(43920218815784:43920218868252) process_id(26018) thread_id(26018) - hipMalloc correlation_id(121) time_ns(43920218871899:43920218891811) process_id(26018) thread_id(26018) - (null) correlation_id(122) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(122) time_ns(43920218896006:43920219538967) process_id(26018) thread_id(26018) - (null) correlation_id(123) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(123) time_ns(43920219564972:43920219587384) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(123) time_ns(43920219591883:43920220070923) device_id(0) queue_id(0) - hcCommandMarker correlation_id(124) time_ns(43920220073967:43920220080367) device_id(0) queue_id(0) - (null) correlation_id(124) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(124) time_ns(43920219591647:43920221000029) process_id(26018) thread_id(26018) - (null) correlation_id(125) time_ns(0:0) external_id(31) - hipFree correlation_id(125) time_ns(43920235976744:43920236058470) process_id(26018) thread_id(26018) - (null) correlation_id(126) time_ns(0:0) external_id(31) - hipFree correlation_id(126) time_ns(43920236066504:43920236087495) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(127) time_ns(43920255505367:43920255515723) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(128) time_ns(43920255530091:43920255532592) process_id(26018) thread_id(26018) - hipMalloc correlation_id(129) time_ns(43920257737909:43920257798351) process_id(26018) thread_id(26018) - hipMalloc correlation_id(130) time_ns(43920257802950:43920257833876) process_id(26018) thread_id(26018) - (null) correlation_id(131) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(131) time_ns(43920257838880:43920258484189) process_id(26018) thread_id(26018) - (null) correlation_id(132) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(132) time_ns(43920258510220:43920258532330) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(132) time_ns(43920258536675:43920259022435) device_id(0) queue_id(0) - hcCommandMarker correlation_id(133) time_ns(43920259025365:43920259031925) device_id(0) queue_id(0) - (null) correlation_id(133) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(133) time_ns(43920258548670:43920259912323) process_id(26018) thread_id(26018) - (null) correlation_id(134) time_ns(0:0) external_id(31) - hipFree correlation_id(134) time_ns(43920274940667:43920275035653) process_id(26018) thread_id(26018) - (null) correlation_id(135) time_ns(0:0) external_id(31) - hipFree correlation_id(135) time_ns(43920275043862:43920275074141) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(136) time_ns(43920294706364:43920294716008) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(137) time_ns(43920294729778:43920294732184) process_id(26018) thread_id(26018) - hipMalloc correlation_id(138) time_ns(43920296920620:43920296980761) process_id(26018) thread_id(26018) - hipMalloc correlation_id(139) time_ns(43920296985077:43920297024027) process_id(26018) thread_id(26018) - (null) correlation_id(140) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(140) time_ns(43920297028943:43920297695069) process_id(26018) thread_id(26018) - (null) correlation_id(141) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(141) time_ns(43920297719426:43920297750933) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(141) time_ns(43920297755677:43920298238717) device_id(0) queue_id(0) - hcCommandMarker correlation_id(142) time_ns(43920298241601:43920298248161) device_id(0) queue_id(0) - (null) correlation_id(142) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(142) time_ns(43920297757169:43920299132626) process_id(26018) thread_id(26018) - (null) correlation_id(143) time_ns(0:0) external_id(31) - hipFree correlation_id(143) time_ns(43920314047193:43920314119813) process_id(26018) thread_id(26018) - (null) correlation_id(144) time_ns(0:0) external_id(31) - hipFree correlation_id(144) time_ns(43920314136742:43920314165590) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(182) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(182) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(183) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(183) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (66) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (65) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(193) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(193) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(194) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(194) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (64) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (63) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(204) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(204) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(205) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(205) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (62) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (61) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(215) on-enter pid(1942) tid(1942)> + +<__hipPushCallConfiguration id(46) correlation_id(215) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(216) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(216) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (60) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (59) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(145) time_ns(43920333424871:43920333433642) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(146) time_ns(43920333441178:43920333443356) process_id(26018) thread_id(26018) - hipMalloc correlation_id(147) time_ns(43920335747560:43920335796102) process_id(26018) thread_id(26018) - hipMalloc correlation_id(148) time_ns(43920335800239:43920335829210) process_id(26018) thread_id(26018) - (null) correlation_id(149) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(149) time_ns(43920335832924:43920336479667) process_id(26018) thread_id(26018) - (null) correlation_id(150) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(150) time_ns(43920336503335:43920336524077) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(150) time_ns(43920336530052:43920338362534) device_id(0) queue_id(0) - hcCommandMarker correlation_id(151) time_ns(43920338365386:43920338397066) device_id(0) queue_id(0) - (null) correlation_id(151) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(151) time_ns(43920336542581:43920339346540) process_id(26018) thread_id(26018) - (null) correlation_id(152) time_ns(0:0) external_id(31) - hipFree correlation_id(152) time_ns(43920354412023:43920354483873) process_id(26018) thread_id(26018) - (null) correlation_id(153) time_ns(0:0) external_id(31) - hipFree correlation_id(153) time_ns(43920354490780:43920354511483) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(154) time_ns(43920375386080:43920375395385) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(155) time_ns(43920375399196:43920375401534) process_id(26018) thread_id(26018) - hipMalloc correlation_id(156) time_ns(43920377629120:43920377678349) process_id(26018) thread_id(26018) - hipMalloc correlation_id(157) time_ns(43920377682585:43920377721038) process_id(26018) thread_id(26018) - (null) correlation_id(158) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(158) time_ns(43920377726156:43920378387108) process_id(26018) thread_id(26018) - (null) correlation_id(159) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(159) time_ns(43920378400808:43920378432890) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(159) time_ns(43920378438928:43920380274130) device_id(0) queue_id(0) - hcCommandMarker correlation_id(160) time_ns(43920380277169:43920380308849) device_id(0) queue_id(0) - (null) correlation_id(160) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(160) time_ns(43920378438596:43920381221551) process_id(26018) thread_id(26018) - (null) correlation_id(161) time_ns(0:0) external_id(31) - hipFree correlation_id(161) time_ns(43920396338764:43920396434072) process_id(26018) thread_id(26018) - (null) correlation_id(162) time_ns(0:0) external_id(31) - hipFree correlation_id(162) time_ns(43920396442363:43920396473320) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(163) time_ns(43920417144356:43920417154408) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(164) time_ns(43920417158488:43920417161108) process_id(26018) thread_id(26018) - hipMalloc correlation_id(165) time_ns(43920419349538:43920419412157) process_id(26018) thread_id(26018) - hipMalloc correlation_id(166) time_ns(43920419425951:43920419456995) process_id(26018) thread_id(26018) - (null) correlation_id(167) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(167) time_ns(43920419462114:43920420144809) process_id(26018) thread_id(26018) - (null) correlation_id(168) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(168) time_ns(43920420169795:43920420202066) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(168) time_ns(43920420207913:43920422041035) device_id(0) queue_id(0) - hcCommandMarker correlation_id(169) time_ns(43920422043874:43920422075554) device_id(0) queue_id(0) - (null) correlation_id(169) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(169) time_ns(43920420223065:43920422968176) process_id(26018) thread_id(26018) - (null) correlation_id(170) time_ns(0:0) external_id(31) - hipFree correlation_id(170) time_ns(43920437958954:43920438055494) process_id(26018) thread_id(26018) - (null) correlation_id(171) time_ns(0:0) external_id(31) - hipFree correlation_id(171) time_ns(43920438063879:43920438095551) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(172) time_ns(43920458507019:43920458516803) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(173) time_ns(43920458520733:43920458523215) process_id(26018) thread_id(26018) - hipMalloc correlation_id(174) time_ns(43920460703767:43920460754215) process_id(26018) thread_id(26018) - hipMalloc correlation_id(175) time_ns(43920460758848:43920460797916) process_id(26018) thread_id(26018) - (null) correlation_id(176) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(176) time_ns(43920460802819:43920461459063) process_id(26018) thread_id(26018) - (null) correlation_id(177) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(177) time_ns(43920461473245:43920461515367) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(177) time_ns(43920461521018:43920463350780) device_id(0) queue_id(0) - hcCommandMarker correlation_id(178) time_ns(43920463353850:43920463385210) device_id(0) queue_id(0) - (null) correlation_id(178) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(178) time_ns(43920461520558:43920464309215) process_id(26018) thread_id(26018) - (null) correlation_id(179) time_ns(0:0) external_id(31) - hipFree correlation_id(179) time_ns(43920478864536:43920478953176) process_id(26018) thread_id(26018) - (null) correlation_id(180) time_ns(0:0) external_id(31) - hipFree correlation_id(180) time_ns(43920478961123:43920479003164) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(226) on-enter pid(1942) tid(1942)> + + +<__hipPushCallConfiguration id(46) correlation_id(226) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(227) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(227) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (58) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (57) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(237) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(237) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(238) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(238) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + Activity records: + CopyHostToDevice correlation_id(5) time_ns(3802689357753439:3802689359820964) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(8) time_ns(3802689360509153:3802689361716015) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(9) time_ns(3802689360494399:3802689363754703) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(16) time_ns(3802689388450536:3802689390236799) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(19) time_ns(3802689390364625:3802689391560377) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(20) time_ns(3802689390339380:3802689392863109) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(27) time_ns(3802689417071348:3802689418929841) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(30) time_ns(3802689419048112:3802689420269199) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(31) time_ns(3802689419022212:3802689421548811) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(38) time_ns(3802689445627269:3802689447410842) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(41) time_ns(3802689447529708:3802689448731388) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(42) time_ns(3802689447504943:3802689450274414) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(49) time_ns(3802689474527623:3802689476262806) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(52) time_ns(3802689476392929:3802689477590017) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(53) time_ns(3802689476368397:3802689478892916) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(60) time_ns(3802689503584638:3802689505372971) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(63) time_ns(3802689505491982:3802689506693367) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(64) time_ns(3802689505467392:3802689508275403) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(71) time_ns(3802689532911395:3802689534557317) device_id(0) queue_id(0) bytes(0x0) + + KernelExecution correlation_id(74) time_ns(3802689534682162:3802689535887548) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(75) time_ns(3802689534658038:3802689537442469) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(82) time_ns(3802689568906171:3802689571083467) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(85) time_ns(3802689571219087:3802689572419288) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(86) time_ns(3802689571196478:3802689573887058) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(93) time_ns(3802689598251069:3802689600026322) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(96) time_ns(3802689600145805:3802689601348525) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(97) time_ns(3802689600123213:3802689602806783) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(104) time_ns(3802689627157203:3802689628927696) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(107) time_ns(3802689629049519:3802689630268684) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(108) time_ns(3802689629026107:3802689631746766) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(115) time_ns(3802689656373389:3802689658143972) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(118) time_ns(3802689658259958:3802689659467419) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(119) time_ns(3802689658237262:3802689660957043) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(126) time_ns(3802689685271863:3802689687039926) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(129) time_ns(3802689687150718:3802689688366032) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(130) time_ns(3802689687128237:3802689689859986) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(137) time_ns(3802689714350448:3802689716112201) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(140) time_ns(3802689716240667:3802689717447388) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(141) time_ns(3802689716218291:3802689718928721) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(148) time_ns(3802689743475113:3802689745210346) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(151) time_ns(3802689745323253:3802689746515752) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(152) time_ns(3802689745300567:3802689747945637) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(159) time_ns(3802689772344187:3802689774110760) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(162) time_ns(3802689774218917:3802689775424898) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(163) time_ns(3802689774197411:3802689776949561) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(170) time_ns(3802689801298091:3802689803069634) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(173) time_ns(3802689803196613:3802689804402742) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(174) time_ns(3802689803174085:3802689805874665) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(181) time_ns(3802689830101304:3802689831827457) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(184) time_ns(3802689831926122:3802689833126473) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(185) time_ns(3802689831904148:3802689834480347) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(192) time_ns(3802689865137593:3802689866899836) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(195) time_ns(3802689867026811:3802689868235755) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(196) time_ns(3802689867002057:3802689869703907) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(203) time_ns(3802689897884796:3802689899652089) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(206) time_ns(3802689899768063:3802689900971081) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(207) time_ns(3802689899745690:3802689902449700) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(214) time_ns(3802689926756559:3802689928481312) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(217) time_ns(3802689928583331:3802689929779831) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(218) time_ns(3802689928561193:3802689931219843) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(225) time_ns(3802689955609923:3802689957386666) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(228) time_ns(3802689957512437:3802689958721530) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(229) time_ns(3802689957490037:3802689960198617) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(236) time_ns(3802689991781141:3802689993558264) device_id(0) queue_id(0) bytes(0x0) PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (56) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (55) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(248) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(248) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(249) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(249) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (54) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (53) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(259) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(259) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(260) on-enter pid(1942) tid(1942)> + + +<__hipPopCallConfiguration id(171) correlation_id(260) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (52) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (51) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(181) time_ns(43920499367711:43920499377582) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(182) time_ns(43920499385716:43920499403154) process_id(26018) thread_id(26018) - hipMalloc correlation_id(183) time_ns(43920501622778:43920501674383) process_id(26018) thread_id(26018) - hipMalloc correlation_id(184) time_ns(43920501678945:43920501699468) process_id(26018) thread_id(26018) - (null) correlation_id(185) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(185) time_ns(43920501703508:43920502345553) process_id(26018) thread_id(26018) - (null) correlation_id(186) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(186) time_ns(43920502370499:43920502392416) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(186) time_ns(43920502398238:43920504234720) device_id(0) queue_id(0) - hcCommandMarker correlation_id(187) time_ns(43920504237612:43920504268812) device_id(0) queue_id(0) - (null) correlation_id(187) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(187) time_ns(43920502405054:43920505255063) process_id(26018) thread_id(26018) - (null) correlation_id(188) time_ns(0:0) external_id(31) - hipFree correlation_id(188) time_ns(43920520240722:43920520316514) process_id(26018) thread_id(26018) - (null) correlation_id(189) time_ns(0:0) external_id(31) - hipFree correlation_id(189) time_ns(43920520324413:43920520345436) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(190) time_ns(43920541218871:43920541228479) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(191) time_ns(43920541242527:43920541245021) process_id(26018) thread_id(26018) - hipMalloc correlation_id(192) time_ns(43920543464395:43920543516287) process_id(26018) thread_id(26018) - hipMalloc correlation_id(193) time_ns(43920543520926:43920543541660) process_id(26018) thread_id(26018) - (null) correlation_id(194) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(194) time_ns(43920543545907:43920544200460) process_id(26018) thread_id(26018) - (null) correlation_id(195) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(195) time_ns(43920544217613:43920544237996) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(195) time_ns(43920544243948:43920546077870) device_id(0) queue_id(0) - hcCommandMarker correlation_id(196) time_ns(43920546080604:43920546111804) device_id(0) queue_id(0) - (null) correlation_id(196) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(196) time_ns(43920544244310:43920547036679) process_id(26018) thread_id(26018) - (null) correlation_id(197) time_ns(0:0) external_id(31) - hipFree correlation_id(197) time_ns(43920562017094:43920562094900) process_id(26018) thread_id(26018) - (null) correlation_id(198) time_ns(0:0) external_id(31) - hipFree correlation_id(198) time_ns(43920562102955:43920562124481) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(199) time_ns(43920583018408:43920583028474) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(200) time_ns(43920583042627:43920583045115) process_id(26018) thread_id(26018) - hipMalloc correlation_id(201) time_ns(43920585270556:43920585332071) process_id(26018) thread_id(26018) - hipMalloc correlation_id(202) time_ns(43920585336639:43920585367450) process_id(26018) thread_id(26018) - (null) correlation_id(203) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(203) time_ns(43920585372474:43920586059143) process_id(26018) thread_id(26018) - (null) correlation_id(204) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(204) time_ns(43920586083967:43920586126237) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(204) time_ns(43920586128540:43920587958142) device_id(0) queue_id(0) - hcCommandMarker correlation_id(205) time_ns(43920587960965:43920587992005) device_id(0) queue_id(0) - (null) correlation_id(205) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(205) time_ns(43920586131081:43920588895369) process_id(26018) thread_id(26018) - (null) correlation_id(206) time_ns(0:0) external_id(31) - hipFree correlation_id(206) time_ns(43920603439589:43920603524072) process_id(26018) thread_id(26018) - (null) correlation_id(207) time_ns(0:0) external_id(31) - hipFree correlation_id(207) time_ns(43920603531707:43920603561761) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(208) time_ns(43920622604080:43920622614399) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(209) time_ns(43920622618142:43920622620868) process_id(26018) thread_id(26018) - hipMalloc correlation_id(210) time_ns(43920624778940:43920624829571) process_id(26018) thread_id(26018) - hipMalloc correlation_id(211) time_ns(43920624834321:43920624873747) process_id(26018) thread_id(26018) - (null) correlation_id(212) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(212) time_ns(43920624878920:43920625540133) process_id(26018) thread_id(26018) - (null) correlation_id(213) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(213) time_ns(43920625553477:43920625595634) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(213) time_ns(43920625600275:43920626080915) device_id(0) queue_id(0) - hcCommandMarker correlation_id(214) time_ns(43920626083776:43920626090336) device_id(0) queue_id(0) - (null) correlation_id(214) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(214) time_ns(43920625601229:43920626984076) process_id(26018) thread_id(26018) - (null) correlation_id(215) time_ns(0:0) external_id(31) - hipFree correlation_id(215) time_ns(43920643218237:43920643310893) process_id(26018) thread_id(26018) - (null) correlation_id(216) time_ns(0:0) external_id(31) - hipFree correlation_id(216) time_ns(43920643320513:43920643352027) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(270) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(270) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(271) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(271) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (50) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (49) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(281) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(281) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(282) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(282) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (48) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (47) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(292) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(292) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(293) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(293) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (46) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (45) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(303) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(303) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(304) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(304) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (44) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (43) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(217) time_ns(43920666020999:43920666030269) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(218) time_ns(43920666038229:43920666055600) process_id(26018) thread_id(26018) - hipMalloc correlation_id(219) time_ns(43920668348779:43920668399665) process_id(26018) thread_id(26018) - hipMalloc correlation_id(220) time_ns(43920668404230:43920668424489) process_id(26018) thread_id(26018) - (null) correlation_id(221) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(221) time_ns(43920668428384:43920669051392) process_id(26018) thread_id(26018) - (null) correlation_id(222) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(222) time_ns(43920669065575:43920669085593) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(222) time_ns(43920669090002:43920669572562) device_id(0) queue_id(0) - hcCommandMarker correlation_id(223) time_ns(43920669575663:43920669582063) device_id(0) queue_id(0) - (null) correlation_id(223) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(223) time_ns(43920669098489:43920670513054) process_id(26018) thread_id(26018) - (null) correlation_id(224) time_ns(0:0) external_id(31) - hipFree correlation_id(224) time_ns(43920685397017:43920685473162) process_id(26018) thread_id(26018) - (null) correlation_id(225) time_ns(0:0) external_id(31) - hipFree correlation_id(225) time_ns(43920685479905:43920685512566) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(226) time_ns(43920705150133:43920705159677) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(227) time_ns(43920705173708:43920705176392) process_id(26018) thread_id(26018) - hipMalloc correlation_id(228) time_ns(43920707387559:43920707430491) process_id(26018) thread_id(26018) - hipMalloc correlation_id(229) time_ns(43920707435147:43920707470153) process_id(26018) thread_id(26018) - (null) correlation_id(230) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(230) time_ns(43920707475630:43920708182956) process_id(26018) thread_id(26018) - (null) correlation_id(231) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(231) time_ns(43920708207221:43920708239190) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(231) time_ns(43920708243795:43920708730515) device_id(0) queue_id(0) - hcCommandMarker correlation_id(232) time_ns(43920708733523:43920708739923) device_id(0) queue_id(0) - (null) correlation_id(232) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(232) time_ns(43920708256261:43920709683783) process_id(26018) thread_id(26018) - (null) correlation_id(233) time_ns(0:0) external_id(31) - hipFree correlation_id(233) time_ns(43920724460404:43920724556178) process_id(26018) thread_id(26018) - (null) correlation_id(234) time_ns(0:0) external_id(31) - hipFree correlation_id(234) time_ns(43920724572710:43920724594556) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(235) time_ns(43920743984215:43920743994889) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(236) time_ns(43920744014042:43920744016716) process_id(26018) thread_id(26018) - hipMalloc correlation_id(237) time_ns(43920746243929:43920746297000) process_id(26018) thread_id(26018) - hipMalloc correlation_id(238) time_ns(43920746301846:43920746336170) process_id(26018) thread_id(26018) - (null) correlation_id(239) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(239) time_ns(43920746341361:43920747007258) process_id(26018) thread_id(26018) - (null) correlation_id(240) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(240) time_ns(43920747031130:43920747062527) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(240) time_ns(43920747067044:43920747547684) device_id(0) queue_id(0) - hcCommandMarker correlation_id(241) time_ns(43920747550583:43920747556983) device_id(0) queue_id(0) - (null) correlation_id(241) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(241) time_ns(43920747079308:43920748473916) process_id(26018) thread_id(26018) - (null) correlation_id(242) time_ns(0:0) external_id(31) - hipFree correlation_id(242) time_ns(43920763170720:43920763246399) process_id(26018) thread_id(26018) - (null) correlation_id(243) time_ns(0:0) external_id(31) - hipFree correlation_id(243) time_ns(43920763252618:43920763275167) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(244) time_ns(43920782448748:43920782459129) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(245) time_ns(43920782473429:43920782475994) process_id(26018) thread_id(26018) - hipMalloc correlation_id(246) time_ns(43920784710468:43920784772042) process_id(26018) thread_id(26018) - hipMalloc correlation_id(247) time_ns(43920784785829:43920784816945) process_id(26018) thread_id(26018) - (null) correlation_id(248) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(248) time_ns(43920784822573:43920785492182) process_id(26018) thread_id(26018) - (null) correlation_id(249) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(249) time_ns(43920785517018:43920785549020) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(249) time_ns(43920785553423:43920786043343) device_id(0) queue_id(0) - hcCommandMarker correlation_id(250) time_ns(43920786046386:43920786052786) device_id(0) queue_id(0) - (null) correlation_id(250) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(250) time_ns(43920785565953:43920786973352) process_id(26018) thread_id(26018) - (null) correlation_id(251) time_ns(0:0) external_id(31) - hipFree correlation_id(251) time_ns(43920801451681:43920801539089) process_id(26018) thread_id(26018) - (null) correlation_id(252) time_ns(0:0) external_id(31) - hipFree correlation_id(252) time_ns(43920801556603:43920801591359) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(314) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(314) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(315) on-enter pid(1942) tid(1942)> + + +<__hipPopCallConfiguration id(171) correlation_id(315) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (42) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (41) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(325) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(325) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(326) on-enter pid(1942) tid(1942)> + + +<__hipPopCallConfiguration id(171) correlation_id(326) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (40) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (39) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(336) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(336) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(337) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(337) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (38) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (37) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(347) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(347) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(348) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(348) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (36) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (35) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(253) time_ns(43920820624535:43920820635278) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(254) time_ns(43920820643992:43920820647313) process_id(26018) thread_id(26018) - hipMalloc correlation_id(255) time_ns(43920822884950:43920822930277) process_id(26018) thread_id(26018) - hipMalloc correlation_id(256) time_ns(43920822935552:43920822963087) process_id(26018) thread_id(26018) - (null) correlation_id(257) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(257) time_ns(43920822969192:43920823591588) process_id(26018) thread_id(26018) - (null) correlation_id(258) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(258) time_ns(43920823608075:43920823630958) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(258) time_ns(43920823635296:43920824125856) device_id(0) queue_id(0) - hcCommandMarker correlation_id(259) time_ns(43920824129106:43920824135506) device_id(0) queue_id(0) - (null) correlation_id(259) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(259) time_ns(43920823647271:43920825034897) process_id(26018) thread_id(26018) - (null) correlation_id(260) time_ns(0:0) external_id(31) - hipFree correlation_id(260) time_ns(43920839905243:43920839987167) process_id(26018) thread_id(26018) - (null) correlation_id(261) time_ns(0:0) external_id(31) - hipFree correlation_id(261) time_ns(43920839994296:43920840054469) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(262) time_ns(43920859160717:43920859171500) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(263) time_ns(43920859176081:43920859179117) process_id(26018) thread_id(26018) - hipMalloc correlation_id(264) time_ns(43920861387403:43920861432677) process_id(26018) thread_id(26018) - hipMalloc correlation_id(265) time_ns(43920861437722:43920861475065) process_id(26018) thread_id(26018) - (null) correlation_id(266) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(266) time_ns(43920861493721:43920862104606) process_id(26018) thread_id(26018) - (null) correlation_id(267) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(267) time_ns(43920862132081:43920862186320) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(267) time_ns(43920862190789:43920862672549) device_id(0) queue_id(0) - hcCommandMarker correlation_id(268) time_ns(43920862675430:43920862681830) device_id(0) queue_id(0) - (null) correlation_id(268) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(268) time_ns(43920862193506:43920863614349) process_id(26018) thread_id(26018) - (null) correlation_id(269) time_ns(0:0) external_id(31) - hipFree correlation_id(269) time_ns(43920878207310:43920878306027) process_id(26018) thread_id(26018) - (null) correlation_id(270) time_ns(0:0) external_id(31) - hipFree correlation_id(270) time_ns(43920878313265:43920878348501) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(271) time_ns(43920897517489:43920897528697) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(272) time_ns(43920897533549:43920897536696) process_id(26018) thread_id(26018) - hipMalloc correlation_id(273) time_ns(43920899712249:43920899791035) process_id(26018) thread_id(26018) - hipMalloc correlation_id(274) time_ns(43920899796292:43920899833487) process_id(26018) thread_id(26018) - (null) correlation_id(275) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(275) time_ns(43920899849267:43920900515209) process_id(26018) thread_id(26018) - (null) correlation_id(276) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(276) time_ns(43920900546163:43920900594603) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(276) time_ns(43920900598990:43920901082030) device_id(0) queue_id(0) - hcCommandMarker correlation_id(277) time_ns(43920901084743:43920901091303) device_id(0) queue_id(0) - (null) correlation_id(277) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(277) time_ns(43920900601805:43920902055221) process_id(26018) thread_id(26018) - (null) correlation_id(278) time_ns(0:0) external_id(31) - hipFree correlation_id(278) time_ns(43920916576640:43920916674128) process_id(26018) thread_id(26018) - (null) correlation_id(279) time_ns(0:0) external_id(31) - hipFree correlation_id(279) time_ns(43920916681130:43920916716651) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(280) time_ns(43920935854803:43920935865488) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(281) time_ns(43920935870334:43920935873387) process_id(26018) thread_id(26018) - hipMalloc correlation_id(282) time_ns(43920938100083:43920938166114) process_id(26018) thread_id(26018) - hipMalloc correlation_id(283) time_ns(43920938171363:43920938232503) process_id(26018) thread_id(26018) - (null) correlation_id(284) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(284) time_ns(43920938238248:43920938899238) process_id(26018) thread_id(26018) - (null) correlation_id(285) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(285) time_ns(43920938915318:43920938959020) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(285) time_ns(43920938963415:43920939453335) device_id(0) queue_id(0) - hcCommandMarker correlation_id(286) time_ns(43920939456319:43920939462879) device_id(0) queue_id(0) - (null) correlation_id(286) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(286) time_ns(43920938976800:43920940430790) process_id(26018) thread_id(26018) - (null) correlation_id(287) time_ns(0:0) external_id(31) - hipFree correlation_id(287) time_ns(43920954960974:43920955062324) process_id(26018) thread_id(26018) - (null) correlation_id(288) time_ns(0:0) external_id(31) - hipFree correlation_id(288) time_ns(43920955069328:43920955128332) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(358) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(358) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(359) on-enter pid(1942) tid(1942)> + + +<__hipPopCallConfiguration id(171) correlation_id(359) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (34) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (33) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(369) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(369) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(370) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(370) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (32) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (31) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(380) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(380) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(381) on-enter pid(1942) tid(1942)> + + +<__hipPopCallConfiguration id(171) correlation_id(381) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (30) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (29) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(391) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(391) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(392) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(392) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (28) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (27) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(289) time_ns(43920975540410:43920975550199) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(290) time_ns(43920975559821:43920975563131) process_id(26018) thread_id(26018) - hipMalloc correlation_id(291) time_ns(43920977888564:43920977942265) process_id(26018) thread_id(26018) - hipMalloc correlation_id(292) time_ns(43920977947955:43920977994802) process_id(26018) thread_id(26018) - (null) correlation_id(293) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(293) time_ns(43920978000874:43920978649830) process_id(26018) thread_id(26018) - (null) correlation_id(294) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(294) time_ns(43920978675299:43920978698163) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(294) time_ns(43920978703807:43920980536129) device_id(0) queue_id(0) - hcCommandMarker correlation_id(295) time_ns(43920980539035:43920980570715) device_id(0) queue_id(0) - (null) correlation_id(295) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(295) time_ns(43920978712207:43920981490497) process_id(26018) thread_id(26018) - (null) correlation_id(296) time_ns(0:0) external_id(31) - hipFree correlation_id(296) time_ns(43920996042565:43920996156653) process_id(26018) thread_id(26018) - (null) correlation_id(297) time_ns(0:0) external_id(31) - hipFree correlation_id(297) time_ns(43920996163576:43920996187894) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(298) time_ns(43921016881914:43921016892494) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(299) time_ns(43921016897146:43921016900202) process_id(26018) thread_id(26018) - hipMalloc correlation_id(300) time_ns(43921019118474:43921019194418) process_id(26018) thread_id(26018) - hipMalloc correlation_id(301) time_ns(43921019199806:43921019257280) process_id(26018) thread_id(26018) - (null) correlation_id(302) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(302) time_ns(43921019263264:43921019929767) process_id(26018) thread_id(26018) - (null) correlation_id(303) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(303) time_ns(43921019956914:43921019980342) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(303) time_ns(43921019991073:43921021822915) device_id(0) queue_id(0) - hcCommandMarker correlation_id(304) time_ns(43921021825996:43921021857836) device_id(0) queue_id(0) - (null) correlation_id(304) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(304) time_ns(43921019997251:43921022798970) process_id(26018) thread_id(26018) - (null) correlation_id(305) time_ns(0:0) external_id(31) - hipFree correlation_id(305) time_ns(43921037701050:43921037803547) process_id(26018) thread_id(26018) - (null) correlation_id(306) time_ns(0:0) external_id(31) - hipFree correlation_id(306) time_ns(43921037810513:43921037856078) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(307) time_ns(43921058807427:43921058819022) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(308) time_ns(43921058823836:43921058826917) process_id(26018) thread_id(26018) - hipMalloc correlation_id(309) time_ns(43921061081162:43921061148125) process_id(26018) thread_id(26018) - hipMalloc correlation_id(310) time_ns(43921061153340:43921061190459) process_id(26018) thread_id(26018) - (null) correlation_id(311) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(311) time_ns(43921061196492:43921061858014) process_id(26018) thread_id(26018) - (null) correlation_id(312) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(312) time_ns(43921061889434:43921061937548) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(312) time_ns(43921061942968:43921063772730) device_id(0) queue_id(0) - hcCommandMarker correlation_id(313) time_ns(43921063775552:43921063806912) device_id(0) queue_id(0) - (null) correlation_id(313) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(313) time_ns(43921061954491:43921064822971) process_id(26018) thread_id(26018) - (null) correlation_id(314) time_ns(0:0) external_id(31) - hipFree correlation_id(314) time_ns(43921079416666:43921079526675) process_id(26018) thread_id(26018) - (null) correlation_id(315) time_ns(0:0) external_id(31) - hipFree correlation_id(315) time_ns(43921079533802:43921079559437) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(316) time_ns(43921100121369:43921100132102) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(317) time_ns(43921100136746:43921100139699) process_id(26018) thread_id(26018) - hipMalloc correlation_id(318) time_ns(43921102315570:43921102380775) process_id(26018) thread_id(26018) - hipMalloc correlation_id(319) time_ns(43921102385829:43921102436812) process_id(26018) thread_id(26018) - (null) correlation_id(320) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(320) time_ns(43921102453760:43921103131787) process_id(26018) thread_id(26018) - (null) correlation_id(321) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(321) time_ns(43921103163853:43921103197525) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(321) time_ns(43921103203336:43921105056938) device_id(0) queue_id(0) - hcCommandMarker correlation_id(322) time_ns(43921105059764:43921105090964) device_id(0) queue_id(0) - (null) correlation_id(322) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(322) time_ns(43921103213907:43921106046978) process_id(26018) thread_id(26018) - (null) correlation_id(323) time_ns(0:0) external_id(31) - hipFree correlation_id(323) time_ns(43921120538904:43921120638341) process_id(26018) thread_id(26018) - (null) correlation_id(324) time_ns(0:0) external_id(31) - hipFree correlation_id(324) time_ns(43921120645481:43921120669957) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(402) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(402) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(403) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(403) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (26) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (25) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(413) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(413) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(414) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(414) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (24) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (23) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(424) on-enter pid(1942) tid(1942)> + +<__hipPushCallConfiguration id(46) correlation_id(424) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(425) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(425) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (22) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (21) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(435) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(435) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(436) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(436) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (20) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (19) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(325) time_ns(43921141121385:43921141131686) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(326) time_ns(43921141141015:43921141144318) process_id(26018) thread_id(26018) - hipMalloc correlation_id(327) time_ns(43921143379778:43921143424403) process_id(26018) thread_id(26018) - hipMalloc correlation_id(328) time_ns(43921143429762:43921143457254) process_id(26018) thread_id(26018) - (null) correlation_id(329) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(329) time_ns(43921143462889:43921144101308) process_id(26018) thread_id(26018) - (null) correlation_id(330) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(330) time_ns(43921144117974:43921144141645) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(330) time_ns(43921144154951:43921145993033) device_id(0) queue_id(0) - hcCommandMarker correlation_id(331) time_ns(43921145996071:43921146027751) device_id(0) queue_id(0) - (null) correlation_id(331) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(331) time_ns(43921144157864:43921146933105) process_id(26018) thread_id(26018) - (null) correlation_id(332) time_ns(0:0) external_id(31) - hipFree correlation_id(332) time_ns(43921161567245:43921161664885) process_id(26018) thread_id(26018) - (null) correlation_id(333) time_ns(0:0) external_id(31) - hipFree correlation_id(333) time_ns(43921161672647:43921161707686) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(334) time_ns(43921182225886:43921182236849) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(335) time_ns(43921182241435:43921182244892) process_id(26018) thread_id(26018) - hipMalloc correlation_id(336) time_ns(43921184425237:43921184471258) process_id(26018) thread_id(26018) - hipMalloc correlation_id(337) time_ns(43921184476351:43921184514698) process_id(26018) thread_id(26018) - (null) correlation_id(338) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(338) time_ns(43921184529481:43921185198143) process_id(26018) thread_id(26018) - (null) correlation_id(339) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(339) time_ns(43921185229262:43921185261858) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(339) time_ns(43921185267413:43921187105015) device_id(0) queue_id(0) - hcCommandMarker correlation_id(340) time_ns(43921187108072:43921187139272) device_id(0) queue_id(0) - (null) correlation_id(340) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(340) time_ns(43921185267704:43921188146942) process_id(26018) thread_id(26018) - (null) correlation_id(341) time_ns(0:0) external_id(31) - hipFree correlation_id(341) time_ns(43921202654750:43921202753380) process_id(26018) thread_id(26018) - (null) correlation_id(342) time_ns(0:0) external_id(31) - hipFree correlation_id(342) time_ns(43921202760642:43921202785962) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(343) time_ns(43921223247405:43921223258592) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(344) time_ns(43921223263613:43921223266832) process_id(26018) thread_id(26018) - hipMalloc correlation_id(345) time_ns(43921225447018:43921225512689) process_id(26018) thread_id(26018) - hipMalloc correlation_id(346) time_ns(43921225517870:43921225555644) process_id(26018) thread_id(26018) - (null) correlation_id(347) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(347) time_ns(43921225571475:43921226241784) process_id(26018) thread_id(26018) - (null) correlation_id(348) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(348) time_ns(43921226268698:43921226293781) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(348) time_ns(43921226298138:43921226779098) device_id(0) queue_id(0) - hcCommandMarker correlation_id(349) time_ns(43921226781891:43921226788451) device_id(0) queue_id(0) - (null) correlation_id(349) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(349) time_ns(43921226300142:43921227705747) process_id(26018) thread_id(26018) - (null) correlation_id(350) time_ns(0:0) external_id(31) - hipFree correlation_id(350) time_ns(43921242198953:43921242300021) process_id(26018) thread_id(26018) - (null) correlation_id(351) time_ns(0:0) external_id(31) - hipFree correlation_id(351) time_ns(43921242307136:43921242331883) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(352) time_ns(43921261502305:43921261513097) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(353) time_ns(43921261517771:43921261520828) process_id(26018) thread_id(26018) - hipMalloc correlation_id(354) time_ns(43921263694962:43921263740171) process_id(26018) thread_id(26018) - hipMalloc correlation_id(355) time_ns(43921263745336:43921263782959) process_id(26018) thread_id(26018) - (null) correlation_id(356) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(356) time_ns(43921263797785:43921264452177) process_id(26018) thread_id(26018) - (null) correlation_id(357) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(357) time_ns(43921264479507:43921264504552) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(357) time_ns(43921264514694:43921264998374) device_id(0) queue_id(0) - hcCommandMarker correlation_id(358) time_ns(43921265001322:43921265007882) device_id(0) queue_id(0) - (null) correlation_id(358) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(358) time_ns(43921264519475:43921265946447) process_id(26018) thread_id(26018) - (null) correlation_id(359) time_ns(0:0) external_id(31) - hipFree correlation_id(359) time_ns(43921280480304:43921280577911) process_id(26018) thread_id(26018) - (null) correlation_id(360) time_ns(0:0) external_id(31) - hipFree correlation_id(360) time_ns(43921280585216:43921280622787) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(446) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(446) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(447) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(447) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (18) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (17) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(457) on-enter pid(1942) tid(1942)> + +<__hipPushCallConfiguration id(46) correlation_id(457) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(458) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(458) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (16) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (15) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(468) on-enter pid(1942) tid(1942)> + +<__hipPushCallConfiguration id(46) correlation_id(468) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(469) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(469) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + Activity records: + KernelExecution correlation_id(239) time_ns(3802689993685890:3802689994885798) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(240) time_ns(3802689993663315:3802689996358915) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(247) time_ns(3802690031123922:3802690032889585) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(250) time_ns(3802690033038570:3802690034233145) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(251) time_ns(3802690033000496:3802690035707796) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(258) time_ns(3802690069577877:3802690071673662) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(261) time_ns(3802690071795755:3802690072981885) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(262) time_ns(3802690071790403:3802690074510663) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(269) time_ns(3802690102545660:3802690104304184) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(272) time_ns(3802690104411556:3802690105625243) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(273) time_ns(3802690104389104:3802690107112784) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(280) time_ns(3802690131558935:3802690133335408) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(283) time_ns(3802690133445199:3802690134629107) device_id(0) queue_id(0) + + CopyDeviceToHost correlation_id(284) time_ns(3802690133422569:3802690136140989) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(291) time_ns(3802690167034608:3802690168657280) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(294) time_ns(3802690168789063:3802690170003787) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(295) time_ns(3802690168766891:3802690171340180) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(302) time_ns(3802690195688289:3802690197344472) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(305) time_ns(3802690197449423:3802690198661481) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(306) time_ns(3802690197424572:3802690200014721) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(313) time_ns(3802690220402982:3802690222055305) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(316) time_ns(3802690222166388:3802690223363482) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(317) time_ns(3802690222141795:3802690224699834) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(324) time_ns(3802690245122495:3802690246784468) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(327) time_ns(3802690246894986:3802690248087932) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(328) time_ns(3802690246871188:3802690249418597) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(335) time_ns(3802690270188291:3802690271814643) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(338) time_ns(3802690271918848:3802690273116387) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(339) time_ns(3802690271894944:3802690274461413) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(346) time_ns(3802690295200996:3802690296850979) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(349) time_ns(3802690296963231:3802690298173955) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(350) time_ns(3802690296939859:3802690299519248) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(357) time_ns(3802690319872949:3802690321555801) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(360) time_ns(3802690321670066:3802690322864493) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(361) time_ns(3802690321646962:3802690324208270) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(368) time_ns(3802690344589472:3802690346255644) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(371) time_ns(3802690346384125:3802690347586552) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(372) time_ns(3802690346359875:3802690348934544) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(379) time_ns(3802690369710317:3802690371360450) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(382) time_ns(3802690371472085:3802690372667105) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(383) time_ns(3802690371447790:3802690374014749) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(390) time_ns(3802690394647852:3802690396291654) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(393) time_ns(3802690396424310:3802690397614441) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(394) time_ns(3802690396399865:3802690398961354) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(401) time_ns(3802690419709788:3802690421361060) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(404) time_ns(3802690421479726:3802690422686154) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(405) time_ns(3802690421455441:3802690424043930) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(412) time_ns(3802690444425501:3802690446087443) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(415) time_ns(3802690446218326:3802690447432754) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(416) time_ns(3802690446193234:3802690448783253) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(423) time_ns(3802690478670644:3802690480440297) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(426) time_ns(3802690480559580:3802690481756379) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(427) time_ns(3802690480534798:3802690483102717) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(434) time_ns(3802690504037312:3802690505956956) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(437) time_ns(3802690506085433:3802690507285787) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(438) time_ns(3802690506036326:3802690508620526) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(445) time_ns(3802690528987496:3802690530655309) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(448) time_ns(3802690530758005:3802690531954211) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(449) time_ns(3802690530733779:3802690533303998) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(456) time_ns(3802690553812080:3802690555470253) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(459) time_ns(3802690555591760:3802690556795225) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(460) time_ns(3802690555567703:3802690558144852) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(467) time_ns(3802690578543713:3802690580188266) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(470) time_ns(3802690580319188:3802690581513467) device_id(0) queue_id(0) PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (14) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (13) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> + +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(479) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(479) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(480) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(480) on-exit pid(1942) tid(1942)> + + + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (12) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (11) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(361) time_ns(43921299666096:43921299677513) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(362) time_ns(43921299686550:43921299689796) process_id(26018) thread_id(26018) - hipMalloc correlation_id(363) time_ns(43921301910538:43921301956523) process_id(26018) thread_id(26018) - hipMalloc correlation_id(364) time_ns(43921301961822:43921301989905) process_id(26018) thread_id(26018) - (null) correlation_id(365) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(365) time_ns(43921301995447:43921302613308) process_id(26018) thread_id(26018) - (null) correlation_id(366) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(366) time_ns(43921302629231:43921302653724) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(366) time_ns(43921302658124:43921303147884) device_id(0) queue_id(0) - hcCommandMarker correlation_id(367) time_ns(43921303150768:43921303157168) device_id(0) queue_id(0) - (null) correlation_id(367) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(367) time_ns(43921302669870:43921304047739) process_id(26018) thread_id(26018) - (null) correlation_id(368) time_ns(0:0) external_id(31) - hipFree correlation_id(368) time_ns(43921318607279:43921318685416) process_id(26018) thread_id(26018) - (null) correlation_id(369) time_ns(0:0) external_id(31) - hipFree correlation_id(369) time_ns(43921318692459:43921318716514) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(370) time_ns(43921337711172:43921337721516) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(371) time_ns(43921337725897:43921337729248) process_id(26018) thread_id(26018) - hipMalloc correlation_id(372) time_ns(43921339886253:43921339950575) process_id(26018) thread_id(26018) - hipMalloc correlation_id(373) time_ns(43921339955662:43921340017523) process_id(26018) thread_id(26018) - (null) correlation_id(374) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(374) time_ns(43921340034039:43921340707279) process_id(26018) thread_id(26018) - (null) correlation_id(375) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(375) time_ns(43921340734285:43921340759194) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(375) time_ns(43921340763789:43921341256589) device_id(0) queue_id(0) - hcCommandMarker correlation_id(376) time_ns(43921341259491:43921341266051) device_id(0) queue_id(0) - (null) correlation_id(376) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(376) time_ns(43921340775484:43921342164208) process_id(26018) thread_id(26018) - (null) correlation_id(377) time_ns(0:0) external_id(31) - hipFree correlation_id(377) time_ns(43921356753503:43921356852057) process_id(26018) thread_id(26018) - (null) correlation_id(378) time_ns(0:0) external_id(31) - hipFree correlation_id(378) time_ns(43921356858808:43921356884797) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(379) time_ns(43921376019840:43921376029927) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(380) time_ns(43921376034499:43921376037530) process_id(26018) thread_id(26018) - hipMalloc correlation_id(381) time_ns(43921378210740:43921378275453) process_id(26018) thread_id(26018) - hipMalloc correlation_id(382) time_ns(43921378280549:43921378318017) process_id(26018) thread_id(26018) - (null) correlation_id(383) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(383) time_ns(43921378332830:43921378962471) process_id(26018) thread_id(26018) - (null) correlation_id(384) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(384) time_ns(43921378993210:43921379039788) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(384) time_ns(43921379044297:43921379524777) device_id(0) queue_id(0) - hcCommandMarker correlation_id(385) time_ns(43921379527634:43921379534194) device_id(0) queue_id(0) - (null) correlation_id(385) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(385) time_ns(43921379056375:43921380479138) process_id(26018) thread_id(26018) - (null) correlation_id(386) time_ns(0:0) external_id(31) - hipFree correlation_id(386) time_ns(43921395001519:43921395101669) process_id(26018) thread_id(26018) - (null) correlation_id(387) time_ns(0:0) external_id(31) - hipFree correlation_id(387) time_ns(43921395108951:43921395133986) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(388) time_ns(43921414047056:43921414057226) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(389) time_ns(43921414061587:43921414064582) process_id(26018) thread_id(26018) - hipMalloc correlation_id(390) time_ns(43921416266891:43921416330735) process_id(26018) thread_id(26018) - hipMalloc correlation_id(391) time_ns(43921416335746:43921416387330) process_id(26018) thread_id(26018) - (null) correlation_id(392) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(392) time_ns(43921416405756:43921417066942) process_id(26018) thread_id(26018) - (null) correlation_id(393) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(393) time_ns(43921417097413:43921417150182) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(393) time_ns(43921417154820:43921417642980) device_id(0) queue_id(0) - hcCommandMarker correlation_id(394) time_ns(43921417645775:43921417652335) device_id(0) queue_id(0) - (null) correlation_id(394) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(394) time_ns(43921417158508:43921418596497) process_id(26018) thread_id(26018) - (null) correlation_id(395) time_ns(0:0) external_id(31) - hipFree correlation_id(395) time_ns(43921433065199:43921433163988) process_id(26018) thread_id(26018) - (null) correlation_id(396) time_ns(0:0) external_id(31) - hipFree correlation_id(396) time_ns(43921433171073:43921433196116) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(490) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(490) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(491) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(491) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (10) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (9) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(501) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(501) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(502) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(502) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (8) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (7) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> + +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> +<__hipPushCallConfiguration id(46) correlation_id(512) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(512) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(513) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(513) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (6) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (5) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(523) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(523) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(524) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(524) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (4) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (3) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - Activity records: - hipSetDevice correlation_id(397) time_ns(43921452254692:43921452265169) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(398) time_ns(43921452275166:43921452278405) process_id(26018) thread_id(26018) - hipMalloc correlation_id(399) time_ns(43921454496914:43921454552118) process_id(26018) thread_id(26018) - hipMalloc correlation_id(400) time_ns(43921454557367:43921454603645) process_id(26018) thread_id(26018) - (null) correlation_id(401) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(401) time_ns(43921454608946:43921455255047) process_id(26018) thread_id(26018) - (null) correlation_id(402) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(402) time_ns(43921455282051:43921455306428) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(402) time_ns(43921455310804:43921455797844) device_id(0) queue_id(0) - hcCommandMarker correlation_id(403) time_ns(43921455800808:43921455807368) device_id(0) queue_id(0) - (null) correlation_id(403) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(403) time_ns(43921455322649:43921456730621) process_id(26018) thread_id(26018) - (null) correlation_id(404) time_ns(0:0) external_id(31) - hipFree correlation_id(404) time_ns(43921471305804:43921471381291) process_id(26018) thread_id(26018) - (null) correlation_id(405) time_ns(0:0) external_id(31) - hipFree correlation_id(405) time_ns(43921471387828:43921471412295) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(406) time_ns(43921490431229:43921490441048) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(407) time_ns(43921490445816:43921490448703) process_id(26018) thread_id(26018) - hipMalloc correlation_id(408) time_ns(43921492632200:43921492695679) process_id(26018) thread_id(26018) - hipMalloc correlation_id(409) time_ns(43921492700413:43921492736594) process_id(26018) thread_id(26018) - (null) correlation_id(410) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(410) time_ns(43921492750859:43921493404002) process_id(26018) thread_id(26018) - (null) correlation_id(411) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(411) time_ns(43921493434540:43921493481517) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(411) time_ns(43921493486389:43921493975029) device_id(0) queue_id(0) - hcCommandMarker correlation_id(412) time_ns(43921493978114:43921493984674) device_id(0) queue_id(0) - (null) correlation_id(412) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(412) time_ns(43921493496117:43921494874631) process_id(26018) thread_id(26018) - (null) correlation_id(413) time_ns(0:0) external_id(31) - hipFree correlation_id(413) time_ns(43921509355916:43921509450378) process_id(26018) thread_id(26018) - (null) correlation_id(414) time_ns(0:0) external_id(31) - hipFree correlation_id(414) time_ns(43921509457258:43921509480876) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(415) time_ns(43921528506760:43921528517481) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(416) time_ns(43921528522575:43921528525801) process_id(26018) thread_id(26018) - hipMalloc correlation_id(417) time_ns(43921530704109:43921530768265) process_id(26018) thread_id(26018) - hipMalloc correlation_id(418) time_ns(43921530773284:43921530810110) process_id(26018) thread_id(26018) - (null) correlation_id(419) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(419) time_ns(43921530824764:43921531477778) process_id(26018) thread_id(26018) - (null) correlation_id(420) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(420) time_ns(43921531508712:43921531553267) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(420) time_ns(43921531564573:43921532052413) device_id(0) queue_id(0) - hcCommandMarker correlation_id(421) time_ns(43921532055204:43921532061764) device_id(0) queue_id(0) - (null) correlation_id(421) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(421) time_ns(43921531568240:43921532977221) process_id(26018) thread_id(26018) - (null) correlation_id(422) time_ns(0:0) external_id(31) - hipFree correlation_id(422) time_ns(43921547456633:43921547556707) process_id(26018) thread_id(26018) - (null) correlation_id(423) time_ns(0:0) external_id(31) - hipFree correlation_id(423) time_ns(43921547563600:43921547589725) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(424) time_ns(43921566541456:43921566551811) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(425) time_ns(43921566556295:43921566559245) process_id(26018) thread_id(26018) - hipMalloc correlation_id(426) time_ns(43921568737936:43921568801054) process_id(26018) thread_id(26018) - hipMalloc correlation_id(427) time_ns(43921568806031:43921568842731) process_id(26018) thread_id(26018) - (null) correlation_id(428) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(428) time_ns(43921568857309:43921569508914) process_id(26018) thread_id(26018) - (null) correlation_id(429) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(429) time_ns(43921569539754:43921569588046) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(429) time_ns(43921569592676:43921570082276) device_id(0) queue_id(0) - hcCommandMarker correlation_id(430) time_ns(43921570085124:43921570091844) device_id(0) queue_id(0) - (null) correlation_id(430) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(430) time_ns(43921569603216:43921571055352) process_id(26018) thread_id(26018) - (null) correlation_id(431) time_ns(0:0) external_id(31) - hipFree correlation_id(431) time_ns(43921585590256:43921585685864) process_id(26018) thread_id(26018) - (null) correlation_id(432) time_ns(0:0) external_id(31) - hipFree correlation_id(432) time_ns(43921585692678:43921585744373) process_id(26018) thread_id(26018) - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(534) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(534) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(535) on-enter pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(535) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (2) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! # START (1) ############################# - - - - - - - - - - - - -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] - - - ptr(0x7ffc4af6f508) size(0x400000) - - - - - - - *ptr(0x0x903000000) - - - ptr(0x7ffc4af6f500) size(0x400000) - - - - - - - *ptr(0x0x903800000) - - - dst(0x903000000) src(0x7fcff9073010) size(0x400000) kind(1) - - - - - - - - - - - - kernel("_Z15matrixTransposePfS_i") stream((nil)) - - - - - - - - - - - dst(0x2b84d10) src(0x903800000) size(0x400000) kind(2) - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + +Device 0 name: Device 687f + ptr(0x7fff13900c60) size(0x400000) + + + + + *ptr(0x0x7f0595600000) + ptr(0x7fff13900c58) size(0x400000) + + + + + *ptr(0x0x7f0595000000) + dst(0x7f0595600000) src(0x1ec5050) size(0x400000) kind(1) + + + + + + + + + +rocTX <"before hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipLaunchKernel pid(1942) tid(1942)"> + +<__hipPushCallConfiguration id(46) correlation_id(545) on-enter pid(1942) tid(1942)> +<__hipPushCallConfiguration id(46) correlation_id(545) on-exit pid(1942) tid(1942)> +<__hipPopCallConfiguration id(171) correlation_id(546) on-enter pid(1942) tid(1942)> + + +<__hipPopCallConfiguration id(171) correlation_id(546) on-exit pid(1942) tid(1942)> + + +rocTX <"after hipLaunchKernel pid(1942) tid(1942)"> +rocTX <"hipMemcpy pid(1942) tid(1942)"> + dst(0x22c5060) src(0x7f0595000000) size(0x400000) kind(2) + + + + + + + + + + + + + + + + +rocTX <"(null) pid(1942) tid(1942)"> +rocTX <"(null) pid(1942) tid(1942)"> + + + + PASSED! - - - ptr(0x903000000) - - - - - - - - - - ptr(0x903800000) - - - - - - - + ptr(0x7f0595600000) + + + + + + ptr(0x7f0595000000) + + + + + # START (0) ############################# -Device 0 name: Ellesmere [Radeon RX 470/480/570/570X/580/580X] +Device 0 name: Device 687f PASSED! Activity records: - hipSetDevice correlation_id(433) time_ns(43921606267569:43921606277958) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(434) time_ns(43921606287626:43921606290936) process_id(26018) thread_id(26018) - hipMalloc correlation_id(435) time_ns(43921608614868:43921608669543) process_id(26018) thread_id(26018) - hipMalloc correlation_id(436) time_ns(43921608674941:43921608722707) process_id(26018) thread_id(26018) - (null) correlation_id(437) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(437) time_ns(43921608728191:43921609377173) process_id(26018) thread_id(26018) - (null) correlation_id(438) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(438) time_ns(43921609403807:43921609428386) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(438) time_ns(43921609434051:43921611279333) device_id(0) queue_id(0) - hcCommandMarker correlation_id(439) time_ns(43921611282059:43921611313899) device_id(0) queue_id(0) - (null) correlation_id(439) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(439) time_ns(43921609441877:43921612242529) process_id(26018) thread_id(26018) - (null) correlation_id(440) time_ns(0:0) external_id(31) - hipFree correlation_id(440) time_ns(43921627150392:43921627229148) process_id(26018) thread_id(26018) - (null) correlation_id(441) time_ns(0:0) external_id(31) - hipFree correlation_id(441) time_ns(43921627236769:43921627261598) process_id(26018) thread_id(26018) - hipSetDevice correlation_id(442) time_ns(43921648187869:43921648198420) process_id(26018) thread_id(26018) - hipGetDeviceProperties correlation_id(443) time_ns(43921648203360:43921648206709) process_id(26018) thread_id(26018) - hipMalloc correlation_id(444) time_ns(43921650436225:43921650506222) process_id(26018) thread_id(26018) - hipMalloc correlation_id(445) time_ns(43921650511634:43921650567858) process_id(26018) thread_id(26018) - (null) correlation_id(446) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(446) time_ns(43921650573590:43921651243647) process_id(26018) thread_id(26018) - (null) correlation_id(447) time_ns(0:0) external_id(33) - hipModuleLaunchKernel correlation_id(447) time_ns(43921651271093:43921651296014) process_id(26018) thread_id(26018) - hcCommandKernel correlation_id(447) time_ns(43921651301547:43921653140269) device_id(0) queue_id(0) - hcCommandMarker correlation_id(448) time_ns(43921653143342:43921653175182) device_id(0) queue_id(0) - (null) correlation_id(448) time_ns(0:0) external_id(32) - hipMemcpy correlation_id(448) time_ns(43921651303048:43921654138318) process_id(26018) thread_id(26018) - (null) correlation_id(449) time_ns(0:0) external_id(31) - hipFree correlation_id(449) time_ns(43921669147933:43921669229505) process_id(26018) thread_id(26018) - (null) correlation_id(450) time_ns(0:0) external_id(31) - hipFree correlation_id(450) time_ns(43921669237076:43921669263052) process_id(26018) thread_id(26018) + CopyDeviceToHost correlation_id(471) time_ns(3802690580294836:3802690582860815) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(478) time_ns(3802690603644719:3802690605384172) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(481) time_ns(3802690605498779:3802690606691873) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(482) time_ns(3802690605474403:3802690608025671) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(489) time_ns(3802690628687154:3802690630424257) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(492) time_ns(3802690630536595:3802690631732652) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(493) time_ns(3802690630511888:3802690633056366) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(500) time_ns(3802690653798410:3802690655532973) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(503) time_ns(3802690655650838:3802690656850303) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(504) time_ns(3802690655626484:3802690658172622) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(511) time_ns(3802690678637384:3802690680356427) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(514) time_ns(3802690680469261:3802690681658652) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(515) time_ns(3802690680444597:3802690682982646) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(522) time_ns(3802690703868311:3802690705623714) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(525) time_ns(3802690705748741:3802690706940058) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(526) time_ns(3802690705724715:3802690708246093) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(533) time_ns(3802690728935096:3802690730669869) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(536) time_ns(3802690730783327:3802690731977755) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(537) time_ns(3802690730759290:3802690733312349) device_id(0) queue_id(0) bytes(0x0) + CopyHostToDevice correlation_id(544) time_ns(3802690754023772:3802690755760784) device_id(0) queue_id(0) bytes(0x0) + KernelExecution correlation_id(547) time_ns(3802690755876264:3802690757073952) device_id(0) queue_id(0) + CopyDeviceToHost correlation_id(548) time_ns(3802690755851835:3802690758397264) device_id(0) queue_id(0) bytes(0x0) # STOP ############################# - diff --git a/projects/roctracer/test/golden_traces/tests_trace_cmp_levels.txt b/projects/roctracer/test/golden_traces/tests_trace_cmp_levels.txt index 31c63628e5..5e6dbaa7a4 100644 --- a/projects/roctracer/test/golden_traces/tests_trace_cmp_levels.txt +++ b/projects/roctracer/test/golden_traces/tests_trace_cmp_levels.txt @@ -1,11 +1,12 @@ # dummy -MatrixTranspose_ctest_trace --check-diff +MatrixTranspose_ctest_trace --check-count .* MatrixTranspose_test_trace --check-count .* --ignore-count hsaKmt.* +MatrixTranspose_hipaact_test_trace --check-count .* --ignore-count hsaKmt.*|hipMemcpy|__hipPushCallConfiguration|hipLaunchKernel|__hipPopCallConfiguration MatrixTranspose_mgpu_trace --check-count .* --ignore-count hsaKmt.* MatrixTranspose_sys_trace --check-count .* --ignore-count hsa_.* MatrixTranspose_sys_hsa_trace --check-count .* --ignore-count hsa_.* MatrixTranspose_hip_period_trace --check-events .* --ignore-event hipMalloc|hipFree MatrixTranspose_hip_flush_trace --check-order .* MatrixTranspose_kfd_trace --check-events .* -ctrl_hsa_trace --check-count .* -ctrl_hsa_input_trace --check-count .* +ctrl_hsa_trace --check-event .* +ctrl_hsa_input_trace --check-event .* diff --git a/projects/roctracer/test/run.sh b/projects/roctracer/test/run.sh index 8ada56311d..962033f6a2 100755 --- a/projects/roctracer/test/run.sh +++ b/projects/roctracer/test/run.sh @@ -46,17 +46,15 @@ if [ -z "$ROCTRACER_TOOL_PATH" ] ; then ROCTRACER_TOOL_PATH="./test" fi -env -ls -lad /opt/* -ls -lad /opt/rocm/* -ls -lad /opt/rocm/roctracer/* -ls -lad /opt/rocm/roctracer/*/* -ls -lad /opt/rocm/roctracer/*/*/* - # test filter input test_filter=-1 +check_trace_flag=1 if [ -n "$1" ] ; then test_filter=$1 + shift +fi +if [ "$2" = "-n" ] ; then + check_trace_flag=0 fi # test check routin @@ -86,8 +84,11 @@ eval_test() { is_failed=0; else if [ $is_failed = 0 ] ; then - python ./test/check_trace.py -in $test_name + python ./test/check_trace.py -in $test_name -ck $check_trace_flag is_failed=$? + if [ $is_failed != 0 ] ; then + python ./test/check_trace.py -v -in $test_name -ck $check_trace_flag + fi fi fi if [ $is_failed = 0 ] ; then