インテル® Fortran コンパイラー 19.1 デベロッパー・ガイドおよびリファレンス

STOPPED_IMAGES

Transformational Intrinsic Function (Generic): Returns an array of index images that have initiated normal termination.

result = STOPPED_IMAGES ([kind])

kind

(Input; optional) Must be a scalar integer expression with a value that is a valid INTEGER kind type parameter.

Results

The result is a rank-one integer array with the same type kind parameters as kind if present; otherwise, default integer. The size of the array is equal to the number of images in the current (initial) team that have initiated normal termination.

The result array elements are the image index values of images on the current team that have initiated normal termination. The indices are arranged in increasing numeric order.

Note

STOPPED_IMAGES argument team has not yet been implemented. It will be added in a future release.

Example

If image 5 and 12 of the current team have initiated normal termination, the result of STOPPED_IMAGES ( ) is an array of default integer type with size 2 defined with the value [5, 12]. If no images in the current team are known to have failed, the result of STOPPED_IMAGES ( ) is a zero-sized array.

See Also