-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathprif.f90
1045 lines (928 loc) · 46.1 KB
/
prif.f90
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
! Copyright (c), The Regents of the University of California
! Terms of use are as specified in LICENSE.txt
module prif
use iso_c_binding, only: c_int, c_bool, c_intptr_t, c_intmax_t, c_ptr, c_funptr, c_size_t, c_ptrdiff_t, c_null_ptr
implicit none
private
public :: prif_init
public :: prif_stop, prif_error_stop, prif_fail_image
public :: prif_allocate_coarray, prif_allocate, prif_deallocate_coarray, prif_deallocate
public :: prif_put, prif_put_indirect, prif_get, prif_get_indirect, prif_put_with_notify, prif_put_with_notify_indirect
public :: prif_put_indirect_with_notify, prif_put_indirect_with_notify_indirect
public :: prif_get_strided, prif_get_strided_indirect, prif_put_strided, prif_put_strided_indirect
public :: prif_put_strided_with_notify, prif_put_strided_with_notify_indirect
public :: prif_put_strided_indirect_with_notify, prif_put_strided_indirect_with_notify_indirect
public :: prif_alias_create, prif_alias_destroy
public :: prif_lcobound_with_dim, prif_lcobound_no_dim, prif_ucobound_with_dim, prif_ucobound_no_dim, prif_coshape
public :: prif_image_index, prif_image_index_with_team, prif_image_index_with_team_number
public :: prif_this_image_no_coarray, prif_this_image_with_coarray, prif_this_image_with_dim
public :: prif_num_images, prif_num_images_with_team, prif_num_images_with_team_number
public :: prif_failed_images, prif_stopped_images, prif_image_status
public :: prif_set_context_data, prif_get_context_data, prif_size_bytes
public :: prif_co_sum, prif_co_max, prif_co_min, prif_co_reduce, prif_co_broadcast
public :: prif_form_team, prif_change_team, prif_end_team, prif_get_team, prif_team_number
public :: prif_sync_all, prif_sync_images, prif_sync_team, prif_sync_memory
public :: prif_lock, prif_lock_indirect, prif_unlock, prif_unlock_indirect
public :: prif_critical, prif_end_critical
public :: prif_event_post, prif_event_post_indirect, prif_event_wait, prif_event_query
public :: prif_notify_wait
public :: prif_atomic_add, prif_atomic_add_indirect, prif_atomic_and, prif_atomic_and_indirect
public :: prif_atomic_or, prif_atomic_or_indirect, prif_atomic_xor, prif_atomic_xor_indirect
public :: prif_atomic_cas_int, prif_atomic_cas_int_indirect, prif_atomic_cas_logical, prif_atomic_cas_logical_indirect
public :: prif_atomic_fetch_add, prif_atomic_fetch_add_indirect
public :: prif_atomic_fetch_and, prif_atomic_fetch_and_indirect, prif_atomic_fetch_or, prif_atomic_fetch_or_indirect
public :: prif_atomic_fetch_xor, prif_atomic_fetch_xor_indirect
public :: prif_atomic_define_int, prif_atomic_define_int_indirect, prif_atomic_define_logical, prif_atomic_define_logical_indirect
public :: prif_atomic_ref_int, prif_atomic_ref_int_indirect, prif_atomic_ref_logical, prif_atomic_ref_logical_indirect
integer(c_int), parameter, public :: PRIF_VERSION_MAJOR = 0
integer(c_int), parameter, public :: PRIF_VERSION_MINOR = 4
integer(c_int), parameter, public :: PRIF_ATOMIC_INT_KIND = selected_int_kind(18)
! gfortran-14 doesn't currently support the intrinsic selected_logical_kind
! The following commented-out definition is the desired definition and should replace
! the temporary definition when possible
! integer(c_int), parameter, public :: PRIF_ATOMIC_LOGICAL_KIND = selected_logical_kind(32)
integer(c_int), parameter, public :: PRIF_ATOMIC_LOGICAL_KIND = PRIF_ATOMIC_INT_KIND
integer(c_int), parameter, public :: &
PRIF_CURRENT_TEAM = 101, &
PRIF_INITIAL_TEAM = 102, &
PRIF_PARENT_TEAM = 103, &
PRIF_STAT_FAILED_IMAGE = 201, &
PRIF_STAT_LOCKED = 202, &
PRIF_STAT_LOCKED_OTHER_IMAGE = 203, &
PRIF_STAT_STOPPED_IMAGE = 204, &
PRIF_STAT_UNLOCKED = 205, &
PRIF_STAT_UNLOCKED_FAILED_IMAGE = 206, &
PRIF_STAT_OUT_OF_MEMORY = 301, &
PRIF_STAT_ALREADY_INIT = 302
type, public :: prif_event_type
private
! TODO: actual implementation
integer :: unimplemented_feature_placeholder = 0
end type
type, public :: prif_lock_type
private
! TODO: actual implementation
integer :: unimplemented_feature_placeholder = 0
end type
type, public :: prif_critical_type
private
! TODO: actual implementation
integer :: unimplemented_feature_placeholder = 0
end type
type, public :: prif_notify_type
private
! TODO: actual implementation
integer :: unimplemented_feature_placeholder = 0
end type
type, public :: prif_coarray_handle
private
type(handle_data), pointer :: info
end type
type, public :: prif_team_type
private
type(team_data), pointer :: info => null()
end type
interface
module subroutine prif_init(stat)
implicit none
integer(c_int), intent(out) :: stat
end subroutine
module subroutine prif_stop(quiet, stop_code_int, stop_code_char)
implicit none
logical(c_bool), intent(in) :: quiet
integer(c_int), intent(in), optional :: stop_code_int
character(len=*), intent(in), optional :: stop_code_char
end subroutine
module pure subroutine prif_error_stop(quiet, stop_code_int, stop_code_char)
implicit none
logical(c_bool), intent(in) :: quiet
integer(c_int), intent(in), optional :: stop_code_int
character(len=*), intent(in), optional :: stop_code_char
end subroutine
module subroutine prif_fail_image()
implicit none
end subroutine
module subroutine prif_allocate_coarray( &
lcobounds, ucobounds, lbounds, ubounds, element_size, final_func, coarray_handle, &
allocated_memory, stat, errmsg, errmsg_alloc)
implicit none
integer(c_intmax_t), dimension(:), intent(in) :: lcobounds, ucobounds
integer(c_intmax_t), dimension(:), intent(in) :: lbounds, ubounds
integer(c_size_t), intent(in) :: element_size
type(c_funptr), intent(in) :: final_func
type(prif_coarray_handle), intent(out) :: coarray_handle
type(c_ptr), intent(out) :: allocated_memory
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_allocate(size_in_bytes, allocated_memory, stat, errmsg, errmsg_alloc)
implicit none
integer(c_size_t) :: size_in_bytes
type(c_ptr), intent(out) :: allocated_memory
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_deallocate_coarray(coarray_handles, stat, errmsg, errmsg_alloc)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handles(:)
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_deallocate(mem, stat, errmsg, errmsg_alloc)
implicit none
type(c_ptr), intent(in) :: mem
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put( &
image_num, coarray_handle, offset, current_image_buffer, size_in_bytes, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_indirect( &
image_num, remote_ptr, current_image_buffer, size_in_bytes, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_with_notify( &
image_num, coarray_handle, offset, current_image_buffer, size_in_bytes, &
notify_coarray_handle, notify_offset, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
type(prif_coarray_handle), intent(in) :: notify_coarray_handle
integer(c_size_t), intent(in) :: notify_offset
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_with_notify_indirect( &
image_num, coarray_handle, offset, current_image_buffer, size_in_bytes, notify_ptr, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
integer(c_intptr_t), intent(in) :: notify_ptr
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_indirect_with_notify( &
image_num, remote_ptr, current_image_buffer, size_in_bytes, notify_coarray_handle, notify_offset, &
stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
type(prif_coarray_handle), intent(in) :: notify_coarray_handle
integer(c_size_t), intent(in) :: notify_offset
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_indirect_with_notify_indirect( &
image_num, remote_ptr, current_image_buffer, size_in_bytes, notify_ptr, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
integer(c_intptr_t), intent(in) :: notify_ptr
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_get( &
image_num, coarray_handle, offset, current_image_buffer, size_in_bytes, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_get_indirect(image_num, remote_ptr, current_image_buffer, size_in_bytes, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
type(c_ptr), intent(in) :: current_image_buffer
integer(c_size_t), intent(in) :: size_in_bytes
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_get_strided( &
image_num, coarray_handle, offset, remote_stride, current_image_buffer, current_image_stride, &
element_size, extent, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_get_strided_indirect( &
image_num, remote_ptr, remote_stride, current_image_buffer, current_image_stride, element_size, extent, &
stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_strided( &
image_num, coarray_handle, offset, remote_stride, current_image_buffer, current_image_stride, element_size, &
extent, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_strided_indirect( &
image_num, remote_ptr, remote_stride, current_image_buffer, current_image_stride, element_size, extent, &
stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_strided_with_notify( &
image_num, coarray_handle, offset, remote_stride, current_image_buffer, current_image_stride, element_size, &
extent, notify_coarray_handle, notify_offset, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
type(prif_coarray_handle), intent(in) :: notify_coarray_handle
integer(c_size_t), intent(in) :: notify_offset
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_strided_with_notify_indirect( &
image_num, coarray_handle, offset, remote_stride, current_image_buffer, current_image_stride, element_size, &
extent, notify_ptr, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
integer(c_intptr_t), intent(in) :: notify_ptr
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_strided_indirect_with_notify( &
image_num, remote_ptr, remote_stride, current_image_buffer, current_image_stride, element_size, extent, &
notify_coarray_handle, notify_offset, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
type(prif_coarray_handle), intent(in) :: notify_coarray_handle
integer(c_size_t), intent(in) :: notify_offset
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_put_strided_indirect_with_notify_indirect( &
image_num, remote_ptr, remote_stride, current_image_buffer, current_image_stride, element_size, extent, &
notify_ptr, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: remote_ptr
integer(c_ptrdiff_t), intent(in) :: remote_stride(:)
type(c_ptr), intent(in) :: current_image_buffer
integer(c_ptrdiff_t), intent(in) :: current_image_stride(:)
integer(c_size_t), intent(in) :: element_size
integer(c_size_t), intent(in) :: extent(:)
integer(c_intptr_t), intent(in) :: notify_ptr
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_alias_create(source_handle, alias_lcobounds, alias_ucobounds, alias_handle)
implicit none
type(prif_coarray_handle), intent(in) :: source_handle
integer(c_intmax_t), intent(in) :: alias_lcobounds(:)
integer(c_intmax_t), intent(in) :: alias_ucobounds(:)
type(prif_coarray_handle), intent(out) :: alias_handle
end subroutine
module subroutine prif_alias_destroy(alias_handle)
implicit none
type(prif_coarray_handle), intent(in) :: alias_handle
end subroutine
module subroutine prif_lcobound_with_dim(coarray_handle, dim, lcobound)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_int), intent(in) :: dim
integer(c_intmax_t), intent(out) :: lcobound
end subroutine
module subroutine prif_lcobound_no_dim(coarray_handle, lcobounds)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_intmax_t), intent(out) :: lcobounds(:)
end subroutine
module subroutine prif_ucobound_with_dim(coarray_handle, dim, ucobound)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_int), intent(in) :: dim
integer(c_intmax_t), intent(out) :: ucobound
end subroutine
module subroutine prif_ucobound_no_dim(coarray_handle, ucobounds)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_intmax_t), intent(out) :: ucobounds(:)
end subroutine
module subroutine prif_coshape(coarray_handle, sizes)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(out) :: sizes(:)
end subroutine
module subroutine prif_image_index(coarray_handle, sub, image_index)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_intmax_t), intent(in) :: sub(:)
integer(c_int), intent(out) :: image_index
end subroutine
module subroutine prif_image_index_with_team(coarray_handle, sub, team, image_index)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_intmax_t), intent(in) :: sub(:)
type(prif_team_type), intent(in) :: team
integer(c_int), intent(out) :: image_index
end subroutine
module subroutine prif_image_index_with_team_number(coarray_handle, sub, team_number, image_index)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_intmax_t), intent(in) :: sub(:)
integer(c_int), intent(in) :: team_number
integer(c_int), intent(out) :: image_index
end subroutine
module subroutine prif_num_images(num_images)
implicit none
integer(c_int), intent(out) :: num_images
end subroutine
module subroutine prif_num_images_with_team(team, num_images)
implicit none
type(prif_team_type), intent(in) :: team
integer(c_int), intent(out) :: num_images
end subroutine
module subroutine prif_num_images_with_team_number(team_number, num_images)
implicit none
integer(c_intmax_t), intent(in) :: team_number
integer(c_int), intent(out) :: num_images
end subroutine
module subroutine prif_this_image_no_coarray(team, this_image)
implicit none
type(prif_team_type), intent(in), optional :: team
integer(c_int), intent(out) :: this_image
end subroutine
module subroutine prif_this_image_with_coarray(coarray_handle, team, cosubscripts)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
type(prif_team_type), intent(in), optional :: team
integer(c_intmax_t), intent(out) :: cosubscripts(:)
end subroutine
module subroutine prif_this_image_with_dim(coarray_handle, dim, team, cosubscript)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_int), intent(in) :: dim
type(prif_team_type), intent(in), optional :: team
integer(c_intmax_t), intent(out) :: cosubscript
end subroutine
module subroutine prif_failed_images(team, failed_images)
implicit none
type(prif_team_type), intent(in), optional :: team
integer(c_int), allocatable, intent(out) :: failed_images(:)
end subroutine
module subroutine prif_stopped_images(team, stopped_images)
implicit none
type(prif_team_type), intent(in), optional :: team
integer(c_int), allocatable, intent(out) :: stopped_images(:)
end subroutine
module impure elemental subroutine prif_image_status(image, team, image_status)
implicit none
integer(c_int), intent(in) :: image
type(prif_team_type), intent(in), optional :: team
integer(c_int), intent(out) :: image_status
end subroutine
module subroutine prif_set_context_data(coarray_handle, context_data)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
type(c_ptr), intent(in) :: context_data
end subroutine
module subroutine prif_get_context_data(coarray_handle, context_data)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
type(c_ptr), intent(out) :: context_data
end subroutine
module subroutine prif_size_bytes(coarray_handle, data_size)
implicit none
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(out) :: data_size
end subroutine
module subroutine prif_co_sum(a, result_image, stat, errmsg, errmsg_alloc)
implicit none
type(*), intent(inout), contiguous, target :: a(..)
integer(c_int), intent(in), optional :: result_image
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_co_max(a, result_image, stat, errmsg, errmsg_alloc)
implicit none
type(*), intent(inout), contiguous, target :: a(..)
integer(c_int), intent(in), optional :: result_image
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_co_min(a, result_image, stat, errmsg, errmsg_alloc)
implicit none
type(*), intent(inout), contiguous, target :: a(..)
integer(c_int), intent(in), optional :: result_image
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_co_reduce(a, operation, result_image, stat, errmsg, errmsg_alloc)
implicit none
type(*), intent(inout), contiguous, target :: a(..)
type(c_funptr), value :: operation
integer(c_int), intent(in), optional :: result_image
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_co_broadcast(a, source_image, stat, errmsg, errmsg_alloc)
implicit none
type(*), intent(inout), contiguous, target :: a(..)
integer(c_int), intent(in) :: source_image
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_form_team(team_number, team, new_index, stat, errmsg, errmsg_alloc)
implicit none
integer(c_intmax_t), intent(in) :: team_number
type(prif_team_type), intent(out) :: team
integer(c_int), intent(in), optional :: new_index
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_change_team(team, stat, errmsg, errmsg_alloc)
implicit none
type(prif_team_type), intent(in) :: team
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_end_team(stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_get_team(level, team)
implicit none
integer(c_int), intent(in), optional :: level
type(prif_team_type), intent(out) :: team
end subroutine
module subroutine prif_team_number(team, team_number)
implicit none
type(prif_team_type), intent(in), optional :: team
integer(c_intmax_t), intent(out) :: team_number
end subroutine
module subroutine prif_sync_all(stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_sync_images(image_set, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in), optional :: image_set(:)
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_sync_team(team, stat, errmsg, errmsg_alloc)
implicit none
type(prif_team_type), intent(in) :: team
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_sync_memory(stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_lock(image_num, coarray_handle, offset, acquired_lock, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
logical(c_bool), intent(out), optional :: acquired_lock
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_lock_indirect(image_num, lock_var_ptr, acquired_lock, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: lock_var_ptr
logical(c_bool), intent(out), optional :: acquired_lock
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_unlock(image_num, coarray_handle, offset, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_unlock_indirect(image_num, lock_var_ptr, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: lock_var_ptr
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_critical(critical_coarray, stat, errmsg, errmsg_alloc)
implicit none
type(prif_coarray_handle), intent(in) :: critical_coarray
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_end_critical(critical_coarray)
implicit none
type(prif_coarray_handle), intent(in) :: critical_coarray
end subroutine
module subroutine prif_event_post(image_num, coarray_handle, offset, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_event_post_indirect(image_num, event_var_ptr, stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: event_var_ptr
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_event_wait(event_var_ptr, until_count, stat, errmsg, errmsg_alloc)
implicit none
type(c_ptr), intent(in) :: event_var_ptr
integer(c_intmax_t), intent(in), optional :: until_count
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_event_query(event_var_ptr, count, stat)
implicit none
type(c_ptr), intent(in) :: event_var_ptr
integer(c_intmax_t), intent(out) :: count
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_notify_wait(notify_var_ptr, until_count, stat, errmsg, errmsg_alloc)
implicit none
type(c_ptr), intent(in) :: notify_var_ptr
integer(c_intmax_t), intent(in), optional :: until_count
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine
module subroutine prif_atomic_add(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_add_indirect(image_num, atom_remote_ptr, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_and(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_and_indirect(image_num, atom_remote_ptr, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_or(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_or_indirect(image_num, atom_remote_ptr, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_xor(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_xor_indirect(image_num, atom_remote_ptr, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_cas_int(image_num, coarray_handle, offset, old, compare, new, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: compare
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: new
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_cas_int_indirect(image_num, atom_remote_ptr, old, compare, new, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: compare
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: new
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_cas_logical(image_num, coarray_handle, offset, old, compare, new, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(out) :: old
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(in) :: compare
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(in) :: new
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_cas_logical_indirect(image_num, atom_remote_ptr, old, compare, new, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(out) :: old
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(in) :: compare
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(in) :: new
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_add(image_num, coarray_handle, offset, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_add_indirect(image_num, atom_remote_ptr, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_and(image_num, coarray_handle, offset, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_and_indirect(image_num, atom_remote_ptr, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_or(image_num, coarray_handle, offset, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_or_indirect(image_num, atom_remote_ptr, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_xor(image_num, coarray_handle, offset, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_fetch_xor_indirect(image_num, atom_remote_ptr, value, old, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: old
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_define_int(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_define_int_indirect(image_num, atom_remote_ptr, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_define_logical(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_define_logical_indirect(image_num, atom_remote_ptr, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
logical(PRIF_ATOMIC_LOGICAL_KIND), intent(in) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_ref_int(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
type(prif_coarray_handle), intent(in) :: coarray_handle
integer(c_size_t), intent(in) :: offset
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_ref_int_indirect(image_num, atom_remote_ptr, value, stat)
implicit none
integer(c_int), intent(in) :: image_num
integer(c_intptr_t), intent(in) :: atom_remote_ptr
integer(PRIF_ATOMIC_INT_KIND), intent(out) :: value
integer(c_int), intent(out), optional :: stat
end subroutine
module subroutine prif_atomic_ref_logical(image_num, coarray_handle, offset, value, stat)
implicit none
integer(c_int), intent(in) :: image_num