ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
pm_parallelism::imageis_type Type Reference

This is the imageis_type type for generating objects with components of type logical of default kind LK that contain information about the current image/processor/thread.
More...

Public Attributes

logical(LK) first = .false._LK
 The scalar logical of default kind LK indicating whether the current process is ID #1. More...
 
logical(LK) extra = .false._LK
 The scalar logical of default kind LK indicating whether the current process is NOT ID #1. More...
 
logical(LK) leader = .false._LK
 The scalar logical of default kind LK indicating whether the current process is a leader.
The default value is .true. if and only if the corresponding image ID is 1.
Otherwise, it must be set by the user after calling the type constructor depending on the parallelism type.
More...
 
logical(LK) rooter = .false._LK
 The scalar logical of default kind LK indicating whether the current process is a follower.
The default value is .true. if and only if the corresponding image ID is not 1.
Otherwise, it must be set by the user after calling the type constructor depending on the parallelism type.
More...
 

Detailed Description

This is the imageis_type type for generating objects with components of type logical of default kind LK that contain information about the current image/processor/thread.

Objects of this type are not meant to be used directly by the end user.
This type merely exists to create the is component of the image_type class.


Possible calling interfaces

type(imageis_type) :: imageis
imageis = imageis_type()
This module contains procedures and generic interfaces for facilitating parallel computations or comp...
This is the imageis_type type for generating objects with components of type logical of default kind ...


Final Remarks


If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.

  1. If you use any parts or concepts from this library to any extent, please acknowledge the usage by citing the relevant publications of the ParaMonte library.
  2. If you regenerate any parts/ideas from this library in a programming environment other than those currently supported by this ParaMonte library (i.e., other than C, C++, Fortran, MATLAB, Python, R), please also ask the end users to cite this original ParaMonte library.

This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.

Author:
Amir Shahmoradi, Tuesday March 7, 2017, 3:50 AM, Institute for Computational Engineering and Sciences (ICES), The University of Texas at Austin

Definition at line 78 of file pm_parallelism.F90.

Member Data Documentation

◆ extra

logical(LK) pm_parallelism::imageis_type::extra = .false._LK

The scalar logical of default kind LK indicating whether the current process is NOT ID #1.

Definition at line 80 of file pm_parallelism.F90.

◆ first

logical(LK) pm_parallelism::imageis_type::first = .false._LK

The scalar logical of default kind LK indicating whether the current process is ID #1.

Definition at line 79 of file pm_parallelism.F90.

◆ leader

logical(LK) pm_parallelism::imageis_type::leader = .false._LK

The scalar logical of default kind LK indicating whether the current process is a leader.
The default value is .true. if and only if the corresponding image ID is 1.
Otherwise, it must be set by the user after calling the type constructor depending on the parallelism type.

Definition at line 81 of file pm_parallelism.F90.

◆ rooter

logical(LK) pm_parallelism::imageis_type::rooter = .false._LK

The scalar logical of default kind LK indicating whether the current process is a follower.
The default value is .true. if and only if the corresponding image ID is not 1.
Otherwise, it must be set by the user after calling the type constructor depending on the parallelism type.

Definition at line 84 of file pm_parallelism.F90.


The documentation for this type was generated from the following file: