Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
efcf6759
Commit
efcf6759
authored
Feb 16, 2005
by
Ken Martin
Browse files
BUG: add MPI_LONG_LONG_INT support
parent
79cee6bb
Changes
1
Show whitespace changes
Inline
Side-by-side
Parallel/vtkMPICommunicator.cxx
View file @
efcf6759
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
#include "vtkMPI.h"
#include "vtkMPI.h"
vtkCxxRevisionMacro
(
vtkMPICommunicator
,
"1.3
5
"
);
vtkCxxRevisionMacro
(
vtkMPICommunicator
,
"1.3
6
"
);
vtkStandardNewMacro
(
vtkMPICommunicator
);
vtkStandardNewMacro
(
vtkMPICommunicator
);
vtkCxxSetObjectMacro
(
vtkMPICommunicator
,
Group
,
vtkMPIGroup
);
vtkCxxSetObjectMacro
(
vtkMPICommunicator
,
Group
,
vtkMPIGroup
);
...
@@ -56,6 +56,9 @@ MPI_Datatype vtkMPICommunicatorGetMPIType()
...
@@ -56,6 +56,9 @@ MPI_Datatype vtkMPICommunicatorGetMPIType()
return
MPI_LONG
;
return
MPI_LONG
;
#elif defined(MPI_LONG_LONG)
#elif defined(MPI_LONG_LONG)
return
MPI_LONG_LONG
;
return
MPI_LONG_LONG
;
#elif defined(MPI_LONG_LONG_INT)
// lampi only has MPI_LONG_LONG_INT, not MPI_LONG_LONG
return
MPI_LONG_LONG_INT
;
#else
#else
vtkGenericWarningMacro
(
"This systems MPI doesnt seem to support 64 bit ids and you have 64 bit IDs turned on. Please contact VTK mailing list."
);
vtkGenericWarningMacro
(
"This systems MPI doesnt seem to support 64 bit ids and you have 64 bit IDs turned on. Please contact VTK mailing list."
);
return
MPI_INT
;
return
MPI_INT
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment