Subject: | Can't get Parallel::MPI::Simple working |
I'm trying to run a simple program that uses the Parallel::MPI::Simple
module from cpan.
#!/usr/bin/perl
use strict;
use Parallel::MPI::Simple;
use Sys::Hostname;
MPI_Init();
my $myrank = MPI_Comm_rank(MPI_COMM_WORLD);
my $host = hostname();
print "host: $host (mypid = $mypid)";
MPI_Finalize();
When I try to run the script, this is the error that I get...
Can't load
'/usr/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/auto/Parallel/MPI/Simple/Simple.so'
for module Parallel::MPI::Simple:
/usr/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/auto/Parallel/MPI/Simple/Simple.so:
undefined symbol: _kio at
/usr/lib/perl5/5.8.5/i386-linux-thread-multi/DynaLoader.pm line 230.
at ./hw.pl line 4
Compilation failed in require at ./hw.pl line 4.
BEGIN failed--compilation aborted at ./hw.pl line 4.
I'm not sure if I just don't have some dependancies installed or
something like that. The module seemed to have installed correctly, but
I can't get past this error.