Changes between Version 12 and Version 13 of AnugaParallel


Ignore:
Timestamp:
Jan 10, 2012, 4:21:32 PM (13 years ago)
Author:
steve
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnugaParallel

    v12 v13  
    7272Fire up python and see if you can {{{import pypar}}}
    7373
     74You should obtain
     75
     76{{{
     77>>> import pypar
     78Pypar (version 2.1.4) initialised MPI OK with 1 processors
     79}}}
     80
     81
    7482Make sure the pypar examples work
    7583
    7684
    77 ==== Problem with Installation ====
     85==== Problem with pypar Installation ====
    7886
    7987We have been seeing the following error when trying to import {{{pypar}}}.
     
    9098}}}
    9199
     100For 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{{{
     103sudo ln /usr/lib/libmpi.so /usr/lib/libmpi.so.0
     104}}}
     105
     106Then {{{import pypar}}} should produce the following
     107
     108{{{
     109>>> import pypar
     110Pypar (version 2.1.4) initialised MPI OK with 1 processors
     111}}}
    92112
    93113