Skip to content

Commit a7ca559

Browse files
committed
Update prif_m name to prif
1 parent 7bf9381 commit a7ca559

13 files changed

+14
-14
lines changed

example/hello.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program hello_world
2-
use prif_m, only : prif_caffeinate, this_image => prif_this_image, num_images => prif_num_images, prif_stop
2+
use prif, only : prif_caffeinate, this_image => prif_this_image, num_images => prif_num_images, prif_stop
33
implicit none
44

55
if (prif_caffeinate() /= 0) error stop "caffeinate returned a non-zero exit code"

example/support-test/error_stop_character_code.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program error_stop_character_code
2-
use prif_m, only : prif_caffeinate, prif_error_stop
2+
use prif, only : prif_caffeinate, prif_error_stop
33
implicit none
44

55
if (prif_caffeinate() /= 0) error stop "caffeinate returned a non-zero exit_code"

example/support-test/error_stop_integer_code.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program error_stop_integer_code
2-
use prif_m, only : prif_caffeinate, prif_error_stop
2+
use prif, only : prif_caffeinate, prif_error_stop
33
implicit none
44

55
if (prif_caffeinate() /= 0) error stop "caffeinate returned a non-zero exit_code"

example/support-test/stop_with_integer_code.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program stop_with_no_code
2-
use prif_m, only : prif_caffeinate, prif_stop
2+
use prif, only : prif_caffeinate, prif_stop
33
implicit none
44

55
if (prif_caffeinate() /= 0) error stop "caffeinate returned a non-zero exit_code"

example/support-test/stop_with_no_code.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program stop_with_no_code
2-
use prif_m, only : prif_caffeinate, prif_stop
2+
use prif, only : prif_caffeinate, prif_stop
33
implicit none
44

55
if (prif_caffeinate() /= 0) error stop "caffeinate returned a non-zero exit_code"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
! Copyright (c), The Regents of the University of California
22
! Terms of use are as specified in LICENSE.txt
3-
module prif_m
3+
module prif
44
use program_termination_m, only : prif_stop, prif_error_stop
55
use image_enumeration_m, only : prif_this_image, prif_num_images
66
use collective_subroutines_m, only : prif_co_sum, prif_co_max, prif_co_min, prif_co_reduce, prif_co_broadcast
77
use caffeinate_decaffeinate_m, only : prif_caffeinate, prif_decaffeinate
88
use team_type_m, only: prif_form_team, prif_change_team, prif_end_team, prif_team_type
99
use synchronization_m, only : prif_sync_all
1010
implicit none
11-
end module prif_m
11+
end module prif

test/caf_co_broadcast_test.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module caf_co_broadcast_test
2-
use prif_m, only : prif_co_broadcast, prif_num_images, prif_this_image
2+
use prif, only : prif_co_broadcast, prif_num_images, prif_this_image
33
use veggies, only : result_t, test_item_t, describe, it, assert_equals, assert_that
44

55
implicit none

test/caf_co_max_test.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module caf_co_max_test
2-
use prif_m, only : prif_co_max, prif_num_images
2+
use prif, only : prif_co_max, prif_num_images
33
use veggies, only: result_t, test_item_t, assert_equals, describe, it, assert_that, assert_equals
44
use image_enumeration_m, only : prif_this_image, prif_num_images
55

test/caf_co_min_test.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module caf_co_min_test
2-
use prif_m, only : prif_co_min, prif_num_images
2+
use prif, only : prif_co_min, prif_num_images
33
use veggies, only: result_t, test_item_t, assert_equals, describe, it, assert_that, assert_equals, succeed
44
use image_enumeration_m, only : prif_this_image, prif_num_images
55

test/caf_co_reduce_test.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module caf_co_reduce_test
2-
use prif_m, only : prif_co_reduce, prif_num_images, prif_this_image
2+
use prif, only : prif_co_reduce, prif_num_images, prif_this_image
33
use veggies, only : result_t, test_item_t, assert_equals, describe, it, assert_that, assert_equals
44
use collective_subroutines_m, only : &
55
c_int32_t_operation, c_int64_t_operation, c_float_operation, c_double_operation, c_char_operation, c_bool_operation &

test/caf_co_sum_test.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module caf_co_sum_test
2-
use prif_m, only : prif_co_sum, prif_num_images, prif_this_image
2+
use prif, only : prif_co_sum, prif_num_images, prif_this_image
33
use veggies, only: result_t, test_item_t, assert_equals, describe, it, assert_that, assert_equals, succeed
44

55
implicit none

test/caf_num_images_test.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module caf_num_images_test
2-
use prif_m, only : prif_num_images
2+
use prif, only : prif_num_images
33
use veggies, only: result_t, test_item_t, assert_that, describe, it
44

55
implicit none

test/caf_this_image_test.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module caf_this_image_test
2-
use prif_m, only : prif_this_image, prif_num_images, prif_co_sum
2+
use prif, only : prif_this_image, prif_num_images, prif_co_sum
33
use veggies, only: result_t, test_item_t, assert_that, describe, it, succeed
44

55
implicit none

0 commit comments

Comments
 (0)