-
Notifications
You must be signed in to change notification settings - Fork 159
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
[res] Add GRU in CircleSchema #12597
Conversation
This pr adds CirGru operation in circle_schema.fbs ONE-DCO-1.0-Signed-off-by: Artem Balyshev <[email protected]>
@@ -1431,6 +1433,12 @@ table GeluOptions { | |||
approximate: bool; | |||
} | |||
|
|||
table CirGruOptions { |
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.
Can you move this above BCQGatherOptions
?
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.
Done
Do you have any reason to use |
In addition, it is the 1st operation which has the prefix |
@glistening, @hseok-oh
I can change |
OK with me :) |
Done) |
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.
LGTM thank you!
Basically @hseok-oh and I are working for runtime. I (and perhaps @hseok-oh) usually don't see
I don't think we need to add prefix
But I don't want to block this PR. It may be merged if it gets @hseok-oh's approval. |
@BalyshevArtem , as we are adding new Op in current 0.7 version with some circumstances that there is no particular users (other tools or repos), and behind this, frontend has to do some laborious tasks to provide new But recently our internal repo released a package with 0.7 schema. So, we have to upgrade the version to 0.8 to follow versioning rules. If your tasks don't have direct relation with |
@seanshpark, |
I don't have strong thoughts to keep |
Created 0.8 file in |
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.
LGTM thank you!
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.
LGTM. Thanks.
This pr adds CirGru operation in circle_schema.fbs
for issue: #12320
from draft: #12319
ONE-DCO-1.0-Signed-off-by: Artem Balyshev [email protected]