@@ -554,7 +554,6 @@ subroutine pluto_allocate_label_int32_r1_bounds_name(label, array, lbounds, ubou
554554 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
555555end subroutine
556556
557-
558557subroutine pluto_deallocate_int32_r1_type (array , resource )
559558 integer (c_int32_t), pointer , intent (inout ) :: array(:)
560559 type (pluto_memory_resource), intent (in ) :: resource
@@ -644,7 +643,6 @@ subroutine pluto_allocate_label_int64_r1_bounds_name(label, array, lbounds, ubou
644643 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
645644end subroutine
646645
647-
648646subroutine pluto_deallocate_int64_r1_type (array , resource )
649647 integer (c_int64_t), pointer , intent (inout ) :: array(:)
650648 type (pluto_memory_resource), intent (in ) :: resource
@@ -734,7 +732,6 @@ subroutine pluto_allocate_label_real32_r1_bounds_name(label, array, lbounds, ubo
734732 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
735733end subroutine
736734
737-
738735subroutine pluto_deallocate_real32_r1_type (array , resource )
739736 real (c_float), pointer , intent (inout ) :: array(:)
740737 type (pluto_memory_resource), intent (in ) :: resource
@@ -824,7 +821,6 @@ subroutine pluto_allocate_label_real64_r1_bounds_name(label, array, lbounds, ubo
824821 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
825822end subroutine
826823
827-
828824subroutine pluto_deallocate_real64_r1_type (array , resource )
829825 real (c_double), pointer , intent (inout ) :: array(:)
830826 type (pluto_memory_resource), intent (in ) :: resource
@@ -914,7 +910,6 @@ subroutine pluto_allocate_label_int32_r2_bounds_name(label, array, lbounds, ubou
914910 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
915911end subroutine
916912
917-
918913subroutine pluto_deallocate_int32_r2_type (array , resource )
919914 integer (c_int32_t), pointer , intent (inout ) :: array(:,:)
920915 type (pluto_memory_resource), intent (in ) :: resource
@@ -1004,7 +999,6 @@ subroutine pluto_allocate_label_int64_r2_bounds_name(label, array, lbounds, ubou
1004999 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
10051000end subroutine
10061001
1007-
10081002subroutine pluto_deallocate_int64_r2_type (array , resource )
10091003 integer (c_int64_t), pointer , intent (inout ) :: array(:,:)
10101004 type (pluto_memory_resource), intent (in ) :: resource
@@ -1094,7 +1088,6 @@ subroutine pluto_allocate_label_real32_r2_bounds_name(label, array, lbounds, ubo
10941088 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
10951089end subroutine
10961090
1097-
10981091subroutine pluto_deallocate_real32_r2_type (array , resource )
10991092 real (c_float), pointer , intent (inout ) :: array(:,:)
11001093 type (pluto_memory_resource), intent (in ) :: resource
@@ -1184,7 +1177,6 @@ subroutine pluto_allocate_label_real64_r2_bounds_name(label, array, lbounds, ubo
11841177 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
11851178end subroutine
11861179
1187-
11881180subroutine pluto_deallocate_real64_r2_type (array , resource )
11891181 real (c_double), pointer , intent (inout ) :: array(:,:)
11901182 type (pluto_memory_resource), intent (in ) :: resource
@@ -1274,7 +1266,6 @@ subroutine pluto_allocate_label_int32_r3_bounds_name(label, array, lbounds, ubou
12741266 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
12751267end subroutine
12761268
1277-
12781269subroutine pluto_deallocate_int32_r3_type (array , resource )
12791270 integer (c_int32_t), pointer , intent (inout ) :: array(:,:,:)
12801271 type (pluto_memory_resource), intent (in ) :: resource
@@ -1364,7 +1355,6 @@ subroutine pluto_allocate_label_int64_r3_bounds_name(label, array, lbounds, ubou
13641355 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
13651356end subroutine
13661357
1367-
13681358subroutine pluto_deallocate_int64_r3_type (array , resource )
13691359 integer (c_int64_t), pointer , intent (inout ) :: array(:,:,:)
13701360 type (pluto_memory_resource), intent (in ) :: resource
@@ -1454,7 +1444,6 @@ subroutine pluto_allocate_label_real32_r3_bounds_name(label, array, lbounds, ubo
14541444 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
14551445end subroutine
14561446
1457-
14581447subroutine pluto_deallocate_real32_r3_type (array , resource )
14591448 real (c_float), pointer , intent (inout ) :: array(:,:,:)
14601449 type (pluto_memory_resource), intent (in ) :: resource
@@ -1544,7 +1533,6 @@ subroutine pluto_allocate_label_real64_r3_bounds_name(label, array, lbounds, ubo
15441533 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
15451534end subroutine
15461535
1547-
15481536subroutine pluto_deallocate_real64_r3_type (array , resource )
15491537 real (c_double), pointer , intent (inout ) :: array(:,:,:)
15501538 type (pluto_memory_resource), intent (in ) :: resource
@@ -1634,7 +1622,6 @@ subroutine pluto_allocate_label_int32_r4_bounds_name(label, array, lbounds, ubou
16341622 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
16351623end subroutine
16361624
1637-
16381625subroutine pluto_deallocate_int32_r4_type (array , resource )
16391626 integer (c_int32_t), pointer , intent (inout ) :: array(:,:,:,:)
16401627 type (pluto_memory_resource), intent (in ) :: resource
@@ -1724,7 +1711,6 @@ subroutine pluto_allocate_label_int64_r4_bounds_name(label, array, lbounds, ubou
17241711 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
17251712end subroutine
17261713
1727-
17281714subroutine pluto_deallocate_int64_r4_type (array , resource )
17291715 integer (c_int64_t), pointer , intent (inout ) :: array(:,:,:,:)
17301716 type (pluto_memory_resource), intent (in ) :: resource
@@ -1814,7 +1800,6 @@ subroutine pluto_allocate_label_real32_r4_bounds_name(label, array, lbounds, ubo
18141800 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
18151801end subroutine
18161802
1817-
18181803subroutine pluto_deallocate_real32_r4_type (array , resource )
18191804 real (c_float), pointer , intent (inout ) :: array(:,:,:,:)
18201805 type (pluto_memory_resource), intent (in ) :: resource
@@ -1904,7 +1889,6 @@ subroutine pluto_allocate_label_real64_r4_bounds_name(label, array, lbounds, ubo
19041889 call pluto_allocate(label, array, lbounds, ubounds, pluto_get_registered_resource(resource))
19051890end subroutine
19061891
1907-
19081892subroutine pluto_deallocate_real64_r4_type (array , resource )
19091893 real (c_double), pointer , intent (inout ) :: array(:,:,:,:)
19101894 type (pluto_memory_resource), intent (in ) :: resource
0 commit comments