aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/main/java/com/yahoo/searchlib/rankingexpression/evaluation/gbdtoptimization/GBDTNode.java
blob: 67bd05819716d361204a35a8b908b91ede9323d5 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchlib.rankingexpression.evaluation.gbdtoptimization;

import com.yahoo.searchlib.rankingexpression.Reference;
import com.yahoo.searchlib.rankingexpression.evaluation.Context;
import com.yahoo.searchlib.rankingexpression.evaluation.DoubleValue;
import com.yahoo.searchlib.rankingexpression.evaluation.Value;
import com.yahoo.searchlib.rankingexpression.rule.CompositeNode;
import com.yahoo.searchlib.rankingexpression.rule.ExpressionNode;
import com.yahoo.searchlib.rankingexpression.rule.SerializationContext;
import com.yahoo.tensor.TensorType;
import com.yahoo.tensor.evaluation.TypeContext;

import java.util.Arrays;
import java.util.Deque;
import java.util.Objects;

/**
 * An optimized version of a decision tree.
 *
 * @author bratseth
 */
public final class GBDTNode extends ExpressionNode {

    // The GBDT node vm works by reading doubles one at a time and interpreting them
    // as either constant data or a mangling of opcode and variable reference:
    // The value space is as follows:
    // n=[0,MAX_LEAF_VALUE>                                             : n is data (tree leaf constant value)
    // n=[MAX_LEAF_VALUE+MAX_VARIABLES*0,MAX_LEAF_VALUE+MAX_VARIABLES*1>: < than var at index n
    // n=[MAX_LEAF_VALUE+MAX_VARIABLES*1,MAX_LEAF_VALUE+MAX_VARIABLES*2>: = to var at index n-MAX_VARIABLES
    // n=[MAX_LEAF_VALUE+MAX_VARIABLES*2,MAX_LEAF_VALUE+MAX_VARIABLES*3>: n-MAX_VARIABLES*2 is IN the following set
    // n=[MAX_LEAF_VALUE+MAX_VARIABLES*3,MAX_LEAF_VALUE+MAX_VARIABLES*4]: !( >= ) than var at index n-MAX_VARIABLES*3 (if-inversion)

    // The full layout of an IF instruction is
    // COMPARISON,TRUE_BRANCH_LENGTH,TRUE_BRANCH,FALSE_BRANCH
    // where COMPARISON is VARIABLE_AND_OPCODE,COMPARE_CONSTANT if the opcode is < or = or !( >= ),
    // and                 VARIABLE_AND_OPCODE,COMPARE_CONSTANTS_LENGTH,COMPARE_CONSTANTS if the opcode is IN


    // If any change is made to this encoding, this change must also be reflected in GBDTOptimizer

    /** The max (absolute) supported value an optimized leaf may have */
    public final static int MAX_LEAF_VALUE=2*1000*1000*1000;

    /** The max number of variables (features) supported in the context */
    public final static int MAX_VARIABLES=1*1000*1000;

    private final double[] values;

    public GBDTNode(double[] values) {
        this.values=values;
    }

    /** Returns a direct reference to the values of this. The returned array must not be modified. */
    public final double[] values() { return values; }

    @Override
    public final TensorType type(TypeContext<Reference> context) { return TensorType.empty; }

    @Override
    public final Value evaluate(Context context) {
        return new DoubleValue(evaluate(values,0,context));
    }

    public static double evaluate(double[] values, int startOffset, Context context) {
        int pc = startOffset;
        while (true) {
            double nextValue = values[pc++];
            if (nextValue >= MAX_LEAF_VALUE) { // a condition node
                int offset = (int)nextValue - MAX_LEAF_VALUE;
                boolean comparisonIsTrue = false;
                if (offset < MAX_VARIABLES) {
                    comparisonIsTrue = context.getDouble(offset) < values[pc++];
                }
                else if (offset < MAX_VARIABLES * 2) {
                    comparisonIsTrue = context.getDouble(offset - MAX_VARIABLES) == values[pc++];
                }
                else if (offset < MAX_VARIABLES * 3) {
                    double testValue = context.getDouble(offset - MAX_VARIABLES * 2);
                    int setValuesLeft = (int)values[pc++];
                    while (setValuesLeft > 0) { // test each value in the set
                        setValuesLeft--;
                        if (testValue == values[pc++]) {
                            comparisonIsTrue=true;
                            break;
                        }
                    }
                    pc += setValuesLeft; // jump to after the set
                }
                else { // offset<MAX_VARIABLES*4
                    comparisonIsTrue = ! (context.getDouble(offset - MAX_VARIABLES * 3) >= values[pc++]);
                }

                if (comparisonIsTrue)
                    pc++; // true branch - skip the jump value
                else
                    pc += (int)values[pc]; // false branch - jump
            }
            else { // a leaf
                return nextValue;
            }
        }
    }

    /** Returns "(optimized condition tree)" */
    @Override
    public StringBuilder toString(StringBuilder string, SerializationContext context, Deque<String> path, CompositeNode parent) {
        return string.append("(optimized condition tree)");
    }

    @Override
    public int hashCode() { return Objects.hash("gbdtNode", Arrays.hashCode(values)); }

}