summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/main/java/com/yahoo')
-rw-r--r--config-model/src/main/java/com/yahoo/schema/RankProfile.java16
-rw-r--r--config-model/src/main/java/com/yahoo/schema/derived/RawRankProfile.java4
-rw-r--r--config-model/src/main/java/com/yahoo/vespa/configmodel/producers/DataTypeRecognizer.java6
3 files changed, 13 insertions, 13 deletions
diff --git a/config-model/src/main/java/com/yahoo/schema/RankProfile.java b/config-model/src/main/java/com/yahoo/schema/RankProfile.java
index 9b3e236612a..22bf1880cd7 100644
--- a/config-model/src/main/java/com/yahoo/schema/RankProfile.java
+++ b/config-model/src/main/java/com/yahoo/schema/RankProfile.java
@@ -17,6 +17,7 @@ import com.yahoo.schema.expressiontransforms.ExpressionTransforms;
import com.yahoo.schema.expressiontransforms.RankProfileTransformContext;
import com.yahoo.schema.expressiontransforms.InputRecorder;
import com.yahoo.schema.parser.ParseException;
+import com.yahoo.search.schema.RankProfile.InputType;
import com.yahoo.searchlib.rankingexpression.ExpressionFunction;
import com.yahoo.searchlib.rankingexpression.FeatureList;
import com.yahoo.searchlib.rankingexpression.RankingExpression;
@@ -841,7 +842,7 @@ public class RankProfile implements Cloneable {
if (inputs.containsKey(reference)) {
Input existing = inputs().get(reference);
if (! input.equals(existing))
- throw new IllegalArgumentException("Duplicate input: Has both " + input + " and existing");
+ throw new IllegalArgumentException("Duplicate input: Has both " + input + " and existing " + existing);
}
inputs.put(reference, input);
}
@@ -1177,7 +1178,8 @@ public class RankProfile implements Cloneable {
private Map<Reference, TensorType> featureTypes() {
Map<Reference, TensorType> featureTypes = inputs().values().stream()
- .collect(Collectors.toMap(input -> input.name(), input -> input.type()));
+ .collect(Collectors.toMap(input -> input.name(),
+ input -> input.type().tensorType()));
allFields().forEach(field -> addAttributeFeatureTypes(field, featureTypes));
allImportedFields().forEach(field -> addAttributeFeatureTypes(field, featureTypes));
return featureTypes;
@@ -1545,17 +1547,21 @@ public class RankProfile implements Cloneable {
public static final class Input {
private final Reference name;
- private final TensorType type;
+ private final InputType type;
private final Optional<Tensor> defaultValue;
- public Input(Reference name, TensorType type, Optional<Tensor> defaultValue) {
+ public Input(Reference name, InputType type, Optional<Tensor> defaultValue) {
this.name = name;
this.type = type;
this.defaultValue = defaultValue;
}
+ public Input(Reference name, TensorType tType, Optional<Tensor> defaultValue) {
+ this(name, new InputType(tType, false), defaultValue);
+ }
+
public Reference name() { return name; }
- public TensorType type() { return type; }
+ public InputType type() { return type; }
public Optional<Tensor> defaultValue() { return defaultValue; }
@Override
diff --git a/config-model/src/main/java/com/yahoo/schema/derived/RawRankProfile.java b/config-model/src/main/java/com/yahoo/schema/derived/RawRankProfile.java
index 33a363312d6..db76d6397fc 100644
--- a/config-model/src/main/java/com/yahoo/schema/derived/RawRankProfile.java
+++ b/config-model/src/main/java/com/yahoo/schema/derived/RawRankProfile.java
@@ -519,12 +519,12 @@ public class RawRankProfile implements RankProfilesConfig.Producer {
for (var input : inputs.values()) {
if (FeatureNames.isQueryFeature(input.name())) {
- if (input.type().rank() > 0) // Proton does not like representing the double type as a rank 0 tensor
+ if (input.type().tensorType().rank() > 0) // Proton does not like representing the double type as a rank 0 tensor
properties.add(new Pair<>("vespa.type.query." + input.name().arguments().expressions().get(0),
input.type().toString()));
if (input.defaultValue().isPresent()) {
properties.add(new Pair<>(input.name().toString(),
- input.type().rank() == 0 ?
+ input.type().tensorType().rank() == 0 ?
String.valueOf(input.defaultValue().get().asDouble()) :
input.defaultValue().get().toString(true, false)));
}
diff --git a/config-model/src/main/java/com/yahoo/vespa/configmodel/producers/DataTypeRecognizer.java b/config-model/src/main/java/com/yahoo/vespa/configmodel/producers/DataTypeRecognizer.java
index ecacfa43757..0c3b750d876 100644
--- a/config-model/src/main/java/com/yahoo/vespa/configmodel/producers/DataTypeRecognizer.java
+++ b/config-model/src/main/java/com/yahoo/vespa/configmodel/producers/DataTypeRecognizer.java
@@ -35,12 +35,6 @@ public class DataTypeRecognizer {
DataTypeRecognizer() {
}
- DataTypeRecognizer(DataTypeCollection dtc) {
- for (var type : dtc.getTypes()) {
- System.err.println("added: "+nameOf(type));
- }
- }
-
String nameOf(Object type) {
return toUniqueNames.computeIfAbsent(type, t -> makeUniqueName(t));
}