-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample.log
6887 lines (6887 loc) · 434 KB
/
sample.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2591277.489606679 srun: error: ioctl(TIOCGWINSZ): Inappropriate ioctl for device
2591277.489614136 srun: error: Not using a pseudo-terminal, disregarding --pty option
2591277.567649027 ========= CUDA-MEMCHECK
2591277.596970741 ACC: Initialize CUDA
2591277.718799421 ACC: CUDA API version: 9000
2591277.718805916 ACC: CUDA driver version: 11000
2591277.718807527 ACC: Get Device 0
2591277.718808859 ACC: Compute level 6.0
2591277.71881006 ACC: Number of sms 56
2591277.718811284 ACC: Max shared memory 49152
2591277.718812519 ACC: Max thread blocks per sm 32
2591277.718813766 ACC: Max concurrent kernels 128
2591277.718815062 ACC: Async table size 128
2591277.718891668 ACC: Create Context
2591277.835931119 ACC: Set Thread Context
2591277.835937735 ACC: Establish link bewteen libcrayacc and libcraymp
2591277.835939247 ACC: libcrayacc interface v4
2591277.835940573 ACC: libcraymp interface v4
2591277.837072603 ACC: Start transfer 1 items from sanitized_shorter.f:22
2591277.83707933 ACC: flags:
2591277.837080986 ACC:
2591277.837082724 ACC: Trans 1
2591277.837084297 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.837085743 ACC: host ptr 416480
2591277.837087009 ACC: acc ptr 0
2591277.837088502 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.8371 ACC: Transferring dope vector
2591277.837101854 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.837103211 ACC: total mem size=72 (dv:0 obj:72)
2591277.837104524 ACC: memory not found in present table
2591277.837105959 ACC: allocate (72 bytes)
2591277.837491277 ACC: get new nonreusable memory
2591277.837497748 ACC: new allocated ptr (1554af200000)
2591277.837511639 ACC: add to present table index 0: host 574a40 to 574a88, acc 1554af200000
2591277.837569716 ACC: copy host to acc (574a40 to 1554af200000)
2591277.83757645 ACC: internal copy host to acc (host 574a40 to acc 1554af200000) size = 72
2591277.837578085 ACC: new acc ptr 1554af200000
2591277.837579476 ACC:
2591277.837580815 ACC: End transfer (to acc 72 bytes, to host 0 bytes)
2591277.837585051 ACC:
2591277.837587061 Doing loop level 1
2591277.83764754 ACC: Start transfer 1 items from sanitized_shorter.f:28
2591277.837650379 ACC: flags:
2591277.837651781 ACC:
2591277.837652986 ACC: Trans 1
2591277.837654214 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.837663582 ACC: host ptr 4164c8
2591277.837665435 ACC: acc ptr 0
2591277.837666856 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.83766825 ACC: Transferring dope vector
2591277.837669434 ACC: dim:1 lowbound:1 extent:1 stride_mult:1
2591277.837670635 ACC: dim:2 lowbound:1 extent:8 stride_mult:1
2591277.837672169 ACC: dim:3 lowbound:1 extent:8 stride_mult:8
2591277.837673372 ACC: DV size=256 (scale:4, elem_size:4)
2591277.83767462 ACC: total mem size=256 (dv:0 obj:256)
2591277.837675789 ACC: memory not found in present table
2591277.837676957 ACC: allocate (256 bytes)
2591277.837678093 ACC: get new nonreusable memory
2591277.837679261 ACC: new allocated ptr (1554af200200)
2591277.837687134 ACC: add to present table index 1: host 2a15b80 to 2a15c80, acc 1554af200200
2591277.837688929 ACC: copy host to acc (2a15b80 to 1554af200200)
2591277.837690197 ACC: internal copy host to acc (host 2a15b80 to acc 1554af200200) size = 256
2591277.837694449 ACC: new acc ptr 1554af200200
2591277.837695888 ACC:
2591277.837697071 ACC: End transfer (to acc 256 bytes, to host 0 bytes)
2591277.837698646 ACC:
2591277.837699884 ACC: Start transfer 1 items from sanitized_shorter.f:29
2591277.83770109 ACC: flags:
2591277.837705025 ACC:
2591277.837706512 ACC: Trans 1
2591277.83770775 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.83770896 ACC: host ptr 416480
2591277.837710138 ACC: acc ptr 0
2591277.837711384 ACC: flags: DOPE_VECTOR DV_ONLY_DATA COPY_HOST_TO_ACC REG_PRESENT INIT_ACC_PTR IGNORE_ABSENT
2591277.837715733 ACC: Transferring dope vector
2591277.837717125 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.837718396 ACC: total mem size=72 (dv:0 obj:72)
2591277.837719587 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 1)
2591277.837720786 ACC: copy host to acc (574a40 to 1554af200000)
2591277.837722029 ACC: internal copy host to acc (host 574a40 to acc 1554af200000) size = 72
2591277.837733339 ACC:
2591277.837735288 ACC: End transfer (to acc 72 bytes, to host 0 bytes)
2591277.83773987 ACC:
2591277.837741318 ACC: Start transfer 6 items from sanitized_shorter.f:31
2591277.837742571 ACC: flags: NEED_POST_PHASE
2591277.837743813 ACC:
2591277.837745006 ACC: Transfer Phase
2591277.837746357 ACC: Trans 1
2591277.837747613 ACC: Simple transfer of 'a(1)%c(2)%array(:,:,:)' (120 bytes)
2591277.837751768 ACC: host ptr 574b78
2591277.837753268 ACC: acc ptr 0
2591277.837754573 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.837755889 ACC: Transferring dope vector
2591277.837757091 ACC: dim:1 lowbound:1 extent:8 stride_mult:1
2591277.837761349 ACC: dim:2 lowbound:1 extent:8 stride_mult:8
2591277.837762813 ACC: dim:3 lowbound:1 extent:8 stride_mult:64
2591277.837764007 ACC: DV size=2048 (scale:4, elem_size:4)
2591277.837765985 ACC: total mem size=2048 (dv:0 obj:2048)
2591277.837767171 ACC: memory not found in present table
2591277.837768418 ACC: allocate (2048 bytes)
2591277.837815986 ACC: get new nonreusable memory
2591277.837818146 ACC: new allocated ptr (1554af200400)
2591277.837822655 ACC: add to present table index 2: host 574c40 to 575440, acc 1554af200400
2591277.837824304 ACC: copy host to acc (574c40 to 1554af200400)
2591277.837825529 ACC: internal copy host to acc (host 574c40 to acc 1554af200400) size = 2048
2591277.837826744 ACC: new acc ptr 1554af200400
2591277.83782794 ACC:
2591277.837829154 ACC: Trans 2
2591277.837832979 ACC: Simple transfer of 'a(1)%c(:)' (72 bytes)
2591277.837834351 ACC: host ptr 574a40
2591277.837965758 ACC: acc ptr 0
2591277.83797226 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.837973892 ACC: Transferring dope vector
2591277.837975115 ACC: DV size=240 (dim:1 extent:2 stride_mult:15 scale:8 elem_size:120)
2591277.837976291 ACC: total mem size=240 (dv:0 obj:240)
2591277.837977561 ACC: memory not found in present table
2591277.837979151 ACC: allocate (240 bytes)
2591277.837980339 ACC: get new nonreusable memory
2591277.837981525 ACC: new allocated ptr (1554af200c00)
2591277.837986015 ACC: add to present table index 3: host 574b00 to 574bf0, acc 1554af200c00
2591277.837987591 ACC: copy host to acc (574b00 to 1554af200c00)
2591277.837988781 ACC: internal copy host to acc (host 574b00 to acc 1554af200c00) size = 240
2591277.837990013 ACC: new acc ptr 1554af200c00
2591277.837991278 ACC:
2591277.837992505 ACC: Trans 3
2591277.837993683 ACC: Simple transfer of 'a(1)%c(2)' (72 bytes)
2591277.837994931 ACC: host ptr 7fffffff7310
2591277.838010464 ACC: acc ptr 0
2591277.838025859 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE ACQ_PRESENT REG_PRESENT
2591277.838027233 ACC: Transferring dope vector
2591277.838028516 ACC: DV size=120 (dim:1 extent:1 stride_mult:15 scale:8 elem_size:120)
2591277.838029776 ACC: total mem size=120 (dv:0 obj:120)
2591277.838031054 ACC: host region 574b78 to 574bf0 found in present table index 3 (ref count 2)
2591277.838032321 ACC: memory found in present table (1554af200c78, base 1554af200c00)
2591277.838033624 ACC: new acc ptr 1554af200c78
2591277.838034895 ACC:
2591277.838036119 ACC: Trans 4
2591277.838042883 ACC: Trans 5
2591277.838044435 ACC: Simple transfer of 'a(1)' (72 bytes)
2591277.838045714 ACC: host ptr 7fffffff7358
2591277.838046949 ACC: acc ptr 0
2591277.838048201 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE ACQ_PRESENT REG_PRESENT
2591277.838049444 ACC: Transferring dope vector
2591277.838057362 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.838058981 ACC: total mem size=72 (dv:0 obj:72)
2591277.838060204 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 2)
2591277.838061504 ACC: memory found in present table (1554af200000, base 1554af200000)
2591277.83806277 ACC: new acc ptr 1554af200000
2591277.838064132 ACC:
2591277.838065312 ACC: Trans 6
2591277.838066526 ACC: Post Transfer Phase
2591277.838067753 ACC: Trans 1
2591277.838068957 ACC: Trans 2
2591277.838070172 ACC: Trans 3
2591277.838074536 ACC: Trans 4
2591277.838076079 ACC: Simple transfer of 'a(1)%c(2)%array' (120 bytes)
2591277.838077347 ACC: host ptr 574b78
2591277.838078593 ACC: acc ptr 0
2591277.838079836 ACC: flags: REG_PRESENT OMP_PTR_ATTACH
2591277.838081076 ACC: host region 574c40 to 574c41 found in present table index 2 (ref count 1)
2591277.838082538 ACC: attach pointer host 0x574b78 (pointee 0x574c40) to device 1554af200c78 (pointee 1554af200400) for 'a(1)%c(2)%array' from sanitized_shorter.f:31
2591277.838084638 ACC: internal copy host to acc (host 2a177d0 to acc 1554af200c78) size = 120
2591277.838089326 ACC:
2591277.83809085 ACC: Trans 5
2591277.838092055 ACC: Trans 6
2591277.838093386 ACC: Simple transfer of 'a(1)%c' (72 bytes)
2591277.838096306 ACC: host ptr 574a40
2591277.838097754 ACC: acc ptr 0
2591277.838103624 ACC: flags: REG_PRESENT OMP_PTR_ATTACH
2591277.838105311 ACC: host region 574b00 to 574b01 found in present table index 3 (ref count 2)
2591277.838106854 ACC: attach pointer host 0x574a40 (pointee 0x574b00) to device 1554af200000 (pointee 1554af200c00) for 'a(1)%c' from sanitized_shorter.f:31
2591277.83810829 ACC: internal copy host to acc (host 2a17870 to acc 1554af200000) size = 72
2591277.838109593 ACC:
2591277.838110856 ACC: End transfer (to acc 2288 bytes, to host 0 bytes)
2591277.838112095 ACC:
2591277.83811625 ACC: Start transfer 5 items from sanitized_shorter.f:33
2591277.838117723 ACC: flags:
2591277.838119004 ACC:
2591277.838120223 ACC: Trans 1
2591277.838121524 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.838122786 ACC: host ptr 416480
2591277.838123991 ACC: acc ptr 0
2591277.838128681 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.838130357 ACC: Transferring dope vector
2591277.838131602 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.83813291 ACC: total mem size=72 (dv:0 obj:72)
2591277.838134151 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 3)
2591277.838135419 ACC: memory found in present table (1554af200000, base 1554af200000)
2591277.838137033 ACC: new acc ptr 1554af200000
2591277.838138317 ACC:
2591277.838139561 ACC: Trans 2
2591277.838144233 ACC: Simple transfer of 'a (dope vector)' (72 bytes)
2591277.838145802 ACC: host ptr 416480
2591277.838147081 ACC: acc ptr 0
2591277.838148309 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.838149605 ACC: memory not found in present table
2591277.838150877 ACC: allocate (72 bytes)
2591277.838152093 ACC: get new nonreusable memory
2591277.838153378 ACC: new allocated ptr (1554af200e00)
2591277.838157987 ACC: add to present table index 4: host 416480 to 4164c8, acc 1554af200e00
2591277.838159637 ACC: copy host to acc (416480 to 1554af200e00)
2591277.838160929 ACC: internal copy host to acc (host 416480 to acc 1554af200e00) size = 72
2591277.838162145 ACC: new acc ptr 1554af200e00
2591277.838163331 ACC:
2591277.838164558 ACC: Trans 3
2591277.838165763 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.838167028 ACC: host ptr 4164c8
2591277.838172402 ACC: acc ptr 0
2591277.838174045 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.838175401 ACC: Transferring dope vector
2591277.838176723 ACC: dim:1 lowbound:1 extent:1 stride_mult:1
2591277.838177893 ACC: dim:2 lowbound:1 extent:8 stride_mult:1
2591277.838179114 ACC: dim:3 lowbound:1 extent:8 stride_mult:8
2591277.838182266 ACC: DV size=256 (scale:4, elem_size:4)
2591277.838183711 ACC: total mem size=256 (dv:0 obj:256)
2591277.838185003 ACC: host region 2a15b80 to 2a15c80 found in present table index 1 (ref count 2)
2591277.838186281 ACC: memory found in present table (1554af200200, base 1554af200200)
2591277.838187639 ACC: new acc ptr 1554af200200
2591277.838189328 ACC:
2591277.838190622 ACC: Trans 4
2591277.838191882 ACC: Simple transfer of 'eptr (dope vector)' (120 bytes)
2591277.838193145 ACC: host ptr 4164c8
2591277.838194433 ACC: acc ptr 0
2591277.838200193 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.838201795 ACC: memory not found in present table
2591277.838203113 ACC: allocate (120 bytes)
2591277.838206577 ACC: get new nonreusable memory
2591277.838207925 ACC: new allocated ptr (1554af201000)
2591277.838209197 ACC: add to present table index 5: host 4164c8 to 416540, acc 1554af201000
2591277.838210578 ACC: copy host to acc (4164c8 to 1554af201000)
2591277.838288499 ACC: internal copy host to acc (host 4164c8 to acc 1554af201000) size = 120
2591277.838298215 ACC: new acc ptr 1554af201000
2591277.83830004 ACC:
2591277.838301323 ACC: Trans 5
2591277.838302559 ACC: Simple transfer of 'rarray(:)' (32 bytes)
2591277.838303846 ACC: host ptr 416e80
2591277.838305057 ACC: acc ptr 0
2591277.838306359 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.838311156 ACC: memory not found in present table
2591277.838312615 ACC: allocate (32 bytes)
2591277.838313823 ACC: get new nonreusable memory
2591277.838315072 ACC: new allocated ptr (1554af201200)
2591277.838316294 ACC: add to present table index 6: host 416e80 to 416ea0, acc 1554af201200
2591277.838317553 ACC: copy host to acc (416e80 to 1554af201200)
2591277.838382588 ACC: internal copy host to acc (host 416e80 to acc 1554af201200) size = 32
2591277.838388166 ACC: new acc ptr 1554af201200
2591277.838389729 ACC:
2591277.838390961 ACC: End transfer (to acc 224 bytes, to host 0 bytes)
2591277.838392136 ACC:
2591277.838393417 ACC: Start kernel pointer_test_$ck_L33_1 from sanitized_shorter.f:33
2591277.838401883 ACC: flags: CACHE_MOD CACHE_FUNC
2591277.838403564 ACC: mod cache: 0x416f40
2591277.838405233 ACC: kernel cache: 0x416f00
2591277.838406437 ACC: async info: (nil)
2591277.83840765 ACC: arguments: GPU argument info
2591277.838408873 ACC: param size: 104
2591277.838410034 ACC: param pointer: 0x7fffffff7460
2591277.838411243 ACC: blocks: 1
2591277.838415562 ACC: threads: 1
2591277.838417023 ACC: event id: 0
2591277.83841822 ACC: loading module data
2591277.838589575 ACC: getting function
2591277.838595146 ACC: stats threads=1024 threadblocks per sm=32 shared=0 total shared=0
2591277.83859667 ACC: prefer L1 cache
2591277.838597879 ACC: kernel information
2591277.838602348 ========= Program hit CUDA_ERROR_NOT_FOUND (error 500) due to "named symbol not found" on CUDA API call to cuModuleGetGlobal_v2.
2591277.838604 ========= Saved host backtrace up to driver entry point at error
2591277.838605414 ========= Host Frame:/cm/local/apps/cuda/libs/current/lib64/libcuda.so.1 (cuModuleGetGlobal_v2 + 0x211) [0x2b8e41]
2591277.838606744 ========= Host Frame:/opt/cray/pe/cce/12.0.0.8945/cce/x86_64/lib/libcrayacc.so.1 (_ZN13__cray_acc_hw20NvidiaHardwareDevice17acc_init_aksf_ptrEP17cray_acc_locationP8CUmod_st + 0x60) [0x290e0]
2591277.838608251 ========= Host Frame:/opt/cray/pe/cce/12.0.0.8945/cce/x86_64/lib/libcrayacc.so.1 (_ZN13__cray_acc_hw20NvidiaHardwareDevice12start_kernelEP26cray_acc_new_kernel_info_1Pm + 0xcdf) [0x2ad0f]
2591277.838609549 ========= Host Frame:/opt/cray/pe/cce/12.0.0.8945/cce/x86_64/lib/libcrayacc.so.1 [0x1408d]
2591277.838610803 ========= Host Frame:/opt/cray/pe/cce/12.0.0.8945/cce/x86_64/lib/libcrayacc.so.1 (__cray_start_acc_kernel + 0x80) [0x15430]
2591277.838615724 ========= Host Frame:/opt/cray/pe/cce/12.0.0.8945/cce/x86_64/lib/libcrayacc.so.1 (cray_start_acc_kernel + 0x2d) [0x1558d]
2591277.838617271 ========= Host Frame:./a.out [0x3e4a]
2591277.838633943 ACC: num registers : 26
2591277.838635808 ACC: max theads per block : 1024
2591277.838637031 ACC: shared size : 0 bytes
2591277.838638293 ACC: const size : 0 bytes
2591277.838645627 ACC: local size : 192 bytes
2591277.838647345 ACC:
2591277.838648513 ACC: launching kernel new
2591277.838649862 ========= Host Frame:/lib64/libc.so.6 (__libc_start_main + 0xf3) [0x23873]
2591277.838651136 ========= Host Frame:./a.out [0x114e]
2591277.838652363 =========
2591277.844953243 ACC: synchronize
2591277.846014542 ACC: caching function
2591277.846027742 ACC: caching module
2591277.846031494 ACC: End kernel
2591277.846035049 ACC:
2591277.846038644 ACC: Start transfer 5 items from sanitized_shorter.f:37
2591277.846044016 ACC: flags:
2591277.84604734 ACC:
2591277.846050772 ACC: Trans 1
2591277.846054266 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.846057524 ACC: host ptr 416480
2591277.846060871 ACC: acc ptr 1554af200000
2591277.846064353 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.846101071 ACC: Transferring dope vector
2591277.846106019 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.846109687 ACC: total mem size=72 (dv:0 obj:72)
2591277.846113018 ACC: release acc 1554af200000 from present table index 0 (ref_count 2)
2591277.846116359 ACC: release present (acc 1554af200000)
2591277.846119603 ACC: new acc ptr 0
2591277.846122938 ACC:
2591277.846126258 ACC: Trans 2
2591277.846154655 ACC: Simple transfer of 'a (dope vector)' (72 bytes)
2591277.846155834 ACC: host ptr 416480
2591277.846157015 ACC: acc ptr 1554af200e00
2591277.846158219 ACC: flags: FREE REL_PRESENT REG_PRESENT
2591277.846159412 ACC: last release acc 1554af200e00 from present table index 4 (ref_count 1)
2591277.846160678 ACC: last release of conditional present (acc 1554af200e00, base 1554af200e00)
2591277.846161946 ACC: remove acc 1554af200e00 from present table index 4
2591277.846175055 ACC: new acc ptr 0
2591277.846176226 ACC:
2591277.846177338 ACC: Trans 3
2591277.846178435 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.846179589 ACC: host ptr 4164c8
2591277.846180701 ACC: acc ptr 1554af200200
2591277.84618179 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.846183004 ACC: Transferring dope vector
2591277.846184093 ACC: dim:1 lowbound:1 extent:1 stride_mult:1
2591277.846185241 ACC: dim:2 lowbound:1 extent:8 stride_mult:1
2591277.846186364 ACC: dim:3 lowbound:1 extent:8 stride_mult:8
2591277.846187446 ACC: DV size=256 (scale:4, elem_size:4)
2591277.846188561 ACC: total mem size=256 (dv:0 obj:256)
2591277.846189734 ACC: release acc 1554af200200 from present table index 1 (ref_count 1)
2591277.84619564 ACC: release present (acc 1554af200200)
2591277.846197202 ACC: new acc ptr 0
2591277.846198321 ACC:
2591277.846199441 ACC: Trans 4
2591277.846200599 ACC: Simple transfer of 'eptr (dope vector)' (120 bytes)
2591277.846201761 ACC: host ptr 4164c8
2591277.846202888 ACC: acc ptr 1554af201000
2591277.846204214 ACC: flags: FREE REL_PRESENT REG_PRESENT
2591277.846205375 ACC: last release acc 1554af201000 from present table index 5 (ref_count 1)
2591277.846219527 ACC: last release of conditional present (acc 1554af201000, base 1554af201000)
2591277.846220756 ACC: remove acc 1554af201000 from present table index 5
2591277.846221976 ACC: new acc ptr 0
2591277.846223173 ACC:
2591277.846224362 ACC: Trans 5
2591277.846225527 ACC: Simple transfer of 'rarray(:)' (32 bytes)
2591277.84622667 ACC: host ptr 416e80
2591277.84622786 ACC: acc ptr 1554af201200
2591277.846229024 ACC: flags: COPY_ACC_TO_HOST FREE REL_PRESENT REG_PRESENT
2591277.846230303 ACC: last release acc 1554af201200 from present table index 6 (ref_count 1)
2591277.84623149 ACC: last release of conditional present (acc 1554af201200, base 1554af201200)
2591277.846232662 ACC: copy acc to host (1554af201200 to 416e80)
2591277.846233845 ACC: interal copy acc to host (acc 1554af201200 to host 416e80) size = 32
2591277.84623502 ACC: remove acc 1554af201200 from present table index 6
2591277.846236206 ACC: new acc ptr 0
2591277.846237464 ACC:
2591277.846238673 ACC: End transfer (to acc 0 bytes, to host 32 bytes)
2591277.846239843 ACC:
2591277.84624103 ACC: Start transfer 3 items from sanitized_shorter.f:39
2591277.846242176 ACC: flags:
2591277.846243357 ACC:
2591277.846244543 ACC: Trans 1
2591277.846272922 ACC: Simple transfer of 'a(1)%c(2)%array(:,:,:)' (120 bytes)
2591277.846275232 ACC: host ptr 574b78
2591277.846276507 ACC: acc ptr 0
2591277.84628216 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REG_PRESENT INIT_ACC_PTR FORCE_DELETE IGNORE_ABSENT
2591277.846283807 ACC: Transferring dope vector
2591277.846285081 ACC: dim:1 lowbound:1 extent:8 stride_mult:1
2591277.846286335 ACC: dim:2 lowbound:1 extent:8 stride_mult:8
2591277.846287528 ACC: dim:3 lowbound:1 extent:8 stride_mult:64
2591277.846288793 ACC: DV size=2048 (scale:4, elem_size:4)
2591277.84629004 ACC: total mem size=2048 (dv:0 obj:2048)
2591277.846291266 ACC: host region 574c40 to 575440 found in present table index 2 (ref count 1)
2591277.846292533 ACC: remove acc 1554af200400 from present table index 2
2591277.846293797 ACC: new acc ptr 0
2591277.846295026 ACC:
2591277.846296201 ACC: Trans 2
2591277.846297424 ACC: Simple transfer of 'a(1)%c(2)' (72 bytes)
2591277.846298647 ACC: host ptr 7fffffff73a0
2591277.846299896 ACC: acc ptr 0
2591277.846309542 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT INIT_ACC_PTR
2591277.846311315 ACC: Transferring dope vector
2591277.846312673 ACC: DV size=120 (dim:1 extent:1 stride_mult:15 scale:8 elem_size:120)
2591277.846317036 ACC: total mem size=120 (dv:0 obj:120)
2591277.846318469 ACC: host region 574b78 to 574bf0 found in present table index 3 (ref count 2)
2591277.846319693 ACC: release acc 1554af200c78 from present table index 3 (ref_count 1)
2591277.846321756 ACC: release present (acc 1554af200c78)
2591277.846323013 ACC: new acc ptr 0
2591277.846324289 ACC:
2591277.846325504 ACC: Trans 3
2591277.846326757 ACC: Simple transfer of 'a(1)' (72 bytes)
2591277.846328025 ACC: host ptr 7fffffff73e8
2591277.846329275 ACC: acc ptr 0
2591277.846330501 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT INIT_ACC_PTR
2591277.846331799 ACC: Transferring dope vector
2591277.846333005 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.846334237 ACC: total mem size=72 (dv:0 obj:72)
2591277.846335404 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 2)
2591277.846336684 ACC: release acc 1554af200000 from present table index 0 (ref_count 1)
2591277.846337983 ACC: release present (acc 1554af200000)
2591277.846339176 ACC: new acc ptr 0
2591277.84634039 ACC:
2591277.846346309 ACC: End transfer (to acc 0 bytes, to host 0 bytes)
2591277.846348057 ACC:
2591277.846349262 ACC: Start transfer 1 items from sanitized_shorter.f:42
2591277.846372541 ACC: flags:
2591277.846373836 ACC:
2591277.846375062 ACC: Trans 1
2591277.84637623 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.846377389 ACC: host ptr 4164c8
2591277.846379787 ACC: acc ptr 0
2591277.846381144 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT INIT_ACC_PTR
2591277.846382454 ACC: Transferring dope vector
2591277.846383689 ACC: dim:1 lowbound:1 extent:1 stride_mult:1
2591277.846384932 ACC: dim:2 lowbound:1 extent:8 stride_mult:1
2591277.846386102 ACC: dim:3 lowbound:1 extent:8 stride_mult:8
2591277.846387256 ACC: DV size=256 (scale:4, elem_size:4)
2591277.846388474 ACC: total mem size=256 (dv:0 obj:256)
2591277.846389696 ACC: host region 2a15b80 to 2a15c80 found in present table index 1 (ref count 1)
2591277.846390924 ACC: last release acc 1554af200200 from present table index 1 (ref_count 1)
2591277.846392128 ACC: last release of conditional present (acc 1554af200200, base 1554af200200)
2591277.846393293 ACC: remove acc 1554af200200 from present table index 1
2591277.846394555 ACC: new acc ptr 0
2591277.846395755 ACC:
2591277.846396974 ACC: End transfer (to acc 0 bytes, to host 0 bytes)
2591277.84639815 ACC:
2591277.846399523 Doing loop level 2
2591277.846400711 ACC: Start transfer 1 items from sanitized_shorter.f:28
2591277.846401887 ACC: flags:
2591277.846403111 ACC:
2591277.846408639 ACC: Trans 1
2591277.846410232 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.846411503 ACC: host ptr 4164c8
2591277.846449934 ACC: acc ptr 0
2591277.846456713 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.846458189 ACC: Transferring dope vector
2591277.84645951 ACC: dim:1 lowbound:1 extent:2 stride_mult:1
2591277.846460734 ACC: dim:2 lowbound:1 extent:8 stride_mult:2
2591277.846461897 ACC: dim:3 lowbound:1 extent:8 stride_mult:16
2591277.846463116 ACC: DV size=512 (scale:4, elem_size:4)
2591277.846465067 ACC: total mem size=512 (dv:0 obj:512)
2591277.846485697 ACC: memory not found in present table
2591277.846488244 ACC: allocate (512 bytes)
2591277.846489481 ACC: get new nonreusable memory
2591277.846490686 ACC: new allocated ptr (1554af200200)
2591277.846491922 ACC: add to present table index 1: host 2a16d00 to 2a16f00, acc 1554af200200
2591277.846493152 ACC: copy host to acc (2a16d00 to 1554af200200)
2591277.846494337 ACC: internal copy host to acc (host 2a16d00 to acc 1554af200200) size = 512
2591277.846495524 ACC: new acc ptr 1554af200200
2591277.846496778 ACC:
2591277.846497971 ACC: End transfer (to acc 512 bytes, to host 0 bytes)
2591277.846499149 ACC:
2591277.846504669 ACC: Start transfer 1 items from sanitized_shorter.f:29
2591277.846506203 ACC: flags:
2591277.846507408 ACC:
2591277.846508634 ACC: Trans 1
2591277.84650984 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.846511013 ACC: host ptr 416480
2591277.846512206 ACC: acc ptr 0
2591277.846513459 ACC: flags: DOPE_VECTOR DV_ONLY_DATA COPY_HOST_TO_ACC REG_PRESENT INIT_ACC_PTR IGNORE_ABSENT
2591277.846514692 ACC: Transferring dope vector
2591277.84651588 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.846517142 ACC: total mem size=72 (dv:0 obj:72)
2591277.846518332 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 1)
2591277.846519595 ACC: copy host to acc (574a40 to 1554af200000)
2591277.846520746 ACC: present table entry contains attached pointers, may need to split transfer
2591277.84652202 ACC: transfer starts within pointer: 574a40 to 574a88 starts within (574a40 to 574a88)
2591277.846523236 ACC:
2591277.846524439 ACC: End transfer (to acc 72 bytes, to host 0 bytes)
2591277.846537674 ACC:
2591277.846538853 ACC: Start transfer 6 items from sanitized_shorter.f:31
2591277.84654002 ACC: flags: NEED_POST_PHASE
2591277.84654114 ACC:
2591277.84654231 ACC: Transfer Phase
2591277.846543527 ACC: Trans 1
2591277.84654841 ACC: Simple transfer of 'a(1)%c(2)%array(:,:,:)' (120 bytes)
2591277.846549873 ACC: host ptr 574b78
2591277.84655109 ACC: acc ptr 0
2591277.84655225 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.84655345 ACC: Transferring dope vector
2591277.846554619 ACC: dim:1 lowbound:1 extent:8 stride_mult:1
2591277.846559233 ACC: dim:2 lowbound:1 extent:8 stride_mult:8
2591277.846560656 ACC: dim:3 lowbound:1 extent:8 stride_mult:64
2591277.846561829 ACC: DV size=2048 (scale:4, elem_size:4)
2591277.846562996 ACC: total mem size=2048 (dv:0 obj:2048)
2591277.846564154 ACC: memory not found in present table
2591277.846565291 ACC: allocate (2048 bytes)
2591277.846566449 ACC: get new nonreusable memory
2591277.846567585 ACC: new allocated ptr (1554af200400)
2591277.84656875 ACC: add to present table index 2: host 574c40 to 575440, acc 1554af200400
2591277.846569923 ACC: copy host to acc (574c40 to 1554af200400)
2591277.846571137 ACC: internal copy host to acc (host 574c40 to acc 1554af200400) size = 2048
2591277.846573607 ACC: new acc ptr 1554af200400
2591277.846586608 ACC:
2591277.846587702 ACC: Trans 2
2591277.846588862 ACC: Simple transfer of 'a(1)%c(:)' (72 bytes)
2591277.846590002 ACC: host ptr 574a40
2591277.846591092 ACC: acc ptr 0
2591277.846592217 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.846593352 ACC: Transferring dope vector
2591277.846594463 ACC: DV size=240 (dim:1 extent:2 stride_mult:15 scale:8 elem_size:120)
2591277.84659802 ACC: total mem size=240 (dv:0 obj:240)
2591277.846600921 ACC: host region 574b00 to 574bf0 found in present table index 3 (ref count 2)
2591277.846602151 ACC: memory found in present table (1554af200c00, base 1554af200c00)
2591277.846603324 ACC: new acc ptr 1554af200c00
2591277.846604445 ACC:
2591277.846611229 ACC: Trans 3
2591277.846612788 ACC: Simple transfer of 'a(1)%c(2)' (72 bytes)
2591277.846613919 ACC: host ptr 7fffffff7310
2591277.846615064 ACC: acc ptr 0
2591277.846616152 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE ACQ_PRESENT REG_PRESENT
2591277.846617309 ACC: Transferring dope vector
2591277.846618399 ACC: DV size=120 (dim:1 extent:1 stride_mult:15 scale:8 elem_size:120)
2591277.84661955 ACC: total mem size=120 (dv:0 obj:120)
2591277.846620617 ACC: host region 574b78 to 574bf0 found in present table index 3 (ref count 3)
2591277.8466218 ACC: memory found in present table (1554af200c78, base 1554af200c00)
2591277.846715502 ACC: new acc ptr 1554af200c78
2591277.846717545 ACC:
2591277.846718751 ACC: Trans 4
2591277.846720079 ACC: Trans 5
2591277.846725283 ACC: Simple transfer of 'a(1)' (72 bytes)
2591277.846726894 ACC: host ptr 7fffffff7358
2591277.846728102 ACC: acc ptr 0
2591277.846729313 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE ACQ_PRESENT REG_PRESENT
2591277.846730501 ACC: Transferring dope vector
2591277.846731725 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.846732918 ACC: total mem size=72 (dv:0 obj:72)
2591277.846734115 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 2)
2591277.846735345 ACC: memory found in present table (1554af200000, base 1554af200000)
2591277.846736532 ACC: new acc ptr 1554af200000
2591277.846737717 ACC:
2591277.846738902 ACC: Trans 6
2591277.846743553 ACC: Post Transfer Phase
2591277.846744954 ACC: Trans 1
2591277.846746135 ACC: Trans 2
2591277.846747305 ACC: Trans 3
2591277.846748481 ACC: Trans 4
2591277.84674969 ACC: Simple transfer of 'a(1)%c(2)%array' (120 bytes)
2591277.846750894 ACC: host ptr 574b78
2591277.84675214 ACC: acc ptr 0
2591277.846753331 ACC: flags: REG_PRESENT OMP_PTR_ATTACH
2591277.84675454 ACC: host region 574c40 to 574c41 found in present table index 2 (ref count 1)
2591277.846759116 ACC: already attached pointer host 0x574b78 (pointee 0x574c40) to device 1554af200c78 (pointee 1554af200400) for 'a(1)%c(2)%array' from sanitized_shorter.f:31
2591277.84676083 ACC:
2591277.846762003 ACC: Trans 5
2591277.846763163 ACC: Trans 6
2591277.846764364 ACC: Simple transfer of 'a(1)%c' (72 bytes)
2591277.846765547 ACC: host ptr 574a40
2591277.846766732 ACC: acc ptr 0
2591277.846767967 ACC: flags: REG_PRESENT OMP_PTR_ATTACH
2591277.846769154 ACC: host region 574b00 to 574b01 found in present table index 3 (ref count 3)
2591277.846770493 ACC: already attached pointer host 0x574a40 (pointee 0x574b00) to device 1554af200000 (pointee 1554af200c00) for 'a(1)%c' from sanitized_shorter.f:31
2591277.84677176 ACC:
2591277.846772932 ACC: End transfer (to acc 2048 bytes, to host 0 bytes)
2591277.846774154 ACC:
2591277.846778896 ACC: Start transfer 5 items from sanitized_shorter.f:33
2591277.846780347 ACC: flags:
2591277.846781543 ACC:
2591277.846782705 ACC: Trans 1
2591277.846783899 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.846785133 ACC: host ptr 416480
2591277.846786301 ACC: acc ptr 0
2591277.846787597 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.846788921 ACC: Transferring dope vector
2591277.846790114 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.846791338 ACC: total mem size=72 (dv:0 obj:72)
2591277.846792513 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 3)
2591277.846793734 ACC: memory found in present table (1554af200000, base 1554af200000)
2591277.846794903 ACC: new acc ptr 1554af200000
2591277.84679603 ACC:
2591277.846797998 ACC: Trans 2
2591277.846799222 ACC: Simple transfer of 'a (dope vector)' (72 bytes)
2591277.84680045 ACC: host ptr 416480
2591277.84680167 ACC: acc ptr 0
2591277.846802889 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.846804139 ACC: memory not found in present table
2591277.846805349 ACC: allocate (72 bytes)
2591277.846813319 ACC: get new nonreusable memory
2591277.846815152 ACC: new allocated ptr (1554af200e00)
2591277.846816323 ACC: add to present table index 6: host 416480 to 4164c8, acc 1554af200e00
2591277.84681755 ACC: copy host to acc (416480 to 1554af200e00)
2591277.846818745 ACC: internal copy host to acc (host 416480 to acc 1554af200e00) size = 72
2591277.846819976 ACC: new acc ptr 1554af200e00
2591277.846821171 ACC:
2591277.846822314 ACC: Trans 3
2591277.846823514 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.846824684 ACC: host ptr 4164c8
2591277.846825869 ACC: acc ptr 0
2591277.846827115 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.846829999 ACC: Transferring dope vector
2591277.846831225 ACC: dim:1 lowbound:1 extent:2 stride_mult:1
2591277.846832463 ACC: dim:2 lowbound:1 extent:8 stride_mult:2
2591277.846833615 ACC: dim:3 lowbound:1 extent:8 stride_mult:16
2591277.846834798 ACC: DV size=512 (scale:4, elem_size:4)
2591277.846836033 ACC: total mem size=512 (dv:0 obj:512)
2591277.846837211 ACC: host region 2a16d00 to 2a16f00 found in present table index 1 (ref count 2)
2591277.846838406 ACC: memory found in present table (1554af200200, base 1554af200200)
2591277.84683963 ACC: new acc ptr 1554af200200
2591277.846840786 ACC:
2591277.846841979 ACC: Trans 4
2591277.84684314 ACC: Simple transfer of 'eptr (dope vector)' (120 bytes)
2591277.846844338 ACC: host ptr 4164c8
2591277.84684554 ACC: acc ptr 0
2591277.846852991 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.846854796 ACC: memory not found in present table
2591277.846856069 ACC: allocate (120 bytes)
2591277.846857231 ACC: get new nonreusable memory
2591277.846858428 ACC: new allocated ptr (1554af201000)
2591277.846859644 ACC: add to present table index 5: host 4164c8 to 416540, acc 1554af201000
2591277.846860904 ACC: copy host to acc (4164c8 to 1554af201000)
2591277.846862153 ACC: internal copy host to acc (host 4164c8 to acc 1554af201000) size = 120
2591277.846863326 ACC: new acc ptr 1554af201000
2591277.846864522 ACC:
2591277.846865684 ACC: Trans 5
2591277.84686691 ACC: Simple transfer of 'rarray(:)' (32 bytes)
2591277.84686811 ACC: host ptr 416e80
2591277.846869263 ACC: acc ptr 0
2591277.846870448 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.846872912 ACC: memory not found in present table
2591277.846874179 ACC: allocate (32 bytes)
2591277.846875401 ACC: get new nonreusable memory
2591277.846876598 ACC: new allocated ptr (1554af201200)
2591277.846877751 ACC: add to present table index 4: host 416e80 to 416ea0, acc 1554af201200
2591277.846878931 ACC: copy host to acc (416e80 to 1554af201200)
2591277.846880247 ACC: internal copy host to acc (host 416e80 to acc 1554af201200) size = 32
2591277.846881441 ACC: new acc ptr 1554af201200
2591277.84688611 ACC:
2591277.84688764 ACC: End transfer (to acc 224 bytes, to host 0 bytes)
2591277.846888778 ACC:
2591277.84688998 ACC: Start kernel pointer_test_$ck_L33_1 from sanitized_shorter.f:33
2591277.846891205 ACC: flags: CACHE_MOD CACHE_FUNC
2591277.846892411 ACC: mod cache: 0x416f40
2591277.846893621 ACC: kernel cache: 0x416f00
2591277.846894798 ACC: async info: (nil)
2591277.846895994 ACC: arguments: GPU argument info
2591277.846897198 ACC: param size: 104
2591277.846898389 ACC: param pointer: 0x7fffffff7460
2591277.846899552 ACC: blocks: 1
2591277.84690074 ACC: threads: 1
2591277.84690194 ACC: event id: 0
2591277.846903122 ACC: using cached func
2591277.846946601 ACC: kernel information
2591277.846948566 ACC: num registers : 26
2591277.846949761 ACC: max theads per block : 1024
2591277.846954335 ACC: shared size : 0 bytes
2591277.846955901 ACC: const size : 0 bytes
2591277.846957095 ACC: local size : 192 bytes
2591277.846961561 ACC:
2591277.846963063 ACC: launching kernel new
2591277.852472941 ACC: synchronize
2591277.853475061 ACC: End kernel
2591277.853481824 ACC:
2591277.853483671 ACC: Start transfer 5 items from sanitized_shorter.f:37
2591277.853485038 ACC: flags:
2591277.853486244 ACC:
2591277.853487433 ACC: Trans 1
2591277.853488723 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.853489994 ACC: host ptr 416480
2591277.853491179 ACC: acc ptr 1554af200000
2591277.853492551 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.853493833 ACC: Transferring dope vector
2591277.853495016 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.853496309 ACC: total mem size=72 (dv:0 obj:72)
2591277.85349747 ACC: release acc 1554af200000 from present table index 0 (ref_count 2)
2591277.85349877 ACC: release present (acc 1554af200000)
2591277.853499955 ACC: new acc ptr 0
2591277.853501179 ACC:
2591277.853513441 ACC: Trans 2
2591277.853515241 ACC: Simple transfer of 'a (dope vector)' (72 bytes)
2591277.853516501 ACC: host ptr 416480
2591277.853517758 ACC: acc ptr 1554af200e00
2591277.853518902 ACC: flags: FREE REL_PRESENT REG_PRESENT
2591277.853520147 ACC: last release acc 1554af200e00 from present table index 6 (ref_count 1)
2591277.85352145 ACC: last release of conditional present (acc 1554af200e00, base 1554af200e00)
2591277.853522702 ACC: remove acc 1554af200e00 from present table index 6
2591277.853523935 ACC: new acc ptr 0
2591277.853525194 ACC:
2591277.853526441 ACC: Trans 3
2591277.853527691 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.853528909 ACC: host ptr 4164c8
2591277.853530132 ACC: acc ptr 1554af200200
2591277.853531318 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.85353257 ACC: Transferring dope vector
2591277.853533726 ACC: dim:1 lowbound:1 extent:2 stride_mult:1
2591277.853534911 ACC: dim:2 lowbound:1 extent:8 stride_mult:2
2591277.853536076 ACC: dim:3 lowbound:1 extent:8 stride_mult:16
2591277.853537309 ACC: DV size=512 (scale:4, elem_size:4)
2591277.853538499 ACC: total mem size=512 (dv:0 obj:512)
2591277.853539728 ACC: release acc 1554af200200 from present table index 1 (ref_count 1)
2591277.853540957 ACC: release present (acc 1554af200200)
2591277.853542239 ACC: new acc ptr 0
2591277.853543469 ACC:
2591277.853544628 ACC: Trans 4
2591277.853545853 ACC: Simple transfer of 'eptr (dope vector)' (120 bytes)
2591277.853547079 ACC: host ptr 4164c8
2591277.853548251 ACC: acc ptr 1554af201000
2591277.853549431 ACC: flags: FREE REL_PRESENT REG_PRESENT
2591277.853550664 ACC: last release acc 1554af201000 from present table index 5 (ref_count 1)
2591277.853551878 ACC: last release of conditional present (acc 1554af201000, base 1554af201000)
2591277.853553122 ACC: remove acc 1554af201000 from present table index 5
2591277.853554355 ACC: new acc ptr 0
2591277.853555639 ACC:
2591277.85355684 ACC: Trans 5
2591277.853558024 ACC: Simple transfer of 'rarray(:)' (32 bytes)
2591277.853559234 ACC: host ptr 416e80
2591277.853572135 ACC: acc ptr 1554af201200
2591277.853578747 ACC: flags: COPY_ACC_TO_HOST FREE REL_PRESENT REG_PRESENT
2591277.85358047 ACC: last release acc 1554af201200 from present table index 4 (ref_count 1)
2591277.853581678 ACC: last release of conditional present (acc 1554af201200, base 1554af201200)
2591277.853582899 ACC: copy acc to host (1554af201200 to 416e80)
2591277.853584076 ACC: interal copy acc to host (acc 1554af201200 to host 416e80) size = 32
2591277.85358528 ACC: remove acc 1554af201200 from present table index 4
2591277.85358643 ACC: new acc ptr 0
2591277.853587599 ACC:
2591277.853588778 ACC: End transfer (to acc 0 bytes, to host 32 bytes)
2591277.853589927 ACC:
2591277.853591064 ACC: Start transfer 3 items from sanitized_shorter.f:39
2591277.853592224 ACC: flags:
2591277.853593397 ACC:
2591277.853594514 ACC: Trans 1
2591277.853601856 ACC: Simple transfer of 'a(1)%c(2)%array(:,:,:)' (120 bytes)
2591277.853603526 ACC: host ptr 574b78
2591277.853604713 ACC: acc ptr 0
2591277.853605966 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REG_PRESENT INIT_ACC_PTR FORCE_DELETE IGNORE_ABSENT
2591277.853607261 ACC: Transferring dope vector
2591277.853608397 ACC: dim:1 lowbound:1 extent:8 stride_mult:1
2591277.853609603 ACC: dim:2 lowbound:1 extent:8 stride_mult:8
2591277.853610758 ACC: dim:3 lowbound:1 extent:8 stride_mult:64
2591277.853623783 ACC: DV size=2048 (scale:4, elem_size:4)
2591277.853624899 ACC: total mem size=2048 (dv:0 obj:2048)
2591277.853625996 ACC: host region 574c40 to 575440 found in present table index 2 (ref count 1)
2591277.853627182 ACC: remove acc 1554af200400 from present table index 2
2591277.853628319 ACC: new acc ptr 0
2591277.853629436 ACC:
2591277.853634694 ACC: Trans 2
2591277.853636005 ACC: Simple transfer of 'a(1)%c(2)' (72 bytes)
2591277.853637108 ACC: host ptr 7fffffff73a0
2591277.853638219 ACC: acc ptr 0
2591277.85363929 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT INIT_ACC_PTR
2591277.853640461 ACC: Transferring dope vector
2591277.853641629 ACC: DV size=120 (dim:1 extent:1 stride_mult:15 scale:8 elem_size:120)
2591277.85364288 ACC: total mem size=120 (dv:0 obj:120)
2591277.853643981 ACC: host region 574b78 to 574bf0 found in present table index 3 (ref count 3)
2591277.853740012 ACC: release acc 1554af200c78 from present table index 3 (ref_count 2)
2591277.853742948 ACC: release present (acc 1554af200c78)
2591277.853744254 ACC: new acc ptr 0
2591277.853745526 ACC:
2591277.8537519 ACC: Trans 3
2591277.853753566 ACC: Simple transfer of 'a(1)' (72 bytes)
2591277.853754862 ACC: host ptr 7fffffff73e8
2591277.853756062 ACC: acc ptr 0
2591277.85375728 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT INIT_ACC_PTR
2591277.853760877 ACC: Transferring dope vector
2591277.853762276 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.853763568 ACC: total mem size=72 (dv:0 obj:72)
2591277.853764758 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 2)
2591277.853766024 ACC: release acc 1554af200000 from present table index 0 (ref_count 1)
2591277.853767312 ACC: release present (acc 1554af200000)
2591277.853768521 ACC: new acc ptr 0
2591277.853769726 ACC:
2591277.853770935 ACC: End transfer (to acc 0 bytes, to host 0 bytes)
2591277.853772126 ACC:
2591277.853773371 ACC: Start transfer 1 items from sanitized_shorter.f:42
2591277.853774578 ACC: flags:
2591277.853775803 ACC:
2591277.853783958 ACC: Trans 1
2591277.85378568 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.853786899 ACC: host ptr 4164c8
2591277.853788171 ACC: acc ptr 0
2591277.853789429 ACC: flags: DOPE_VECTOR DV_ONLY_DATA FREE REL_PRESENT REG_PRESENT INIT_ACC_PTR
2591277.85379066 ACC: Transferring dope vector
2591277.853793293 ACC: dim:1 lowbound:1 extent:2 stride_mult:1
2591277.853794584 ACC: dim:2 lowbound:1 extent:8 stride_mult:2
2591277.853795742 ACC: dim:3 lowbound:1 extent:8 stride_mult:16
2591277.853796999 ACC: DV size=512 (scale:4, elem_size:4)
2591277.853798228 ACC: total mem size=512 (dv:0 obj:512)
2591277.853799413 ACC: host region 2a16d00 to 2a16f00 found in present table index 1 (ref count 1)
2591277.853800642 ACC: last release acc 1554af200200 from present table index 1 (ref_count 1)
2591277.853801855 ACC: last release of conditional present (acc 1554af200200, base 1554af200200)
2591277.853803105 ACC: remove acc 1554af200200 from present table index 1
2591277.853804358 ACC: new acc ptr 0
2591277.853805513 ACC:
2591277.853854334 ACC: End transfer (to acc 0 bytes, to host 0 bytes)
2591277.853856447 ACC:
2591277.853861072 Doing loop level 3
2591277.853862612 ACC: Start transfer 1 items from sanitized_shorter.f:28
2591277.853863822 ACC: flags:
2591277.853865008 ACC:
2591277.853866261 ACC: Trans 1
2591277.853867451 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.853871675 ACC: host ptr 4164c8
2591277.853873165 ACC: acc ptr 0
2591277.853874498 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.853875833 ACC: Transferring dope vector
2591277.853877045 ACC: dim:1 lowbound:1 extent:3 stride_mult:1
2591277.853878296 ACC: dim:2 lowbound:1 extent:8 stride_mult:3
2591277.853879499 ACC: dim:3 lowbound:1 extent:8 stride_mult:24
2591277.853883733 ACC: DV size=768 (scale:4, elem_size:4)
2591277.853885194 ACC: total mem size=768 (dv:0 obj:768)
2591277.853886354 ACC: memory not found in present table
2591277.853887541 ACC: allocate (768 bytes)
2591277.853888743 ACC: get new nonreusable memory
2591277.853889926 ACC: new allocated ptr (1554af200200)
2591277.853891088 ACC: add to present table index 1: host 2a40a00 to 2a40d00, acc 1554af200200
2591277.853892355 ACC: copy host to acc (2a40a00 to 1554af200200)
2591277.853896409 ACC: internal copy host to acc (host 2a40a00 to acc 1554af200200) size = 768
2591277.853897886 ACC: new acc ptr 1554af200200
2591277.853899081 ACC:
2591277.853900345 ACC: End transfer (to acc 768 bytes, to host 0 bytes)
2591277.853901528 ACC:
2591277.853902793 ACC: Start transfer 1 items from sanitized_shorter.f:29
2591277.853904002 ACC: flags:
2591277.85390522 ACC:
2591277.853909342 ACC: Trans 1
2591277.853910881 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.853912105 ACC: host ptr 416480
2591277.85391329 ACC: acc ptr 0
2591277.853914585 ACC: flags: DOPE_VECTOR DV_ONLY_DATA COPY_HOST_TO_ACC REG_PRESENT INIT_ACC_PTR IGNORE_ABSENT
2591277.853915863 ACC: Transferring dope vector
2591277.853917081 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.85391834 ACC: total mem size=72 (dv:0 obj:72)
2591277.853919506 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 1)
2591277.853920827 ACC: copy host to acc (574a40 to 1554af200000)
2591277.853922035 ACC: present table entry contains attached pointers, may need to split transfer
2591277.853926564 ACC: transfer starts within pointer: 574a40 to 574a88 starts within (574a40 to 574a88)
2591277.85392811 ACC:
2591277.85392935 ACC: End transfer (to acc 72 bytes, to host 0 bytes)
2591277.853930529 ACC:
2591277.853931743 ACC: Start transfer 6 items from sanitized_shorter.f:31
2591277.853932923 ACC: flags: NEED_POST_PHASE
2591277.85393409 ACC:
2591277.853935272 ACC: Transfer Phase
2591277.853937715 ACC: Trans 1
2591277.853938962 ACC: Simple transfer of 'a(1)%c(2)%array(:,:,:)' (120 bytes)
2591277.853940261 ACC: host ptr 574b78
2591277.853949856 ACC: acc ptr 0
2591277.853951845 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.853953135 ACC: Transferring dope vector
2591277.853954384 ACC: dim:1 lowbound:1 extent:8 stride_mult:1
2591277.853955564 ACC: dim:2 lowbound:1 extent:8 stride_mult:8
2591277.853956755 ACC: dim:3 lowbound:1 extent:8 stride_mult:64
2591277.85395955 ACC: DV size=2048 (scale:4, elem_size:4)
2591277.853960828 ACC: total mem size=2048 (dv:0 obj:2048)
2591277.853962027 ACC: memory not found in present table
2591277.853963207 ACC: allocate (2048 bytes)
2591277.853964365 ACC: get new nonreusable memory
2591277.853965525 ACC: new allocated ptr (1554af200e00)
2591277.853966701 ACC: add to present table index 2: host 574c40 to 575440, acc 1554af200e00
2591277.853967931 ACC: copy host to acc (574c40 to 1554af200e00)
2591277.853969108 ACC: internal copy host to acc (host 574c40 to acc 1554af200e00) size = 2048
2591277.853970313 ACC: new acc ptr 1554af200e00
2591277.85397154 ACC:
2591277.853972737 ACC: Trans 2
2591277.853973908 ACC: Simple transfer of 'a(1)%c(:)' (72 bytes)
2591277.853975162 ACC: host ptr 574a40
2591277.853980235 ACC: acc ptr 0
2591277.853981965 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.853983233 ACC: Transferring dope vector
2591277.85398446 ACC: DV size=240 (dim:1 extent:2 stride_mult:15 scale:8 elem_size:120)
2591277.853985655 ACC: total mem size=240 (dv:0 obj:240)
2591277.853986859 ACC: host region 574b00 to 574bf0 found in present table index 3 (ref count 3)
2591277.853988115 ACC: memory found in present table (1554af200c00, base 1554af200c00)
2591277.853990808 ACC: new acc ptr 1554af200c00
2591277.853992185 ACC:
2591277.853993371 ACC: Trans 3
2591277.853994604 ACC: Simple transfer of 'a(1)%c(2)' (72 bytes)
2591277.853995852 ACC: host ptr 7fffffff7310
2591277.853997054 ACC: acc ptr 0
2591277.854025126 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE ACQ_PRESENT REG_PRESENT
2591277.854036732 ACC: Transferring dope vector
2591277.854038461 ACC: DV size=120 (dim:1 extent:1 stride_mult:15 scale:8 elem_size:120)
2591277.854039731 ACC: total mem size=120 (dv:0 obj:120)
2591277.854040976 ACC: host region 574b78 to 574bf0 found in present table index 3 (ref count 4)
2591277.854042215 ACC: memory found in present table (1554af200c78, base 1554af200c00)
2591277.854043424 ACC: new acc ptr 1554af200c78
2591277.854044705 ACC:
2591277.854045984 ACC: Trans 4
2591277.854047214 ACC: Trans 5
2591277.854048439 ACC: Simple transfer of 'a(1)' (72 bytes)
2591277.854049663 ACC: host ptr 7fffffff7358
2591277.854050853 ACC: acc ptr 0
2591277.854052082 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE ACQ_PRESENT REG_PRESENT
2591277.854053321 ACC: Transferring dope vector
2591277.854054501 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.854055734 ACC: total mem size=72 (dv:0 obj:72)
2591277.85405693 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 2)
2591277.854058194 ACC: memory found in present table (1554af200000, base 1554af200000)
2591277.854062894 ACC: new acc ptr 1554af200000
2591277.85406443 ACC:
2591277.854065611 ACC: Trans 6
2591277.854066796 ACC: Post Transfer Phase
2591277.854067987 ACC: Trans 1
2591277.854069168 ACC: Trans 2
2591277.854070342 ACC: Trans 3
2591277.854071529 ACC: Trans 4
2591277.85407276 ACC: Simple transfer of 'a(1)%c(2)%array' (120 bytes)
2591277.854073997 ACC: host ptr 574b78
2591277.854075233 ACC: acc ptr 0
2591277.854076448 ACC: flags: REG_PRESENT OMP_PTR_ATTACH
2591277.854077623 ACC: host region 574c40 to 574c41 found in present table index 2 (ref count 1)
2591277.854079098 ACC: already attached pointer host 0x574b78 (pointee 0x574c40) to device 1554af200c78 (pointee 1554af200e00) for 'a(1)%c(2)%array' from sanitized_shorter.f:31
2591277.854080547 ACC:
2591277.854081774 ACC: Trans 5
2591277.854082929 ACC: Trans 6
2591277.854084118 ACC: Simple transfer of 'a(1)%c' (72 bytes)
2591277.854085278 ACC: host ptr 574a40
2591277.854086465 ACC: acc ptr 0
2591277.854087747 ACC: flags: REG_PRESENT OMP_PTR_ATTACH
2591277.854092421 ACC: host region 574b00 to 574b01 found in present table index 3 (ref count 4)
2591277.854093969 ACC: already attached pointer host 0x574a40 (pointee 0x574b00) to device 1554af200000 (pointee 1554af200c00) for 'a(1)%c' from sanitized_shorter.f:31
2591277.854095327 ACC:
2591277.854096505 ACC: End transfer (to acc 2048 bytes, to host 0 bytes)
2591277.854097686 ACC:
2591277.854098854 ACC: Start transfer 5 items from sanitized_shorter.f:33
2591277.854100082 ACC: flags:
2591277.854101311 ACC:
2591277.854102506 ACC: Trans 1
2591277.854103711 ACC: Simple transfer of 'a(:)' (72 bytes)
2591277.854104956 ACC: host ptr 416480
2591277.854106142 ACC: acc ptr 0
2591277.854107397 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.85410873 ACC: Transferring dope vector
2591277.854109941 ACC: DV size=72 (dim:1 extent:1 stride_mult:9 scale:8 elem_size:72)
2591277.854111188 ACC: total mem size=72 (dv:0 obj:72)
2591277.854115815 ACC: host region 574a40 to 574a88 found in present table index 0 (ref count 3)
2591277.854117423 ACC: memory found in present table (1554af200000, base 1554af200000)
2591277.854118703 ACC: new acc ptr 1554af200000
2591277.854119923 ACC:
2591277.854121123 ACC: Trans 2
2591277.854122319 ACC: Simple transfer of 'a (dope vector)' (72 bytes)
2591277.854123515 ACC: host ptr 416480
2591277.854124731 ACC: acc ptr 0
2591277.854125942 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.854127177 ACC: memory not found in present table
2591277.854128407 ACC: allocate (72 bytes)
2591277.854132783 ACC: get new nonreusable memory
2591277.854134223 ACC: new allocated ptr (1554af200600)
2591277.854135418 ACC: add to present table index 4: host 416480 to 4164c8, acc 1554af200600
2591277.85413658 ACC: copy host to acc (416480 to 1554af200600)
2591277.854137767 ACC: internal copy host to acc (host 416480 to acc 1554af200600) size = 72
2591277.854138949 ACC: new acc ptr 1554af200600
2591277.854140104 ACC:
2591277.854142584 ACC: Trans 3
2591277.854143826 ACC: Simple transfer of 'eptr(:,:,:)' (120 bytes)
2591277.854152882 ACC: host ptr 4164c8
2591277.854154874 ACC: acc ptr 0
2591277.854156182 ACC: flags: DOPE_VECTOR DV_ONLY_DATA ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT IMPLICIT_MAP
2591277.854157428 ACC: Transferring dope vector
2591277.854158647 ACC: dim:1 lowbound:1 extent:3 stride_mult:1
2591277.854159823 ACC: dim:2 lowbound:1 extent:8 stride_mult:3
2591277.854160965 ACC: dim:3 lowbound:1 extent:8 stride_mult:24
2591277.854162142 ACC: DV size=768 (scale:4, elem_size:4)
2591277.854163398 ACC: total mem size=768 (dv:0 obj:768)
2591277.854164576 ACC: host region 2a40a00 to 2a40d00 found in present table index 1 (ref count 2)
2591277.854165791 ACC: memory found in present table (1554af200200, base 1554af200200)
2591277.854167034 ACC: new acc ptr 1554af200200
2591277.854173334 ACC:
2591277.854175022 ACC: Trans 4
2591277.854176228 ACC: Simple transfer of 'eptr (dope vector)' (120 bytes)
2591277.854177468 ACC: host ptr 4164c8
2591277.854178662 ACC: acc ptr 0
2591277.854179853 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.854181101 ACC: memory not found in present table
2591277.854182281 ACC: allocate (120 bytes)
2591277.85420754 ACC: get new nonreusable memory
2591277.854209658 ACC: new allocated ptr (1554af200800)
2591277.85421447 ACC: add to present table index 5: host 4164c8 to 416540, acc 1554af200800
2591277.854215969 ACC: copy host to acc (4164c8 to 1554af200800)
2591277.854217174 ACC: internal copy host to acc (host 4164c8 to acc 1554af200800) size = 120
2591277.854218429 ACC: new acc ptr 1554af200800
2591277.854219631 ACC:
2591277.854220823 ACC: Trans 5
2591277.854221977 ACC: Simple transfer of 'rarray(:)' (32 bytes)
2591277.854226253 ACC: host ptr 416e80
2591277.854227653 ACC: acc ptr 0
2591277.854228859 ACC: flags: ALLOCATE COPY_HOST_TO_ACC ACQ_PRESENT REG_PRESENT
2591277.854230062 ACC: memory not found in present table
2591277.854231292 ACC: allocate (32 bytes)
2591277.854232486 ACC: get new nonreusable memory
2591277.854233672 ACC: new allocated ptr (1554af200a00)
2591277.854237753 ACC: add to present table index 6: host 416e80 to 416ea0, acc 1554af200a00
2591277.854239343 ACC: copy host to acc (416e80 to 1554af200a00)
2591277.854240571 ACC: internal copy host to acc (host 416e80 to acc 1554af200a00) size = 32
2591277.854241768 ACC: new acc ptr 1554af200a00
2591277.854242971 ACC:
2591277.854244179 ACC: End transfer (to acc 224 bytes, to host 0 bytes)
2591277.854248396 ACC:
2591277.854249944 ACC: Start kernel pointer_test_$ck_L33_1 from sanitized_shorter.f:33
2591277.854254783 ACC: flags: CACHE_MOD CACHE_FUNC
2591277.854256117 ACC: mod cache: 0x416f40
2591277.854257311 ACC: kernel cache: 0x416f00
2591277.854262466 ACC: async info: (nil)
2591277.854264012 ACC: arguments: GPU argument info
2591277.854265241 ACC: param size: 104
2591277.854266451 ACC: param pointer: 0x7fffffff7460
2591277.854390955 ACC: blocks: 1
2591277.854392766 ACC: threads: 1
2591277.854393947 ACC: event id: 0
2591277.85439518 ACC: using cached func
2591277.854399581 ACC: kernel information
2591277.854400998 ACC: num registers : 26
2591277.85440219 ACC: max theads per block : 1024
2591277.854403483 ACC: shared size : 0 bytes
2591277.854406501 ACC: const size : 0 bytes
2591277.854407924 ACC: local size : 192 bytes