<div dir="ltr"><div><div>Updated PR for fixing these warnings. <a href="https://bitbucket.org/petsc/petsc/pull-requests/1033/add-more-apis-to-mathypre/diff">https://bitbucket.org/petsc/petsc/pull-requests/1033/add-more-apis-to-mathypre/diff</a><br><br><br></div>Satish, could you help me add changes to next for testing?<br><br><br></div>Fande,<br><div><div><br><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 16, 2018 at 10:54 AM, Fande Kong <span dir="ltr"><<a href="mailto:fdkong.jd@gmail.com" target="_blank">fdkong.jd@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Mon, Jul 16, 2018 at 10:53 AM, Fande Kong <span dir="ltr"><<a href="mailto:fdkong.jd@gmail.com" target="_blank">fdkong.jd@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote"><span class="m_-2635083026914672110gmail-">On Mon, Jul 16, 2018 at 10:45 AM, Satish Balay <span dir="ltr"><<a href="mailto:balay@mcs.anl.gov" target="_blank">balay@mcs.anl.gov</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><br>
<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_filtered-2Dmake-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=Tex32jmZol07NSKHedEY1vMAOU3X5Wwo3h0QksHN9iA&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/filtered-make_next_arch-li<wbr>nux-pkgs-64idx_thrash.log</a><br>
<br>
>>>><br>
/sandbox/petsc/petsc.next-3/sr<wbr>c/mat/impls/hypre/mhypre.c:108<wbr>9:9: warning: passing argument 3 of â€˜HYPRE_IJMatrixAddToValuesâ€<wbr>™ from incompatible pointer type [enabled by default]<br>
/sandbox/petsc/petsc.next-3/sr<wbr>c/mat/impls/hypre/mhypre.c:108<wbr>9:9: warning: passing argument 5 of â€˜HYPRE_IJMatrixAddToValuesâ€<wbr>™ from incompatible pointer type [enabled by default]<br>
<<<<<<br>
<br>
>>>>>><br>
<br>
-  PetscScalar        sscr[MATHYPRE_SCRATCH];<br>
-  HYPRE_Int          cscr[2][MATHYPRE_SCRATCH];<br>
-  HYPRE_Int          i,nzc;<br>
+  PetscScalar        *sscr;<br>
+  PetscInt           *cscr[2];<br>
+  PetscInt           i,nzc;<br>
+  void               *array;<br>
<br>
PetscStackCallStandard(HYPRE_I<wbr>JMatrixAddToValues,(hA->ij,1,&<wbr>nzc,(HYPRE_Int*)(rows+i),cscr[<wbr>0],sscr));                   <br>
<<<<<<<<<br>
<br>
So 'nzc' and 'cscr' types got changed from HYPRE_Int to PetscInt - causing this problem.<br>
<br></blockquote><div><br></div></span><div>I fixed it in my branch, and I will push up soon.</div><span class="m_-2635083026914672110gmail-"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<br>
And this code is wierd..<br>
<br>
>>>>>>>><br>
+static PetscErrorCode MatRestoreArray_HYPRE(Mat A, PetscInt size, void **array)<br>
+{<br>
+  Mat_HYPRE          *hA = (Mat_HYPRE*)A->data;<br>
+<br>
+  PetscFunctionBegin;<br>
+  *array = NULL;<br>
+  size = 0;<br>
+  hA->available = PETSC_TRUE;<br>
+  PetscFunctionReturn(0);<br>
+}<br>
+<br>
<<<<<<br>
<br>
Why does this routine need 'size' argument?<br>
<br>
+  size = 0;<br>
<br>
This is just a local variable - setting it to 0 does not do anything..<br>
<br></blockquote><div> </div></span><div>In order to have make MatRestoreArray_HYPRE and MatRestoreArray_HYPRE looks same. If did not do anything to size and array, and then we may have some warnings: unused parameters.</div></div></div></div></blockquote><div><br></div></div></div><div>MatRestoreArray_HYPRE and MatGetArray_HYPRE<br></div><div><div class="h5"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br></div><div>Should we do something like this?</div><div><br></div><div>+static PetscErrorCode MatRestoreArray_HYPRE(Mat A, PetscInt /*size*/, void **/*array*/)<span class="m_-2635083026914672110gmail-"><br>+{<br>+  Mat_HYPRE          *hA = (Mat_HYPRE*)A->data;<br>+<br>+  PetscFunctionBegin;<br></span>+  hA->available = PETSC_TRUE;<br>+  PetscFunctionReturn(0);<br>+}<br></div><div><br></div><div><br></div><div>Not sure C89 like this or not. If you have any idea, please let me know</div><span class="m_-2635083026914672110gmail-HOEnZb"><font color="#888888"><div><br></div><div><br></div><div>Fande,</div></font></span><div><div class="m_-2635083026914672110gmail-h5"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<br>
<br>
<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_filtered-2Dmake-5Fnext-5Farch-2Dfreebsd-2Dcxx-2Dpkgs-2Dopt-5Fwii.log_usr_home_balay_petsc.next-2D2_src_mat_impls_hypre_mhypre.c-3A1075-3A20&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=MdGPEX6870uF0YUQJdQLQ89XEaJJMULBnSTH_3qHW4s&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/filtered-make_next_arch-fr<wbr>eebsd-cxx-pkgs-opt_wii.log<br>
/usr/home/balay/petsc.next-2/s<wbr>rc/mat/impls/hypre/mhypre.c:10<wbr>75:20</a>: warning: 'array' may be used uninitialized in this function [-Wmaybe-uninitialized]<br>
<br>
<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_filtered-2Dmake-5Fnext-5Farch-2Dlinux-2Dopt-2Dmisc-5Fel6.log_home_sandbox_petsc_petsc.next_src_mat_impls_hypre_mhypre.c-3A1103-3A53&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=XiGTAXejawPngic6-Hokaz5MestYv5_4LDPTBoQzIfU&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/filtered-make_next_arch-li<wbr>nux-opt-misc_el6.log<br>
/home/sandbox/petsc/petsc.next<wbr>/src/mat/impls/hypre/mhypre.c:<wbr>1103:53</a>: warning: â€˜array’ may be used uninitialized in this function [-Wmaybe-uninitialized]<br>
<br>
This is a bit wierd. Different builds are giving warnings at different lines. And not all builds are warning about this.<br>
<a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_next.html&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=iKNI8CQTR2xSXVHJo2bm9e4FIGKEgEiN1GpVYH-P9v4&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/next.html</a><br>
<br>
So - it must be the compiler/os combination.. I'll have to take a closer look..<br>
<span class="m_-2635083026914672110gmail-m_2888582721662068676gmail-HOEnZb"><font color="#888888"><br>
Satish<br>
</font></span><div class="m_-2635083026914672110gmail-m_2888582721662068676gmail-HOEnZb"><div class="m_-2635083026914672110gmail-m_2888582721662068676gmail-h5">   <br>
<br>
<br>
On Mon, 16 Jul 2018, Matthew Knepley wrote:<br>
<br>
> On Mon, Jul 16, 2018 at 11:38 AM Fande Kong <<a href="mailto:fdkong.jd@gmail.com" target="_blank">fdkong.jd@gmail.com</a>> wrote:<br>
> <br>
> > Hi Satish and Barry,<br>
> ><br>
> > Any way to reproduce these warnings? I just tried the same configure<br>
> > script on my desktop, and I did NOT see any warning.<br>
> ><br>
> <br>
> You would need the same compiler/options. Is it not clear why they happen?<br>
> <br>
>    Matt<br>
> <br>
> <br>
> > Fande,<br>
> ><br>
> > On Mon, Jul 16, 2018 at 6:28 AM, PETSc checkBuilds <<br>
> > <a href="mailto:petsc-checkbuilds@mcs.anl.gov" target="_blank">petsc-checkbuilds@mcs.anl.gov</a>> wrote:<br>
> ><br>
> >><br>
> >><br>
> >> Dear PETSc developer,<br>
> >><br>
> >> This email contains listings of contributions attributed to you by<br>
> >> `git blame` that caused compiler errors or warnings in PETSc automated<br>
> >> testing.  Follow the links to see the full log files. Please attempt to<br>
> >> fix<br>
> >> the issues promptly or let us know at <a href="mailto:petsc-dev@mcs.anl.gov" target="_blank">petsc-dev@mcs.anl.gov</a> if you are<br>
> >> unable<br>
> >> to resolve the issues.<br>
> >><br>
> >> Thanks,<br>
> >>   The PETSc development team<br>
> >><br>
> >> ----<br>
> >><br>
> >> warnings attributed to commit<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=https-3A__bitbucket.org_petsc_petsc_commits_c69f721&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=5VWpjxoZ9rW530SXMhWQRSPECZA9NhwGhBVHbZBbKLU&e=" rel="noreferrer" target="_blank">https://bitbucket.org/petsc/pe<wbr>tsc/commits/c69f721</a><br>
> >> Added MatZeroEntries_HYPRE<br>
> >><br>
> >>   src/mat/impls/hypre/mhypre.c:<wbr>1103<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dopt-2Dmisc-5Fel6.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=ibtSl72l3tfTct4Jbe9cB8vS_GnqUDc9Nsr4fa6G1rs&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-opt-<wbr>misc_el6.log</a><br>
> >> ]<br>
> >><br>
> >> /home/sandbox/petsc/petsc.next<wbr>/src/mat/impls/hypre/mhypre.c:<wbr>1103:53:<br>
> >> warning: 'array' may be used uninitialized in this function<br>
> >> [-Wmaybe-uninitialized]<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2Dopt-5Fcrank.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=bdrZnwkskWfHXujHM7fKpqskyl-wzH8VC5ir3gp4GPs&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-opt_crank.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next/src<wbr>/mat/impls/hypre/mhypre.c:1103<wbr>:53:<br>
> >> warning: 'array' may be used uninitialized in this function<br>
> >> [-Wmaybe-uninitialized]<br>
> >><br>
> >>   src/mat/impls/hypre/mhypre.c:<wbr>1105<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:11<wbr>05:9:<br>
> >> warning: passing argument 3 of 'HYPRE_IJMatrixSetValues' from incompatible<br>
> >> pointer type [enabled by default]<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:11<wbr>05:9:<br>
> >> warning: passing argument 5 of 'HYPRE_IJMatrixSetValues' from incompatible<br>
> >> pointer type [enabled by default]<br>
> >><br>
> >>   src/mat/impls/hypre/mhypre.c:<wbr>1524<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:15<wbr>24:5:<br>
> >> warning: assignment from incompatible pointer type [enabled by default]<br>
> >><br>
> >>   src/mat/impls/hypre/mhypre.c:<wbr>1525<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:15<wbr>25:5:<br>
> >> warning: assignment from incompatible pointer type [enabled by default]<br>
> >><br>
> >>   src/mat/impls/hypre/mhypre.c:<wbr>1582<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:15<wbr>82:3:<br>
> >> warning: passing argument 4 of 'HYPRE_ParCSRMatrixGetRow' from incompatible<br>
> >> pointer type [enabled by default]<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:15<wbr>82:3:<br>
> >> warning: passing argument 3 of 'HYPRE_ParCSRMatrixGetRow' from incompatible<br>
> >> pointer type [enabled by default]<br>
> >><br>
> >>   src/mat/impls/hypre/mhypre.c:<wbr>1595<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:15<wbr>95:3:<br>
> >> warning: passing argument 4 of 'HYPRE_ParCSRMatrixRestoreRow' from<br>
> >> incompatible pointer type [enabled by default]<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:15<wbr>95:3:<br>
> >> warning: passing argument 3 of 'HYPRE_ParCSRMatrixRestoreRow' from<br>
> >> incompatible pointer type [enabled by default]<br>
> >><br>
> >>   src/mat/impls/hypre/mhypre.c:<wbr>1613<br>
> >>     [<br>
> >> <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__ftp.mcs.anl.gov_pub_petsc_nightlylogs_archive_2018_07_16_build-5Fnext-5Farch-2Dlinux-2Dpkgs-2D64idx-5Fthrash.log&d=DwMFaQ&c=54IZrppPQZKX9mLzcGdPfFD1hxrcB__aEkJFOKJFd00&r=DUUt3SRGI0_JgtNaS3udV68GRkgV4ts7XKfj2opmiCY&m=paFK1OY_ndSgoQtSLol9nduqo9lfc1WinXao3N9040w&s=DiGS92uuT24XBHyNgxEDYzIsqrQX5kEChM4esdEi914&e=" rel="noreferrer" target="_blank">http://ftp.mcs.anl.gov/pub/pet<wbr>sc/nightlylogs/archive/2018/07<wbr>/16/build_next_arch-linux-pkgs<wbr>-64idx_thrash.log</a><br>
> >> ]<br>
> >>       /sandbox/petsc/petsc.next-3/s<wbr>rc/mat/impls/hypre/mhypre.c:16<wbr>13:5:<br>
> >> warning: passing argument 3 of 'HYPRE_IJMatrixGetValues' from incompatible<br>
> >> pointer type [enabled by default]<br>
> >><br>
> >> ----<br>
> >> To opt-out from receiving these messages - send a request to<br>
> >> <a href="mailto:petsc-dev@mcs.anl.gov" target="_blank">petsc-dev@mcs.anl.gov</a>.<br>
> >><br>
> ><br>
> ><br>
> <br>
> </div></div></blockquote></div></div></div><br></div></div>
</blockquote></div></div></div><br></div></div>
</blockquote></div><br></div>