Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove MaxAndArgmax Op #334

Closed
ricardoV94 opened this issue Jun 11, 2023 · 0 comments · Fixed by #731
Closed

Remove MaxAndArgmax Op #334

ricardoV94 opened this issue Jun 11, 2023 · 0 comments · Fixed by #731

Comments

@ricardoV94
Copy link
Member

ricardoV94 commented Jun 11, 2023

Description

This Composite Op computes both Max and Argmax and is returned by default when you call at.max(...).

This makes the graphs unnecessarily more complex from the get-go (see pymc-devs/pymc#6769).

In this specific case there's no loss of functionality because the implementation actually computes the two separately. I imagine an early algorithm computed the two at the same time, but they seemed to have switched to using Numpy max and argmax sequentially (both in python and c impl). Nope, the original one was already like that. Maybe it was useful in other backends (GPU?). Anyway, that's just guessing, and I don't see an obvious reason to start with MaxAndArgmax. If a more efficient impl can be obtained it could be added during specialization, not by default.

There's a mirror issue in Aesara: aesara-devs/aesara#765
And a draft PR: aesara-devs/aesara#874

class MaxAndArgmax(COp):

class Argmax(COp):

class Max(NonZeroDimsCAReduce):

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant