<div class="gmail_quote">On Sun, Jan 15, 2012 at 16:06, Xavier Garnaud <span dir="ltr">&lt;<a href="mailto:xavier.garnaud@ladhyx.polytechnique.fr">xavier.garnaud@ladhyx.polytechnique.fr</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Here is the error message I got.<br>
<br>
Building C object CMakeFiles/petsc.dir/src/sys/draw/interface/dsflush.c.o<br>
/home/garnaud/local/petsc/petsc-3.2-p5/src/sys/draw/interface/dsetpause.c:<br>
In function  PetscDrawSetPause:<br>
/home/garnaud/local/petsc/petsc-3.2-p5/src/sys/draw/interface/dsetpause.c:33:3:<br>
error: MPIU___FLOAT128 undeclared (first use in this function)<br>
/home/garnaud/local/petsc/petsc-3.2-p5/src/sys/draw/interface/dsetpause.c:33:3:<br>
note: each undeclared identifier is reported only once for each function it<br>
appears in<br></blockquote><div><br></div><div>You will need something like the following, and also some code at about src/sys/objects/pinit.c:750 to create MPIU_C___FLOAT128_COMPLEX. Let us know if you work it out, otherwise I&#39;ll take a look at it later.</div>
<div><br></div><div><div><font face="&#39;courier new&#39;, monospace">--- a/include/petscmath.h</font></div><div><font face="&#39;courier new&#39;, monospace">+++ b/include/petscmath.h</font></div><div><font face="&#39;courier new&#39;, monospace">@@ -112,6 +112,9 @@</font></div>
<div><font face="&#39;courier new&#39;, monospace"> #define MPIU_SCALAR MPIU_C_COMPLEX</font></div><div><font face="&#39;courier new&#39;, monospace"> #elif defined(PETSC_USE_REAL_DOUBLE)</font></div><div><font face="&#39;courier new&#39;, monospace"> #define MPIU_SCALAR MPIU_C_DOUBLE_COMPLEX</font></div>
<div><font face="&#39;courier new&#39;, monospace">+#elif defined(PETSC_USE_REAL___FLOAT128)</font></div><div><font face="&#39;courier new&#39;, monospace">+#define MPIU_SCALAR MPIU_C___FLOAT128_COMPLEX</font></div><div><font face="&#39;courier new&#39;, monospace">+extern MPI_Datatype MPIU_C___FLOAT128_COMPLEX</font></div>
<div><font face="&#39;courier new&#39;, monospace"> #endif /* PETSC_USE_REAL_* */</font></div><div><font face="&#39;courier new&#39;, monospace"> </font></div><div><font face="&#39;courier new&#39;, monospace"> /*</font></div>
</div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Thank you<br>
<div><div></div><div class="h5"><br>
On Sun, Jan 15, 2012 at 5:43 PM, Jed Brown &lt;<a href="mailto:jedbrown@mcs.anl.gov">jedbrown@mcs.anl.gov</a>&gt; wrote:<br>
<br>
&gt; On Sun, Jan 15, 2012 at 05:54, Xavier Garnaud &lt;<br>
&gt; <a href="mailto:xavier.garnaud@ladhyx.polytechnique.fr">xavier.garnaud@ladhyx.polytechnique.fr</a>&gt; wrote:<br>
&gt;<br>
&gt;&gt; Thank you for your help.<br>
&gt;&gt;<br>
&gt;&gt; quadmath.h contains quad complex functions. I naively added the functions<br>
&gt;&gt; for quad complex. The beginning of the compilation works, but then it fails<br>
&gt;&gt; with an MPI related error. I will contact you again when i manage to make<br>
&gt;&gt; it work,<br>
&gt;&gt;<br>
&gt;<br>
&gt; What was the MPI error?<br>
&gt;<br>
&gt; It&#39;s likely that we are missing data types and MPI_Ops for quad complex.<br>
&gt;<br>
&gt;<br>
&gt;&gt;<br>
&gt;&gt; Sincerely,<br>
&gt;&gt;<br>
&gt;&gt; Xavier<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Jan 9, 2012 at 8:01 PM, Barry Smith &lt;<a href="mailto:bsmith@mcs.anl.gov">bsmith@mcs.anl.gov</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   We&#39;ve never tried to do this.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;    First you need to check if quadmath.h has quad complex stuff in it?<br>
&gt;&gt;&gt; If it does you need to add into petscmath.h the quad complex bindings for<br>
&gt;&gt;&gt; all the various math operations like PetscScalar and PetscSqrtScalar() etc<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;   Barry<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On Jan 9, 2012, at 12:05 PM, Xavier Garnaud wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; &gt; I am trying to build PETSc with complex number and quadruple<br>
&gt;&gt;&gt; precision, but<br>
&gt;&gt;&gt; &gt; I get an error at the compiling stage. I do not get this error when I<br>
&gt;&gt;&gt; do<br>
&gt;&gt;&gt; &gt; the same using real numbers. Are complex numbers incompatible with<br>
&gt;&gt;&gt; &gt; quadruple precision?<br>
&gt;&gt;&gt; &gt; Thank you very much,<br>
&gt;&gt;&gt; &gt; Sincerely,<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; Xavier<br>
&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; &lt;configure.log&gt;&lt;make.log&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
<br>
</div></div></blockquote></div><br>