#include <vtkSubGroup.h>
Inheritance diagram for vtkSubGroup:
This class provides scalable broadcast, reduce, etc. using only a vtkMultiProcessController. It does not require MPI. Users are vtkPKdTree and vtkDistributedDataFilter.
Definition at line 52 of file vtkSubGroup.h.
Public Types | |
typedef vtkObject | Superclass |
enum | { MINOP = 1, MAXOP = 2, SUMOP = 3 } |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
virtual void | PrintSelf (ostream &os, vtkIndent indent) |
int | Initialize (int p0, int p1, int me, int tag, vtkCommunicator *c) |
int | Gather (int *data, int *to, int length, int root) |
int | Gather (char *data, char *to, int length, int root) |
int | Gather (float *data, float *to, int length, int root) |
int | Broadcast (float *data, int length, int root) |
int | Broadcast (double *data, int length, int root) |
int | Broadcast (int *data, int length, int root) |
int | Broadcast (char *data, int length, int root) |
int | ReduceSum (int *data, int *to, int length, int root) |
int | ReduceMax (float *data, float *to, int length, int root) |
int | ReduceMax (double *data, double *to, int length, int root) |
int | ReduceMax (int *data, int *to, int length, int root) |
int | ReduceMin (float *data, float *to, int length, int root) |
int | ReduceMin (double *data, double *to, int length, int root) |
int | ReduceMin (int *data, int *to, int length, int root) |
int | AllReduceUniqueList (int *list, int len, int **newList) |
int | MergeSortedUnique (int *list1, int len1, int *list2, int len2, int **newList) |
void | setGatherPattern (int root, int length) |
int | getLocalRank (int processID) |
int | Barrier () |
void | PrintSubGroup () const |
Static Public Member Functions | |
int | IsTypeOf (const char *type) |
vtkSubGroup * | SafeDownCast (vtkObject *o) |
vtkSubGroup * | New () |
int | MakeSortedUnique (int *list, int len, int **newList) |
Public Attributes | |
int | tag |
Protected Member Functions | |
vtkSubGroup () | |
~vtkSubGroup () |
|
Reimplemented from vtkObject. Definition at line 55 of file vtkSubGroup.h. |
|
Definition at line 61 of file vtkSubGroup.h. |
|
|
|
|
|
Reimplemented from vtkObject. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkObject. |
|
Reimplemented from vtkObject. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkObject. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
Initialize a communication subgroup for the processes with rank p0 through p1 of the given communicator. (So vtkSubGroup is limited to working with subgroups that are identified by a contiguous set of rank IDs.) The third argument is the callers rank, which must in the range from p0 through p1. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 98 of file vtkSubGroup.h. |