summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-11-30 15:28:41 -0800
committerJon Bratseth <bratseth@yahoo-inc.com>2017-11-30 15:28:41 -0800
commit146aff973397215f1f5ab4a9d0e6e1c32a2a2c61 (patch)
tree9d43b34df0865beee285ba752f62d96d86a76e5a /searchlib
parent1420382a5c16f08cb854d58b2c29b485f51f7f9e (diff)
Remove dead code
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/integration/tensorflow/TensorFlowImporter.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/integration/tensorflow/TensorFlowImporter.java b/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/integration/tensorflow/TensorFlowImporter.java
index 167ff684725..d8c1b3f6bfc 100644
--- a/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/integration/tensorflow/TensorFlowImporter.java
+++ b/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/integration/tensorflow/TensorFlowImporter.java
@@ -1,6 +1,5 @@
package com.yahoo.searchlib.rankingexpression.integration.tensorflow;
-import com.google.protobuf.ProtocolStringList;
import com.google.protobuf.TextFormat;
import com.yahoo.io.IOUtils;
import com.yahoo.searchlib.rankingexpression.RankingExpression;
@@ -12,7 +11,6 @@ import com.yahoo.yolean.Exceptions;
import org.tensorflow.framework.GraphDef;
import org.tensorflow.framework.MetaGraphDef;
import org.tensorflow.framework.NodeDef;
-import org.tensorflow.framework.OpDef;
import org.tensorflow.framework.SavedModel;
import org.tensorflow.framework.SignatureDef;
import org.tensorflow.framework.TensorInfo;
@@ -146,17 +144,6 @@ public class TensorFlowImporter {
.orElseThrow(() -> new IllegalArgumentException("Could not find node '" + name + "'"));
}
- private void importOp(OpDef op, MetaGraphDef.MetaInfoDef graph) {
- System.out.println(" Importing op " + op.getName());
- }
-
- private OpDef getOp(String name, MetaGraphDef.MetaInfoDef graph) {
- return graph.getStrippedOpList().getOpList().stream()
- .filter(op -> op.getName().equals(name))
- .findFirst()
- .orElseThrow(() -> new IllegalArgumentException("Could not find operation '" + name + "'"));
- }
-
/**
* A method signature input and output has the form name:index.
* This returns the name part without the index.
@@ -165,8 +152,4 @@ public class TensorFlowImporter {
return name.split(":")[0];
}
- private boolean contains(String string, ProtocolStringList strings) {
- return strings.asByteStringList().stream().anyMatch(s -> s.toStringUtf8().equals(string));
- }
-
}