Upgrade TensorFlow to 2.3.1#122
Merged
karllessard merged 1 commit intotensorflow:masterfrom Sep 30, 2020
Merged
Conversation
Collaborator
|
While this is building, double-checking with you @saudet , did any new generated classes appeared in your source tree after you've build this locally? |
karllessard
approved these changes
Sep 30, 2020
Contributor
Author
|
No, only the fields in Ops.java get generated in a bit different order for me, but it does that with 2.3.0 as well. diff --git a/tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/Ops.java b/tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/Ops.java
index 8c7aa1c0..bad63582 100644
--- a/tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/Ops.java
+++ b/tensorflow-core/tensorflow-core-api/src/gen/annotations/org/tensorflow/op/Ops.java
@@ -347,10 +347,10 @@ public final class Ops {
public final SignalOps signal;
- public final QuantizationOps quantization;
-
public final TrainOps train;
+ public final QuantizationOps quantization;
+
private final Scope scope;
private Ops(Scope scope) {
@@ -372,8 +372,8 @@ public final class Ops {
math = new MathOps(scope);
audio = new AudioOps(scope);
signal = new SignalOps(scope);
- quantization = new QuantizationOps(scope);
train = new TrainOps(scope);
+ quantization = new QuantizationOps(scope);
}
/** |
Collaborator
|
Weird. I thought I'd fixed the generation order. Must be another place that isn't using a LinkedHashMap. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #120