I am building a multiprocessor system with soft-core processor(Microblaze)
and operating system xilkernel(OS from xilinx). I want to scale down Open
mpi with the the functionality of mainly sending and recieving only. Also
I want the MPI library to have a low memory footprint(in kBs).
As my OS is
;
>
> struct xxx {
> int i;
> xxx *p;
> };
>
> void yyy(xxx *x) {
> x->i = 0;
> x->p = x;
> }
>
>
> Cheers,
>
> Gilles
>
>
> On 2/26/2016 4:34 PM, Monika Hemnani wrote:
>
> I'm trying to run Open mpi on Microblaze(soft c
I'm trying to run Open mpi on Microblaze(soft core processor), with
operating system xilkernel(OS from xilinx).
I'm getting errors in the file: opal_object.h .
This is the part of the code where I'm getting errors.
typedef struct opal_object_t opal_object_t; //line 1
typedef st