[PD-dev] rpole~ / cpole~ infs and nans

Christof Ressi info at christofressi.com
Tue Jan 17 20:39:18 CET 2023


Good spot!

The problem is the following line in "m_pd.h":

#if defined(__i386__) || defined(__x86_64__) || defined(__arm__)

It does not consider 64-bit ARM version. This should do the trick:

#if defined(__i386__) || defined(__x86_64__) || defined(__arm__) || defined(__aarch64__)

Christof

On 17.01.2023 19:24, Matt Barber wrote:
> Hello,
>
> Should I be getting infs and nans in rpole~ and cpole~ (0.53-1, Mac 
> M1)? Does this mean PD_BIGORSMALL() is not working correctly?
>
> image.png
>
> _______________________________________________
> Pd-dev mailing list
> Pd-dev at lists.iem.at
> https://lists.puredata.info/listinfo/pd-dev
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.puredata.info/pipermail/pd-dev/attachments/20230117/0acfb411/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: image.png
Type: image/png
Size: 364909 bytes
Desc: not available
URL: <http://lists.puredata.info/pipermail/pd-dev/attachments/20230117/0acfb411/attachment-0001.png>


More information about the Pd-dev mailing list