-
Notifications
You must be signed in to change notification settings - Fork 5
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
Added support for named attrs in DecomposingContext. #213
Added support for named attrs in DecomposingContext. #213
Conversation
58d5795
to
7e4fbb2
Compare
@@ -12,7 +12,7 @@ jobs: | |||
fail-fast: false | |||
matrix: | |||
build: | |||
- runs-on: self-hosted | |||
- runs-on: runner |
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.
Is this intentional?
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.
Yup, this is required now that runners have been re-configured. However, I think there is separate PR to tackle this 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.
Yes, I needed to set this up here in order to run CI.
@@ -12,7 +12,7 @@ jobs: | |||
fail-fast: false | |||
matrix: | |||
build: | |||
- runs-on: self-hosted | |||
- runs-on: runner |
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.
Yup, this is required now that runners have been re-configured. However, I think there is separate PR to tackle this 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.
Looks good, just sync with @vmilosevic on who will push the runner
update change :))
The runner is already updated on main, so it is okay. If there is any difference, it will show as a conflict; otherwise, it should merge without problems. |
Added support for named attrs in DecomposingContext, since they are needed for lowering to MLIR.
Currently using it only in softmax_bw, as an example. As we find more uses for it (as training matures), we will add it at other locations.
Solves #183