-
Notifications
You must be signed in to change notification settings - Fork 69
Fix execution caching to cache artifact graph NodePath #6978
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
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
CodSpeed Instrumentation Performance ReportMerging #6978 will not alter performanceComparing Summary
|
9b94acb
to
ed7cafe
Compare
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.
Dope, thank you.
profile001 = startProfile(sketch001, at = [5.5, 5.25]) | ||
|> line(end = [10.5, -1.19]) | ||
|> line(end = [8, -5.5]) | ||
|> line(end = [-1.02, -6.76]) | ||
|> line(end = [-11.5, 2.8]) | ||
|> close() | ||
plane001 = offsetPlane(XY, offset = 20) |
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.
Why did the input kcl need to change?
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.
oh
The sim test output is from fixing SketchOnFace and SketchOnPlane, just something I noticed was broken while investigating this.
never mind
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 reason I used offsetPlane() was because I wanted to have something to refer to in the second execution, like in way we reproduced #6841.
The coordinate changes were arbitrary. Just wanted rounder numbers to look at.
Fixes #6841. Replaces/closes #6885.
The cache test is the critical one that proves we fix #6841. Before, we were actually rebuilding the whole graph from commands each time. Now, when it's cached, we start from the cached graph.
The sim test output is from fixing SketchOnFace and SketchOnPlane, just something I noticed was broken while investigating this.