-
Notifications
You must be signed in to change notification settings - Fork 68
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
TA pass julia type info via param attr #1300
Conversation
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #1300 +/- ##
==========================================
- Coverage 75.93% 75.68% -0.26%
==========================================
Files 35 35
Lines 10543 10507 -36
==========================================
- Hits 8006 7952 -54
- Misses 2537 2555 +18 ☔ View full report in Codecov by Sentry. |
On @swilliamson7 this seems to yield another 50s improvement from 187->132 We still spent most of our time in type-tree. Across those three towers we spend: 83s out of 132s in constructing the type-tree. The closest other thing is ~10s in julia_activity_rule |
Do you know what Julia code is calling all the constructions (specifically
the hot regions)
…On Tue, Feb 20, 2024 at 11:28 PM Valentin Churavy ***@***.***> wrote:
On @swilliamson7 <https://github.com/swilliamson7> this seems to yield
another 50s improvement from 187->132
We still spent most of our time in type-tree.
image.png (view on web)
<https://github.com/EnzymeAD/Enzyme.jl/assets/145258/5effb262-a407-4e6f-a691-b21bd6db80f7>
image.png (view on web)
<https://github.com/EnzymeAD/Enzyme.jl/assets/145258/fe376526-eab9-4de9-a414-f3776fb31f38>
Across those three towers we spend: 83s out of 132s in constructing the
type-tree. The closest other thing is ~10s in julia_activity_rule
—
Reply to this email directly, view it on GitHub
<#1300 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJTUXDYZQJGFZLGQJHXH5TYUVZWHAVCNFSM6AAAAABDR4LYTCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNJVHA3DSNJQGE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Specifically I want to understand whether these functions are called too
many times or if they are too slow
…On Wed, Feb 21, 2024 at 7:45 AM Billy Moses ***@***.***> wrote:
Do you know what Julia code is calling all the constructions (specifically
the hot regions)
On Tue, Feb 20, 2024 at 11:28 PM Valentin Churavy <
***@***.***> wrote:
> On @swilliamson7 <https://github.com/swilliamson7> this seems to yield
> another 50s improvement from 187->132
>
> We still spent most of our time in type-tree.
>
> image.png (view on web)
> <https://github.com/EnzymeAD/Enzyme.jl/assets/145258/5effb262-a407-4e6f-a691-b21bd6db80f7>
>
> image.png (view on web)
> <https://github.com/EnzymeAD/Enzyme.jl/assets/145258/fe376526-eab9-4de9-a414-f3776fb31f38>
>
> Across those three towers we spend: 83s out of 132s in constructing the
> type-tree. The closest other thing is ~10s in julia_activity_rule
>
> —
> Reply to this email directly, view it on GitHub
> <#1300 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AAJTUXDYZQJGFZLGQJHXH5TYUVZWHAVCNFSM6AAAAABDR4LYTCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNJVHA3DSNJQGE>
> .
> You are receiving this because you authored the thread.Message ID:
> ***@***.***>
>
|
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
shadow_init = job.config.params.shadowInit | ||
ctx = context(mod) | ||
dl = string(LLVM.datalayout(mod)) | ||
dl = string(LLVM.datalayout(mod)) | ||
|
||
tt = [TT.parameters[2:end]...,] |
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.
[JuliaFormatter] reported by reviewdog 🐶
tt = [TT.parameters[2:end]...,] | |
tt = [TT.parameters[2:end]...] |
Requires EnzymeAD/Enzyme#1746