ATOMIC_AND(3) - [ATOMIC:BIT MANIPULATION] Atomic bitwise AND operation
call atomic_and(atom, value [,stat])
subroutine atomic_and(atom,value,stat)integer(atomic_int_kind) :: atom[*] integer(atomic_int_kind),intent(in) :: value integer,intent(out),intent(out) :: stat
o ATOM is a scalar coarray or coindexed variable of integer type with atomic_int_kind kind. o VALUE is a scalar of the same type as ATOM. If the kind is different, the value is converted to the kind of ATOM. o STAT is a Scalar default-kind integer variable.
ATOMIC_AND(3) atomically defines ATOM with the bitwise AND between the values of ATOM and VALUE. When STAT is present and the invocation was successful, it is assigned the value 0. If it is present and the invocation has failed, it is assigned a positive value; in particular, for a coindexed ATOM, if the remote image has stopped, it is assigned the value of iso_fortran_envs stat_stopped_image and if the remote image has failed, the value stat_failed_image.
o ATOM : Scalar coarray or coindexed variable of integer type with atomic_int_kind kind. o VALUE : Scalar of the same type as ATOM. If the kind is different, the value is converted to the kind of ATOM. o STAT : (optional) Scalar default-kind integer variable.
Sample program:
program demo_atomic_and use iso_fortran_env implicit none integer(atomic_int_kind) :: atom[*] call atomic_and(atom[1], int(b10100011101)) end program demo_atomic_and
TS 18508
ATOMIC_FETCH_AND(3), ATOMIC_DEFINE(3), ATOMIC_REF(3), ATOMIC_CAS(3), ISO_FORTRAN_ENV(3), ATOMIC_ADD(3), ATOMIC_OR(3), ATOMIC_XOR(3)
Fortran intrinsic descriptions
Nemo Release 3.1 | atomic_and (3fortran) | November 02, 2024 |