-
Notifications
You must be signed in to change notification settings - Fork 19
Added a filter for ops with ref-valued inputs that are not supported. #17
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
…-valued inputs that are not supported.
…50b4ed with PR #27327 on top of it.
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.
Thanks!
Since this contains some change that hasn't been merged yet, we should wait for it to merge first. |
@rxwei Sounds good! I removed the unmerged op. The generated module now contains everything from core TF repo commit 5e8df789cc30098d791475c14a623ec68b50b4ed. |
Great. Thanks. |
@@ -2130,7 +1451,7 @@ public static func avgPool<T: FloatingPoint & TensorFlowScalar>( | |||
ksize: [Int32], | |||
strides: [Int32], | |||
padding: Padding, | |||
dataFormat: DataFormat = .nhwc | |||
dataFormat: DataFormat = .b'nhwc' |
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.
@eaplatanios This is malformed and causing swiftlang/swift#23700 to fail. I'm going to revert this PR for now.
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 I know why this happens. It’s a Python 3 compatibility bug. I’ll fix it once I get to my laptop.
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.
Fixed in #19 .
Changes:
The last one generates a large diff and not sure if it break compatibility with anything. Should I split it out as a separate PR?