1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
/**********************************************************************
TRAN_Credit.c:
TRAN_Credit.c is a subroutine to show a credit.
Log of TRAN_Credit.c:
24/July/2008 Released by H.Kino and T.Ozaki
***********************************************************************/
#include <stdio.h>
#include <string.h>
#ifdef nompi
#include "mimic_mpi.h"
#else
#include <mpi.h>
#endif
#include "tran_prototypes.h"
void TRAN_Credit(MPI_Comm comm1)
{
int myid;
MPI_Comm_rank(comm1,&myid);
if (myid==Host_ID) {
printf("\n***********************************************************\n");
printf("***********************************************************\n");
printf(" Welcome to the NEGF extension\n");
printf(" The prototype fortran code: by Hisashi Kondo.\n");
printf(" The current version: by Hiori Kino and Taisuke Ozaki.\n");
printf("***********************************************************\n");
printf("***********************************************************\n\n\n\n");
}
}
|