-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add tag to store array creation traceback #284
Conversation
This is ready for a first look @inducer @kaushikcfd |
|
pytato/array.py
Outdated
import traceback | ||
v = "".join(traceback.format_stack()) | ||
from pytato.tags import CreatedAt | ||
c = CreatedAt(v) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- I think putting it in
Array.__init__
would lead to several of these after a sequence of.map_and_copy
's. - Having many of these would also affect our DAG visualization.
- We could probably only attach the first call-frame from outside pytato, but to know these we might have to start attaching them only in the user-exposed function.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good points.
I think an important tweak is to only add one if one isn't already there (in tags
). We're not interested in call stacks of where these get rewritten by mappers (I think).
We could probably only attach the first call-frame from outside pytato
We could, though I'd expect that that might be a bunch of engineering that, ultimately, might not be buying us much.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think an important tweak is to only add one if one isn't already there (in tags).
I would be cautious in spending time in the constructor.
We could, though I'd expect that that might be a bunch of engineering that, ultimately, might not be buying us much.
I think at least dropping the frames within pytato would be helpful. Otherwise, they would all be polluted with pytato.array.Array.__add__
, pytato.cmath.sin
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would be cautious in spending time in the constructor.
Argh, that's a very fair point. We shouldn't. The alternative is to splat this into a zillion other places, but I agree that's preferable.
I think at least dropping the frames within pytato would be helpful. Otherwise, they would all be polluted with
pytato.array.Array.__add__
,pytato.cmath.sin
.
Fair, but we can also do that when rendering, which I think will be way less frequent than construction.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The alternative is to splat this into a zillion other places
Fair, but we can also do that when rendering, which I think will be way less frequent than construction.
Agreed, I'm completely fine with this.
6060e70
to
4c32cb6
Compare
pytato/array.py
Outdated
import traceback | ||
v = "".join(traceback.format_stack()) | ||
from pytato.tags import CreatedAt | ||
c = CreatedAt(v) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good points.
I think an important tweak is to only add one if one isn't already there (in tags
). We're not interested in call stacks of where these get rewritten by mappers (I think).
We could probably only attach the first call-frame from outside pytato
We could, though I'd expect that that might be a bunch of engineering that, ultimately, might not be buying us much.
2037423
to
6d18144
Compare
Co-authored-by: Andreas Klöckner <[email protected]>
9eb413b
to
d17db17
Compare
43d2478
to
d8df5f8
Compare
Co-authored-by: Andreas Klöckner <[email protected]>
64a08c1
to
b63eac5
Compare
b1a1b72
to
27e2b48
Compare
ba3e1bb
to
0a213da
Compare
LGTM, thanks! |
Please squash
TODOs as of 11/14/2023:
Simple performance test as of 11/14/2023:
CreatedAt
CreatedAt
smoke_test_ks_3d
performance as of 11/15/2023:MPIFusionContractorArrayContext
,LOOPY_NO_CACHE=1
CreatedAt
CreatedAt
Needs: