MPI problems
I have recently installed dolfin 0.9.7 woth Dorsal. After solving some CGAL business (thanks Harish) I now bump into MPI issues. Anyone that recognize this?
>>> from dolfin import *
[Aron-Wahlbergs
[Aron-Wahlbergs
[Aron-Wahlbergs
-------
It looks like orte_init failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during orte_init; some of which are due to configuration or
environment problems. This failure appears to be an internal failure;
here's some additional information (which may only be relevant to an
Open MPI developer):
orte_ess_set_name failed
--> Returned value A system-required executable either could not be found or was not executable by this user (-127) instead of ORTE_SUCCESS
-------
-------
It looks like MPI_INIT failed for some reason; your parallel process is
likely to abort. There are many reasons that a parallel process can
fail during MPI_INIT; some of which are due to configuration or environment
problems. This failure appears to be an internal failure; here's some
additional information (which may only be relevant to an Open MPI
developer):
ompi_mpi_init: orte_init failed
--> Returned "A system-required executable either could not be found or was not executable by this user" (-127) instead of "Success" (0)
-------
*** An error occurred in MPI_Init
*** before MPI was initialized
*** MPI_ERRORS_
[Aron-Wahlbergs
Question information
- Language:
- English Edit question
- Status:
- Solved
- For:
- DOLFIN Edit question
- Assignee:
- No assignee Edit question
- Solved by:
- Harish Narayanan
- Solved:
- 2010-02-23
- Last query:
- 2010-02-23
- Last reply:
- 2010-02-23
This question was reopened
- 2010-02-23 by Aron Wahlberg
Harish Narayanan (hnarayanan) said : | #1 |
Is there some reason you are using openmpi from macports rather than just using what comes along with Mac OS X?
(I think it must have something to do with needing mpif77/mpif90, but I want to make sure.)
Aron Wahlberg (aron-simula) said : | #2 |
I'm not completely sure actually. I can't remember when I installed it or for what reason, really. I checked with macports if it has any dependents but it doesn't. Do you suggest that I uninstall or deactivate it? Will that re-activate my pre-installed mac version of openMPI?
Aron
|
#3 |
Yes. Deactivate it, rebuild only DOLFIN (using your mac's default compilers) and hope for the best.
Aron Wahlberg (aron-simula) said : | #4 |
Thanks Harish Narayanan, that solved my question.
Aron Wahlberg (aron-simula) said : | #5 |
However, Now I get
>>> from dolfin import *
No module named vtk
*** Warning: Unable to import Viper, plotting disabled.
>>>
But I do have vtk-devel installed via macports and the lines in platforms/
Johannes Ring (johannr) said : | #6 |
Are you sure you are using Python from MacPorts? Try to run 'which python'. It should give you '/opt/local/
sudo port install python_select
sudo python_select python26
Aron Wahlberg (aron-simula) said : | #7 |
Yes, I am using MacPorts python.
Aron-Wahlbergs-
/opt/local/
Aron-Wahlbergs-
Johannes Ring (johannr) said : | #8 |
Maybe a re-installation of vtk-devel will help:
sudo port uninstall vtk-devel
sudo port install vtk-devel +py26
Harish Narayanan (hnarayanan) said : | #9 |
You really should create separate questions. Changing the status of a solved question to unsolved and inserting another question in its place messes with the karma system.
Aron Wahlberg (aron-simula) said : | #10 |
Thanks Harish Narayanan, that solved my question.