Hi Katja, thank you for your reply! It is now (slightly) clearer. Every time you post something here I feel like some messages from a technical NASA mailing list are being accidentally sent to pd-list!<br><br>Cheers,<br><br>
Pierre.<br><br><div class="gmail_quote">2013/1/21 katja <span dir="ltr">&lt;<a href="mailto:katjavetter@gmail.com" target="_blank">katjavetter@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Pierre, the way how denormals can impact performance on the Pi, is<br>
whenever a an object with feedback delay (IIR filter, reverb etc.)<br>
stops receiving input signal, it&#39;s values decay into the subnormal<br>
range, which causes substantial increase of CPU load. Such situations<br>
can be avoided by adding a tiny DC value to the object input, like [+~<br>
1e-21] (note the minus sign in the number notation). When a normal<br>
audio signal is present, that number is too small to be added (because<br>
of limited precision), but when audio stops, it prevents subnormals.<br>
<br>
Another thing is, one should be careful not to accidentally send &#39;inf&#39;<br>
or &#39;nan&#39; into such objects, as they can not recover from it. This<br>
would be particularly annoying in a public performance, since you&#39;d<br>
need to reload the containing patch to recover.<br>
<br>
It is possible to prevent denormals via C code, as it is currently<br>
done for Pd on Intel processors, but this implements a lot of<br>
conditional checks and it means performance loss for many objects. For<br>
current Intel computers the extra load is not so much of a problem,<br>
but for poor Raspberry Pi one would rather like to save a few<br>
instructions, instead of adding more.<br>
<span class="HOEnZb"><font color="#888888"><br>
Katja<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
On Sun, Jan 20, 2013 at 5:27 PM, Pierre Massat &lt;<a href="mailto:pimassat@gmail.com">pimassat@gmail.com</a>&gt; wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; Could someone please explain how this impacts Pd&#39;s performance on the<br>
&gt; Raspberry Pi ?<br>
&gt; It doesn&#39;t make any sense to me right now, but i&#39;m very curious...<br>
&gt;<br>
&gt; Cheers,<br>
&gt;<br>
&gt; Pierre.<br>
&gt;<br>
&gt;<br>
&gt; 2013/1/20 Hans-Christoph Steiner &lt;<a href="mailto:hans@at.or.at">hans@at.or.at</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; I think this is what you want, from &#39;man gcc&#39;.  Its interesting to note<br>
&gt;&gt; that<br>
&gt;&gt; the NEON mode, which provides SIMD, also does not do denormals:<br>
&gt;&gt;<br>
&gt;&gt; -mfpu=name<br>
&gt;&gt; -mfpe=number<br>
&gt;&gt; -mfp=number<br>
&gt;&gt;     This specifies what floating point hardware (or hardware emulation) is<br>
&gt;&gt;     available on the target.  Permissible names are: fpa, fpe2, fpe3,<br>
&gt;&gt; maverick,<br>
&gt;&gt;     vfp, vfpv3, vfpv3-fp16, vfpv3-d16, vfpv3-d16-fp16, vfpv3xd,<br>
&gt;&gt; vfpv3xd-fp16,<br>
&gt;&gt;     neon, neon-fp16, vfpv4, vfpv4-d16, fpv4-sp-d16 and neon-vfpv4.  -mfp<br>
&gt;&gt; and<br>
&gt;&gt;     -mfpe are synonyms for -mfpu=fpenumber, for compatibility with older<br>
&gt;&gt;     versions of GCC.<br>
&gt;&gt;<br>
&gt;&gt;     If -msoft-float is specified this specifies the format of floating<br>
&gt;&gt; point<br>
&gt;&gt;     values.<br>
&gt;&gt;<br>
&gt;&gt;     If the selected floating-point hardware includes the NEON extension<br>
&gt;&gt; (e.g.<br>
&gt;&gt;     -mfpu=neon), note that floating-point operations will not be used by<br>
&gt;&gt; GCC&#39;s<br>
&gt;&gt;     auto-vectorization pass unless -funsafe-math-optimizations is also<br>
&gt;&gt;     specified.  This is because NEON hardware does not fully implement the<br>
&gt;&gt; IEEE<br>
&gt;&gt;     754 standard for floating-point arithmetic (in particular denormal<br>
&gt;&gt; values<br>
&gt;&gt;     are treated as zero), so the use of NEON instructions may lead to a<br>
&gt;&gt; loss of<br>
&gt;&gt;     precision.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; .hc<br>
&gt;&gt;<br>
&gt;&gt; On 01/20/2013 06:54 AM, katja wrote:<br>
&gt;&gt; &gt; I was assuming, or maybe just hoping? that Raspberry Pi (and ARM<br>
&gt;&gt; &gt; devices in general) would not suffer from Denormal&#39;s disease like<br>
&gt;&gt; &gt; Intel processors do. But guess what: Pi&#39;s float coprocessor is IEEE<br>
&gt;&gt; &gt; 754 compliant and does all denormals by default (can check with<br>
&gt;&gt; &gt; attached denorm-test.pd). Bummer! As if one would use an ARM device to<br>
&gt;&gt; &gt; calculate the size of a Majorana particle, rather than doing simple<br>
&gt;&gt; &gt; dsp. Do we really need to enable PD-BIGORSMALL() checks for this poor<br>
&gt;&gt; &gt; little processor? There seems to be something called &#39;RunFast mode&#39;<br>
&gt;&gt; &gt; for Pi&#39;s float processor vfpv2, but I see no way how to enable this<br>
&gt;&gt; &gt; via gcc. Option -ffast-math is allowed but doesn&#39;t do the trick. Can&#39;t<br>
&gt;&gt; &gt; find an option to set vfpv2 specifically, in gcc docs.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Katja<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; _______________________________________________<br>
&gt;&gt; &gt; <a href="mailto:Pd-list@iem.at">Pd-list@iem.at</a> mailing list<br>
&gt;&gt; &gt; UNSUBSCRIBE and account-management -&gt;<br>
&gt;&gt; &gt; <a href="http://lists.puredata.info/listinfo/pd-list" target="_blank">http://lists.puredata.info/listinfo/pd-list</a><br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; <a href="mailto:Pd-list@iem.at">Pd-list@iem.at</a> mailing list<br>
&gt;&gt; UNSUBSCRIBE and account-management -&gt;<br>
&gt;&gt; <a href="http://lists.puredata.info/listinfo/pd-list" target="_blank">http://lists.puredata.info/listinfo/pd-list</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; <a href="mailto:Pd-list@iem.at">Pd-list@iem.at</a> mailing list<br>
&gt; UNSUBSCRIBE and account-management -&gt;<br>
&gt; <a href="http://lists.puredata.info/listinfo/pd-list" target="_blank">http://lists.puredata.info/listinfo/pd-list</a><br>
&gt;<br>
</div></div></blockquote></div><br>