-1

My code can be found on my github: https://github.com/chrismunley/ParallelProgramming/tree/master

The error I get is: PGC-W-0095-Type cast required for this conversion (my_laplace.c: 112) PGC-W-0095-Type cast required for this conversion (my_laplace.c: 120) PGC/x86-64 Linux 17.5-0: compilation completed with warnings

Anyone know what I am doing wrong with the Irecv? I think it has to do with the parameters. Thanks a lot!

  • Do not just post a link to your whole code and an error message. Read [ask] and [mcve]. Demonstrate your attempts to solve the issue. – Zulan Jun 14 '17 at 07:41

1 Answers1

0

This is a compiler warning indicating that it's needed to implicitly cast a data type to another that is potentially unsafe. In this case, it appears that you're passing in a reference to a MPI_Status variable to MPI_Irecv, where MPI_Irecv is expecting a reference to a MPI_Request variable.

Mat Colgrove
  • 5,441
  • 1
  • 10
  • 11