This file is indexed.

/usr/include/mp3.h is in libarmci-mpi-dev 0.0~git20160222-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#ifndef _MP3_H_
#define _MP3_H_

#include <mpi.h>

#define MP_INIT(ARGC,ARGV)   MPI_Init(&(ARGC),&(ARGV))
#define MP_BARRIER()         MPI_Barrier(MPI_COMM_WORLD)
#define MP_FINALIZE()        MPI_Finalize()
#define MP_PROCS(X)          MPI_Comm_size(MPI_COMM_WORLD,X)
#define MP_MYID(X)           MPI_Comm_rank(MPI_COMM_WORLD,X)
#define MP_TIMER()           MPI_Wtime()

#define GA_INIT(ARGC,ARGV)    GA_Initialize()
#define ARMCI_INIT(ARGC,ARGV) ARMCI_Init()


#endif /* _MP3_H_ */