@@ -197,13 +197,13 @@ function qv_scope_group_rank_c(scope, taskid) &
197
197
end function qv_scope_group_rank_c
198
198
199
199
integer (c_int) &
200
- function qv_scope_ntasks_c (scope , ntasks ) &
201
- bind(c, name= ' qv_scope_ntasks ' )
200
+ function qv_scope_group_size_c (scope , ntasks ) &
201
+ bind(c, name= ' qv_scope_group_size ' )
202
202
use, intrinsic :: iso_c_binding, only: c_ptr, c_int
203
203
implicit none
204
204
type(c_ptr), value :: scope
205
205
integer (c_int), intent (out ) :: ntasks
206
- end function qv_scope_ntasks_c
206
+ end function qv_scope_group_size_c
207
207
208
208
integer (c_int) &
209
209
function qv_scope_barrier_c (scope ) &
@@ -350,14 +350,14 @@ subroutine qv_scope_group_rank(scope, taskid, info)
350
350
info = qv_scope_group_rank_c(scope, taskid)
351
351
end subroutine qv_scope_group_rank
352
352
353
- subroutine qv_scope_ntasks (scope , ntasks , info )
353
+ subroutine qv_scope_group_size (scope , ntasks , info )
354
354
use, intrinsic :: iso_c_binding, only: c_ptr, c_int
355
355
implicit none
356
356
type(c_ptr), value :: scope
357
357
integer (c_int), intent (out ) :: ntasks
358
358
integer (c_int), intent (out ) :: info
359
- info = qv_scope_ntasks_c (scope, ntasks)
360
- end subroutine qv_scope_ntasks
359
+ info = qv_scope_group_size_c (scope, ntasks)
360
+ end subroutine qv_scope_group_size
361
361
362
362
subroutine qv_scope_barrier (scope , info )
363
363
use, intrinsic :: iso_c_binding, only: c_ptr, c_int
0 commit comments