aboutsummaryrefslogtreecommitdiffstats
path: root/model-integration/src/main/java/ai/vespa/rankingexpression/importer/operations/PlaceholderWithDefault.java
blob: c0f825f9092a4e9ff78576c1c03c26aaa6a67487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package ai.vespa.rankingexpression.importer.operations;

import ai.vespa.rankingexpression.importer.OrderedTensorType;
import com.yahoo.searchlib.rankingexpression.Reference;
import com.yahoo.tensor.functions.TensorFunction;

import java.util.List;
import java.util.Optional;

public class PlaceholderWithDefault extends IntermediateOperation {

    public PlaceholderWithDefault(String modelName, String nodeName, List<IntermediateOperation> inputs) {
        super(modelName, nodeName, inputs);
    }

    @Override
    protected OrderedTensorType lazyGetType() {
        if (!allInputTypesPresent(1)) {
            return null;
        }
        return inputs().get(0).type().orElse(null);
    }

    @Override
    protected TensorFunction<Reference> lazyGetFunction() {
        if (!allInputFunctionsPresent(1)) {
            return null;
        }
        // This should be a call to the function we add below, but for now
        // we treat this as as identity function and just pass the constant.
        return inputs.get(0).function().orElse(null);
    }

    @Override
    public Optional<TensorFunction<Reference>> rankingExpressionFunction() {
        // For now, it is much more efficient to assume we always will return
        // the default value, as we can prune away large parts of the expression
        // tree by having it calculated as a constant. If a case arises where
        // it is important to support this, implement this.
        return Optional.empty();
    }

    @Override
    public boolean isConstant() {
        return true;  // not true if we add to function
    }

    @Override
    public PlaceholderWithDefault withInputs(List<IntermediateOperation> inputs) {
        return new PlaceholderWithDefault(modelName(), name(), inputs);
    }

    @Override
    public String operationName() { return "PlaceholdeWithDefault"; }

}