1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 |
|
---|
5 | using HeuristicLab.Common;
|
---|
6 | using HeuristicLab.Core;
|
---|
7 | using HeuristicLab.Data;
|
---|
8 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
9 | using HeuristicLab.Parameters;
|
---|
10 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
11 |
|
---|
12 | using static HeuristicLab.Problems.DataAnalysis.Symbolic.BatchOperations;
|
---|
13 |
|
---|
14 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
15 | [Item("SymbolicDataAnalysisExpressionTreeBatchInterpreter", "An interpreter that uses batching and vectorization techniques to achieve faster performance.")]
|
---|
16 | [StorableClass]
|
---|
17 | public class SymbolicDataAnalysisExpressionTreeBatchInterpreter : ParameterizedNamedItem, ISymbolicDataAnalysisExpressionTreeInterpreter {
|
---|
18 | private const string EvaluatedSolutionsParameterName = "EvaluatedSolutions";
|
---|
19 |
|
---|
20 | #region parameters
|
---|
21 | public IFixedValueParameter<IntValue> EvaluatedSolutionsParameter {
|
---|
22 | get { return (IFixedValueParameter<IntValue>)Parameters[EvaluatedSolutionsParameterName]; }
|
---|
23 | }
|
---|
24 | #endregion
|
---|
25 |
|
---|
26 | #region properties
|
---|
27 | public int EvaluatedSolutions {
|
---|
28 | get { return EvaluatedSolutionsParameter.Value.Value; }
|
---|
29 | set { EvaluatedSolutionsParameter.Value.Value = value; }
|
---|
30 | }
|
---|
31 | #endregion
|
---|
32 |
|
---|
33 | public void ClearState() { }
|
---|
34 |
|
---|
35 | public SymbolicDataAnalysisExpressionTreeBatchInterpreter() {
|
---|
36 | Parameters.Add(new FixedValueParameter<IntValue>(EvaluatedSolutionsParameterName, "A counter for the total number of solutions the interpreter has evaluated", new IntValue(0)));
|
---|
37 | }
|
---|
38 |
|
---|
39 |
|
---|
40 | [StorableConstructor]
|
---|
41 | protected SymbolicDataAnalysisExpressionTreeBatchInterpreter(bool deserializing) : base(deserializing) { }
|
---|
42 | protected SymbolicDataAnalysisExpressionTreeBatchInterpreter(SymbolicDataAnalysisExpressionTreeBatchInterpreter original, Cloner cloner) : base(original, cloner) {
|
---|
43 | }
|
---|
44 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
45 | return new SymbolicDataAnalysisExpressionTreeBatchInterpreter(this, cloner);
|
---|
46 | }
|
---|
47 |
|
---|
48 | private void LoadData(BatchInstruction instr, int[] rows, int rowIndex, int batchSize) {
|
---|
49 | for (int i = 0; i < batchSize; ++i) {
|
---|
50 | var row = rows[rowIndex] + i;
|
---|
51 | instr.buf[i] = instr.weight * instr.data[row];
|
---|
52 | }
|
---|
53 | }
|
---|
54 |
|
---|
55 | private void Evaluate(BatchInstruction[] code, int[] rows, int rowIndex, int batchSize) {
|
---|
56 | for (int i = code.Length - 1; i >= 0; --i) {
|
---|
57 | var instr = code[i];
|
---|
58 | var c = instr.childIndex;
|
---|
59 | var n = instr.narg;
|
---|
60 |
|
---|
61 | switch (instr.opcode) {
|
---|
62 | case OpCodes.Variable: {
|
---|
63 | LoadData(instr, rows, rowIndex, batchSize);
|
---|
64 | break;
|
---|
65 | }
|
---|
66 |
|
---|
67 | case OpCodes.Add: {
|
---|
68 | Load(instr.buf, code[c].buf);
|
---|
69 | for (int j = 1; j < n; ++j) {
|
---|
70 | Add(instr.buf, code[c + j].buf);
|
---|
71 | }
|
---|
72 | break;
|
---|
73 | }
|
---|
74 |
|
---|
75 | case OpCodes.Sub: {
|
---|
76 | if (n == 1) {
|
---|
77 | Neg(instr.buf, code[c].buf);
|
---|
78 | } else {
|
---|
79 | Load(instr.buf, code[c].buf);
|
---|
80 | for (int j = 1; j < n; ++j) {
|
---|
81 | Sub(instr.buf, code[c + j].buf);
|
---|
82 | }
|
---|
83 | }
|
---|
84 | break;
|
---|
85 | }
|
---|
86 |
|
---|
87 | case OpCodes.Mul: {
|
---|
88 | Load(instr.buf, code[c].buf);
|
---|
89 | for (int j = 1; j < n; ++j) {
|
---|
90 | Mul(instr.buf, code[c + j].buf);
|
---|
91 | }
|
---|
92 | break;
|
---|
93 | }
|
---|
94 |
|
---|
95 | case OpCodes.Div: {
|
---|
96 | if (n == 1) {
|
---|
97 | Inv(instr.buf, code[c].buf);
|
---|
98 | } else {
|
---|
99 | Load(instr.buf, code[c].buf);
|
---|
100 | for (int j = 1; j < n; ++j) {
|
---|
101 | Div(instr.buf, code[c + j].buf);
|
---|
102 | }
|
---|
103 | }
|
---|
104 | break;
|
---|
105 | }
|
---|
106 |
|
---|
107 | case OpCodes.Square: {
|
---|
108 | Square(instr.buf, code[c].buf);
|
---|
109 | break;
|
---|
110 | }
|
---|
111 |
|
---|
112 | case OpCodes.Root: {
|
---|
113 | Load(instr.buf, code[c].buf);
|
---|
114 | Root(instr.buf, code[c + 1].buf);
|
---|
115 | break;
|
---|
116 | }
|
---|
117 |
|
---|
118 | case OpCodes.SquareRoot: {
|
---|
119 | Sqrt(instr.buf, code[c].buf);
|
---|
120 | break;
|
---|
121 | }
|
---|
122 |
|
---|
123 | case OpCodes.Cube: {
|
---|
124 | Cube(instr.buf, code[c].buf);
|
---|
125 | break;
|
---|
126 | }
|
---|
127 | case OpCodes.CubeRoot: {
|
---|
128 | CubeRoot(instr.buf, code[c].buf);
|
---|
129 | break;
|
---|
130 | }
|
---|
131 |
|
---|
132 | case OpCodes.Power: {
|
---|
133 | Load(instr.buf, code[c].buf);
|
---|
134 | Pow(instr.buf, code[c + 1].buf);
|
---|
135 | break;
|
---|
136 | }
|
---|
137 |
|
---|
138 | case OpCodes.Exp: {
|
---|
139 | Exp(instr.buf, code[c].buf);
|
---|
140 | break;
|
---|
141 | }
|
---|
142 |
|
---|
143 | case OpCodes.Log: {
|
---|
144 | Log(instr.buf, code[c].buf);
|
---|
145 | break;
|
---|
146 | }
|
---|
147 |
|
---|
148 | case OpCodes.Sin: {
|
---|
149 | Sin(instr.buf, code[c].buf);
|
---|
150 | break;
|
---|
151 | }
|
---|
152 |
|
---|
153 | case OpCodes.Cos: {
|
---|
154 | Cos(instr.buf, code[c].buf);
|
---|
155 | break;
|
---|
156 | }
|
---|
157 |
|
---|
158 | case OpCodes.Tan: {
|
---|
159 | Tan(instr.buf, code[c].buf);
|
---|
160 | break;
|
---|
161 | }
|
---|
162 |
|
---|
163 | case OpCodes.Absolute: {
|
---|
164 | Absolute(instr.buf, code[c].buf);
|
---|
165 | break;
|
---|
166 | }
|
---|
167 |
|
---|
168 | case OpCodes.AnalyticalQuotient: {
|
---|
169 | Load(instr.buf, code[c].buf);
|
---|
170 | AnalyticQuotient(instr.buf, code[c + 1].buf);
|
---|
171 | break;
|
---|
172 | }
|
---|
173 | }
|
---|
174 | }
|
---|
175 | }
|
---|
176 |
|
---|
177 | [ThreadStatic]
|
---|
178 | private Dictionary<string, double[]> cachedData;
|
---|
179 |
|
---|
180 | private void InitCache(IDataset dataset) {
|
---|
181 | cachedData = new Dictionary<string, double[]>();
|
---|
182 | foreach (var v in dataset.DoubleVariables) {
|
---|
183 | cachedData[v] = dataset.GetDoubleValues(v).ToArray();
|
---|
184 | }
|
---|
185 | }
|
---|
186 |
|
---|
187 | public void InitializeState() {
|
---|
188 | cachedData = null;
|
---|
189 | EvaluatedSolutions = 0;
|
---|
190 | }
|
---|
191 |
|
---|
192 | private double[] GetValues(ISymbolicExpressionTree tree, IDataset dataset, int[] rows) {
|
---|
193 | var code = Compile(tree, dataset, OpCodes.MapSymbolToOpCode);
|
---|
194 | var remainingRows = rows.Length % BATCHSIZE;
|
---|
195 | var roundedTotal = rows.Length - remainingRows;
|
---|
196 |
|
---|
197 | // TODO: evaluated solutions are not counted
|
---|
198 |
|
---|
199 | var result = new double[rows.Length];
|
---|
200 |
|
---|
201 | for (int rowIndex = 0; rowIndex < roundedTotal; rowIndex += BATCHSIZE) {
|
---|
202 | Evaluate(code, rows, rowIndex, BATCHSIZE);
|
---|
203 | Array.Copy(code[0].buf, 0, result, rowIndex, BATCHSIZE);
|
---|
204 | }
|
---|
205 |
|
---|
206 | if (remainingRows > 0) {
|
---|
207 | Evaluate(code, rows, roundedTotal, remainingRows);
|
---|
208 | Array.Copy(code[0].buf, 0, result, roundedTotal, remainingRows);
|
---|
209 | }
|
---|
210 |
|
---|
211 | return result;
|
---|
212 | }
|
---|
213 |
|
---|
214 | public IEnumerable<double> GetSymbolicExpressionTreeValues(ISymbolicExpressionTree tree, IDataset dataset, int[] rows) {
|
---|
215 | if (cachedData == null) {
|
---|
216 | InitCache(dataset);
|
---|
217 | }
|
---|
218 | return GetValues(tree, dataset, rows);
|
---|
219 | }
|
---|
220 |
|
---|
221 | public IEnumerable<double> GetSymbolicExpressionTreeValues(ISymbolicExpressionTree tree, IDataset dataset, IEnumerable<int> rows) {
|
---|
222 | return GetSymbolicExpressionTreeValues(tree, dataset, rows.ToArray());
|
---|
223 | }
|
---|
224 |
|
---|
225 | private BatchInstruction[] Compile(ISymbolicExpressionTree tree, IDataset dataset, Func<ISymbolicExpressionTreeNode, byte> opCodeMapper) {
|
---|
226 | var root = tree.Root.GetSubtree(0).GetSubtree(0);
|
---|
227 | var code = new BatchInstruction[root.GetLength()];
|
---|
228 | if (root.SubtreeCount > ushort.MaxValue) throw new ArgumentException("Number of subtrees is too big (>65.535)");
|
---|
229 | int c = 1, i = 0;
|
---|
230 | foreach (var node in root.IterateNodesBreadth()) {
|
---|
231 | if (node.SubtreeCount > ushort.MaxValue) throw new ArgumentException("Number of subtrees is too big (>65.535)");
|
---|
232 | code[i] = new BatchInstruction {
|
---|
233 | opcode = opCodeMapper(node),
|
---|
234 | narg = (ushort)node.SubtreeCount,
|
---|
235 | buf = new double[BATCHSIZE],
|
---|
236 | childIndex = c
|
---|
237 | };
|
---|
238 | if (node is VariableTreeNode variable) {
|
---|
239 | code[i].weight = variable.Weight;
|
---|
240 | if (cachedData.ContainsKey(variable.VariableName)) {
|
---|
241 | code[i].data = cachedData[variable.VariableName];
|
---|
242 | } else {
|
---|
243 | code[i].data = dataset.GetReadOnlyDoubleValues(variable.VariableName).ToArray();
|
---|
244 | cachedData[variable.VariableName] = code[i].data;
|
---|
245 | }
|
---|
246 | } else if (node is ConstantTreeNode constant) {
|
---|
247 | code[i].value = constant.Value;
|
---|
248 | for (int j = 0; j < BATCHSIZE; ++j)
|
---|
249 | code[i].buf[j] = code[i].value;
|
---|
250 | }
|
---|
251 | c += node.SubtreeCount;
|
---|
252 | ++i;
|
---|
253 | }
|
---|
254 | return code;
|
---|
255 | }
|
---|
256 | }
|
---|
257 | }
|
---|