Changes between Version 12 and Version 13 of AnugaParallel
- Timestamp:
- Jan 10, 2012, 4:21:32 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AnugaParallel
v12 v13 72 72 Fire up python and see if you can {{{import pypar}}} 73 73 74 You should obtain 75 76 {{{ 77 >>> import pypar 78 Pypar (version 2.1.4) initialised MPI OK with 1 processors 79 }}} 80 81 74 82 Make sure the pypar examples work 75 83 76 84 77 ==== Problem with Installation ====85 ==== Problem with pypar Installation ==== 78 86 79 87 We have been seeing the following error when trying to import {{{pypar}}}. … … 90 98 }}} 91 99 100 For us this was caused by there not being a file {{{libmpi.so.0}}} in the {{{/usr/lib}}} directory. This is really a {{{pypar}}} bug, but as a work around we created a link from the file {{{/usr/lib/libmpi.so}}} to {{{/usr/lib/libmpi.so.0}}} via the command 101 102 {{{ 103 sudo ln /usr/lib/libmpi.so /usr/lib/libmpi.so.0 104 }}} 105 106 Then {{{import pypar}}} should produce the following 107 108 {{{ 109 >>> import pypar 110 Pypar (version 2.1.4) initialised MPI OK with 1 processors 111 }}} 92 112 93 113