[Numpy-discussion] Next NumPy Newcomers' Hour - 12 pm UTC

2024-08-07 Thread Ganesh Kathiresan
Our next Newcomers' Hour will be held this Thursday, August 8th at 12 PM UTC. Stop by to ask questions or just to say hi. To add to the meeting agenda the topics you’d like to discuss, follow the link: https://hackmd.io/3f3otyyuTte3FU9y3QzsLg?both Join the meeting via Zoom: https://us06web.zoom.u

[Numpy-discussion] Next NumPy Newcomers' Hour - July 11th, 2024 at 12 PM UTC

2024-07-10 Thread Ganesh Kathiresan
Our next Newcomers' Hour will be held this Thursday, 11th, 2024 at 12 PM UTC, Stop by to ask questions, share your progress, celebrate success, or just to say hi. To add to the meeting agenda the topics you’d like to discuss, follow the link: https://hackmd.io/3f3otyyuTte3FU9y3QzsLg?both. Join t

[Numpy-discussion] Next NumPy Newcomers' Hour - June 13th, 2023 at 12 PM UTC

2024-06-10 Thread Ganesh Kathiresan
Our next Newcomers' Hour will be held this Thursday, 13th, 2023 at 12 PM UTC, Stop by to ask questions, share your progress, celebrate success, or just to say hi. To add to the meeting agenda the topics you’d like to discuss, follow the link: https://hackmd.io/3f3otyyuTte3FU9y3QzsLg?both. Join t

[Numpy-discussion] Next NumPy Newcomers' Hour - April 18th, 2024 at 12pm UTC

2024-04-16 Thread Ganesh Kathiresan
Our next Newcomers' Hour will be held on Thursday, April 18th at 12pm UTC. Stop by to ask questions, share your progress, celebrate success, or just to say hi. To add to the meeting agenda the topics you’d like to discuss, follow the link: https://hackmd.io/3f3otyyuTte3FU9y3QzsLg?both. Join the m

[Numpy-discussion] Re: Making show_runtime and show_config enable file output

2024-04-10 Thread Ganesh Kathiresan
Thanks for the input, I have raised a PR: https://github.com/numpy/numpy/pull/26255. I'll address the UT issues soon. Let me know if this is what was required. Thanks, Ganesh ___ NumPy-Discussion mailing list -- numpy-discussion@python.org To unsubscri

[Numpy-discussion] next NumPy Newcomers' Hour - December 28th, 2023 at 12 PM UTC

2023-12-28 Thread Ganesh Kathiresan
Apologies for the late notice! Our next Newcomers' Hour will be held this Thursday, 28th, 2023 at 12 PM UTC, Stop by to ask questions, share your progress, celebrate success, or just to say hi. To add to the meeting agenda the topics you’d like to discuss, follow the link: https://hackmd.io/3f3o

[Numpy-discussion] Re: next NumPy Newcomers' Hour - 12pm UTC

2023-10-31 Thread Ganesh Kathiresan
Our next Newcomers' Hour will be held this Thursday, Nov 2nd, at 12pm UTC. Stop by to ask questions or just to say hi. To add to the meeting agenda the topics you’d like to discuss, follow the link: https://hackmd.io/3f3otyyuTte3FU9y3QzsLg?both Join the meeting via Zoom: https://us06web.zoom.us/j/8

[Numpy-discussion] Re: Adding bit_count ufunc

2022-12-04 Thread Ganesh Kathiresan
> > as long as the correspondence is mentioned in the docstring this should > be discoverable enough Ah ok, that's a good point. I will make the change. Thanks! ~Ganesh On Mon, Dec 5, 2022 at 3:21 AM Ralf Gommers wrote: > > > On Sun, Dec 4, 2022 at 6:30 PM Gan

[Numpy-discussion] Re: Adding bit_count ufunc

2022-12-04 Thread Ganesh Kathiresan
Hi all, Thanks for the suggestions! I have gotten the PR to a working state with UT on top of the latest main (PR ). So it looks to me like this new ufunc should be called `bitwise_count` > rather than `bit_count`. This does sound like a good idea, but

[Numpy-discussion] Display runtime information through a new function: `show_runtime`

2022-08-06 Thread Ganesh Kathiresan
Hi Team, We are planning on adding a new function called `np.show_runtime` to display the runtime information of the machine in addition to `np.show_config` which displays the build-related information. Relevant PR: ENH: Use threadpoolctl in show_runtime (a new function) #21468

Re: [Numpy-discussion] Proposal for adding bit_count

2021-08-04 Thread Ganesh Kathiresan
> > Should `np.ndarray.bit_count()` exist? I tend against this; Thanks for the info Sebastian, I agree with this as we can stick to what Python offers. Should `np.bit_count` exist? Having it on the int* types may be sufficient. Hey Stephan, regarding this, I felt we could support it in the s

[Numpy-discussion] Proposal for adding bit_count

2021-07-29 Thread Ganesh Kathiresan
Hi All, I am working on a new UFunc, ` bit_count ` (popcount in other languages) that aims to count the number of 1-bits in the absolute value of an Integer. Implementation ---

[Numpy-discussion] ENH: Changed repr of np.bool_ #17592 (requesting confirmation)

2020-10-23 Thread Ganesh Kathiresan
Hi All, I have raised a PR to change the np.bool_ string representation to avoid confusion with python's True and False as mentioned in this issue . This change makes string representation of np.bool_ into num