[Numpy-discussion] Documentation team meeting - Monday 2 January at 12 PM (noon) UTC

2023-01-01 Thread Mukulika Pahari
Hi all! Our next Documentation Team meeting will happen on *Monday, January 2* at ***12PM UTC***. We now alternate the meeting times to be a bit more inclusive. This means that we'll have a meeting at 12pm UTC every 28 days, and a meeting at 4pm UTC every 28 days. All are welcome - you don't nee

[Numpy-discussion] Re: 1D ndarray to java double[]

2023-01-01 Thread Jerome Kieffer
On Sun, 01 Jan 2023 05:31:55 -0800 Bill Ross wrote: > Thanks! > > > Java is known to be big-endian ... your CPU is probably little-endian. > > $ lscpu | grep -i endian > Byte Order: Little Endian > > > Numpy has the tools to represent an array of double BE. > > Is there a lower-level

[Numpy-discussion] Re: 1D ndarray to java double[]

2023-01-01 Thread Bill Ross
Thanks! > Java is known to be big-endian ... your CPU is probably little-endian. $ lscpu | grep -i endian Byte Order: Little Endian > Numpy has the tools to represent an array of double BE. Is there a lower-level ndarray method that writes an array that could be used this way? Bill -- P

[Numpy-discussion] Re: 1D ndarray to java double[]

2023-01-01 Thread Jerome Kieffer
On Sat, 31 Dec 2022 23:45:54 -0800 Bill Ross wrote: > How best to write a 1D ndarray as a block of doubles, for reading in > java as double[] or a stream of double? > > Maybe the performance of simple looping over doubles in python.write() > and java.read() is fine, but maybe there are represen