Package: libmpich1.0gf
Version: 1.2.7-8
Severity: grave
Justification: renders package unusable



-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.25-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libmpich1.0gf depends on:
ii  libc6                         2.7-13     GNU C Library: Shared libraries
ii  libgcc1                       1:4.3.1-9  GCC support library
ii  libgfortran3                  4.3.1-9    Runtime library for GNU Fortran ap
ii  libstdc++6                    4.3.1-9    The GNU Standard C++ Library v3
ii  libx11-6                      2:1.1.4-2  X11 client-side library

libmpich1.0gf recommends no packages.

Versions of packages libmpich1.0gf suggests:
ii  mpich-bin                     1.2.7-8    MPI parallel computing system impl

-- no debconf information
#include <mpi.h>
#include <iostream>
int main(int argc,char *argv[]) 
{

  MPI_Init(&argc,&argv);
  int nproc,proc;
  MPI_Comm_size(MPI_COMM_WORLD,&nproc);
  MPI_Comm_rank(MPI_COMM_WORLD,&proc);

  long  k=40000;
  int *x;
  x=new int[k];
  MPI_Status status;
 //  if(proc==0)
//     MPI_Send(x,k, MPI_INT, 1, 0, MPI_COMM_WORLD);
//   else if(proc==1)
//     MPI_Recv(x,k, MPI_INT, 0, 0,  MPI_COMM_WORLD, &status);
  MPI_Bcast((void*) x,k,MPI_INT,0,MPI_COMM_WORLD);
  MPI_Finalize();
  std::cout<<"ok"<<std::endl;
}



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to