1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 |
|
---|
26 | using HeuristicLab.Common;
|
---|
27 | using HeuristicLab.Core;
|
---|
28 | using HeuristicLab.Data;
|
---|
29 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
30 | using HeuristicLab.Parameters;
|
---|
31 | using HEAL.Attic;
|
---|
32 |
|
---|
33 | using static HeuristicLab.Problems.DataAnalysis.Symbolic.BatchOperations;
|
---|
34 |
|
---|
35 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
36 | [Item("SymbolicDataAnalysisExpressionTreeBatchInterpreter", "An interpreter that uses batching and vectorization techniques to achieve faster performance.")]
|
---|
37 | [StorableType("BEB15146-BB95-4838-83AC-6838543F017B")]
|
---|
38 | public class SymbolicDataAnalysisExpressionTreeBatchInterpreter : ParameterizedNamedItem, ISymbolicDataAnalysisExpressionTreeInterpreter {
|
---|
39 | private const string EvaluatedSolutionsParameterName = "EvaluatedSolutions";
|
---|
40 |
|
---|
41 | #region parameters
|
---|
42 | public IFixedValueParameter<IntValue> EvaluatedSolutionsParameter {
|
---|
43 | get { return (IFixedValueParameter<IntValue>)Parameters[EvaluatedSolutionsParameterName]; }
|
---|
44 | }
|
---|
45 | #endregion
|
---|
46 |
|
---|
47 | #region properties
|
---|
48 | public int EvaluatedSolutions {
|
---|
49 | get { return EvaluatedSolutionsParameter.Value.Value; }
|
---|
50 | set { EvaluatedSolutionsParameter.Value.Value = value; }
|
---|
51 | }
|
---|
52 | #endregion
|
---|
53 |
|
---|
54 | public void ClearState() { }
|
---|
55 |
|
---|
56 | public SymbolicDataAnalysisExpressionTreeBatchInterpreter() {
|
---|
57 | Parameters.Add(new FixedValueParameter<IntValue>(EvaluatedSolutionsParameterName, "A counter for the total number of solutions the interpreter has evaluated", new IntValue(0)));
|
---|
58 | }
|
---|
59 |
|
---|
60 | [StorableConstructor]
|
---|
61 | protected SymbolicDataAnalysisExpressionTreeBatchInterpreter(StorableConstructorFlag _) : base(_) { }
|
---|
62 | protected SymbolicDataAnalysisExpressionTreeBatchInterpreter(SymbolicDataAnalysisExpressionTreeBatchInterpreter original, Cloner cloner) : base(original, cloner) {
|
---|
63 | }
|
---|
64 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
65 | return new SymbolicDataAnalysisExpressionTreeBatchInterpreter(this, cloner);
|
---|
66 | }
|
---|
67 |
|
---|
68 | private void LoadData(BatchInstruction instr, int[] rows, int rowIndex, int batchSize) {
|
---|
69 | for (int i = 0; i < batchSize; ++i) {
|
---|
70 | var row = rows[rowIndex] + i;
|
---|
71 | instr.buf[i] = instr.weight * instr.data[row];
|
---|
72 | }
|
---|
73 | }
|
---|
74 |
|
---|
75 | private void Evaluate(BatchInstruction[] code, int[] rows, int rowIndex, int batchSize) {
|
---|
76 | for (int i = code.Length - 1; i >= 0; --i) {
|
---|
77 | var instr = code[i];
|
---|
78 | var c = instr.childIndex;
|
---|
79 | var n = instr.narg;
|
---|
80 |
|
---|
81 | switch (instr.opcode) {
|
---|
82 | case OpCodes.Variable: {
|
---|
83 | LoadData(instr, rows, rowIndex, batchSize);
|
---|
84 | break;
|
---|
85 | }
|
---|
86 | case OpCodes.Constant: break; // nothing to do here, don't remove because we want to prevent falling into the default case here.
|
---|
87 | case OpCodes.Add: {
|
---|
88 | Load(instr.buf, code[c].buf);
|
---|
89 | for (int j = 1; j < n; ++j) {
|
---|
90 | Add(instr.buf, code[c + j].buf);
|
---|
91 | }
|
---|
92 | break;
|
---|
93 | }
|
---|
94 |
|
---|
95 | case OpCodes.Sub: {
|
---|
96 | if (n == 1) {
|
---|
97 | Neg(instr.buf, code[c].buf);
|
---|
98 | } else {
|
---|
99 | Load(instr.buf, code[c].buf);
|
---|
100 | for (int j = 1; j < n; ++j) {
|
---|
101 | Sub(instr.buf, code[c + j].buf);
|
---|
102 | }
|
---|
103 | }
|
---|
104 | break;
|
---|
105 | }
|
---|
106 |
|
---|
107 | case OpCodes.Mul: {
|
---|
108 | Load(instr.buf, code[c].buf);
|
---|
109 | for (int j = 1; j < n; ++j) {
|
---|
110 | Mul(instr.buf, code[c + j].buf);
|
---|
111 | }
|
---|
112 | break;
|
---|
113 | }
|
---|
114 |
|
---|
115 | case OpCodes.Div: {
|
---|
116 | if (n == 1) {
|
---|
117 | Inv(instr.buf, code[c].buf);
|
---|
118 | } else {
|
---|
119 | Load(instr.buf, code[c].buf);
|
---|
120 | for (int j = 1; j < n; ++j) {
|
---|
121 | Div(instr.buf, code[c + j].buf);
|
---|
122 | }
|
---|
123 | }
|
---|
124 | break;
|
---|
125 | }
|
---|
126 |
|
---|
127 | case OpCodes.Square: {
|
---|
128 | Square(instr.buf, code[c].buf);
|
---|
129 | break;
|
---|
130 | }
|
---|
131 |
|
---|
132 | case OpCodes.Root: {
|
---|
133 | Load(instr.buf, code[c].buf);
|
---|
134 | Root(instr.buf, code[c + 1].buf);
|
---|
135 | break;
|
---|
136 | }
|
---|
137 |
|
---|
138 | case OpCodes.SquareRoot: {
|
---|
139 | Sqrt(instr.buf, code[c].buf);
|
---|
140 | break;
|
---|
141 | }
|
---|
142 |
|
---|
143 | case OpCodes.Cube: {
|
---|
144 | Cube(instr.buf, code[c].buf);
|
---|
145 | break;
|
---|
146 | }
|
---|
147 | case OpCodes.CubeRoot: {
|
---|
148 | CubeRoot(instr.buf, code[c].buf);
|
---|
149 | break;
|
---|
150 | }
|
---|
151 |
|
---|
152 | case OpCodes.Power: {
|
---|
153 | Load(instr.buf, code[c].buf);
|
---|
154 | Pow(instr.buf, code[c + 1].buf);
|
---|
155 | break;
|
---|
156 | }
|
---|
157 |
|
---|
158 | case OpCodes.Exp: {
|
---|
159 | Exp(instr.buf, code[c].buf);
|
---|
160 | break;
|
---|
161 | }
|
---|
162 |
|
---|
163 | case OpCodes.Log: {
|
---|
164 | Log(instr.buf, code[c].buf);
|
---|
165 | break;
|
---|
166 | }
|
---|
167 |
|
---|
168 | case OpCodes.Sin: {
|
---|
169 | Sin(instr.buf, code[c].buf);
|
---|
170 | break;
|
---|
171 | }
|
---|
172 |
|
---|
173 | case OpCodes.Cos: {
|
---|
174 | Cos(instr.buf, code[c].buf);
|
---|
175 | break;
|
---|
176 | }
|
---|
177 |
|
---|
178 | case OpCodes.Tan: {
|
---|
179 | Tan(instr.buf, code[c].buf);
|
---|
180 | break;
|
---|
181 | }
|
---|
182 | case OpCodes.Tanh: {
|
---|
183 | Tanh(instr.buf, code[c].buf);
|
---|
184 | break;
|
---|
185 | }
|
---|
186 | case OpCodes.Absolute: {
|
---|
187 | Absolute(instr.buf, code[c].buf);
|
---|
188 | break;
|
---|
189 | }
|
---|
190 |
|
---|
191 | case OpCodes.AnalyticQuotient: {
|
---|
192 | Load(instr.buf, code[c].buf);
|
---|
193 | AnalyticQuotient(instr.buf, code[c + 1].buf);
|
---|
194 | break;
|
---|
195 | }
|
---|
196 | default: throw new NotSupportedException($"This interpreter does not support {(OpCode)instr.opcode}");
|
---|
197 | }
|
---|
198 | }
|
---|
199 | }
|
---|
200 |
|
---|
201 | private readonly object syncRoot = new object();
|
---|
202 |
|
---|
203 | [ThreadStatic]
|
---|
204 | private static Dictionary<string, double[]> cachedData;
|
---|
205 |
|
---|
206 | [ThreadStatic]
|
---|
207 | private static IDataset cachedDataset;
|
---|
208 |
|
---|
209 | private void InitCache(IDataset dataset) {
|
---|
210 | cachedDataset = dataset;
|
---|
211 | cachedData = new Dictionary<string, double[]>();
|
---|
212 | foreach (var v in dataset.DoubleVariables) {
|
---|
213 | cachedData[v] = dataset.GetDoubleValues(v).ToArray();
|
---|
214 | }
|
---|
215 | }
|
---|
216 |
|
---|
217 | public void InitializeState() {
|
---|
218 | cachedData = null;
|
---|
219 | cachedDataset = null;
|
---|
220 | EvaluatedSolutions = 0;
|
---|
221 | }
|
---|
222 |
|
---|
223 | private double[] GetValues(ISymbolicExpressionTree tree, IDataset dataset, int[] rows) {
|
---|
224 | if (cachedData == null || cachedDataset != dataset) {
|
---|
225 | InitCache(dataset);
|
---|
226 | }
|
---|
227 |
|
---|
228 | var code = Compile(tree, dataset, OpCodes.MapSymbolToOpCode);
|
---|
229 | var remainingRows = rows.Length % BATCHSIZE;
|
---|
230 | var roundedTotal = rows.Length - remainingRows;
|
---|
231 |
|
---|
232 | var result = new double[rows.Length];
|
---|
233 |
|
---|
234 | for (int rowIndex = 0; rowIndex < roundedTotal; rowIndex += BATCHSIZE) {
|
---|
235 | Evaluate(code, rows, rowIndex, BATCHSIZE);
|
---|
236 | Array.Copy(code[0].buf, 0, result, rowIndex, BATCHSIZE);
|
---|
237 | }
|
---|
238 |
|
---|
239 | if (remainingRows > 0) {
|
---|
240 | Evaluate(code, rows, roundedTotal, remainingRows);
|
---|
241 | Array.Copy(code[0].buf, 0, result, roundedTotal, remainingRows);
|
---|
242 | }
|
---|
243 |
|
---|
244 | // when evaluation took place without any error, we can increment the counter
|
---|
245 | lock (syncRoot) {
|
---|
246 | EvaluatedSolutions++;
|
---|
247 | }
|
---|
248 |
|
---|
249 | return result;
|
---|
250 | }
|
---|
251 |
|
---|
252 | public IEnumerable<double> GetSymbolicExpressionTreeValues(ISymbolicExpressionTree tree, IDataset dataset, int[] rows) {
|
---|
253 | return GetValues(tree, dataset, rows);
|
---|
254 | }
|
---|
255 |
|
---|
256 | public IEnumerable<double> GetSymbolicExpressionTreeValues(ISymbolicExpressionTree tree, IDataset dataset, IEnumerable<int> rows) {
|
---|
257 | return GetSymbolicExpressionTreeValues(tree, dataset, rows.ToArray());
|
---|
258 | }
|
---|
259 |
|
---|
260 | private BatchInstruction[] Compile(ISymbolicExpressionTree tree, IDataset dataset, Func<ISymbolicExpressionTreeNode, byte> opCodeMapper) {
|
---|
261 | var root = tree.Root.GetSubtree(0).GetSubtree(0);
|
---|
262 | var code = new BatchInstruction[root.GetLength()];
|
---|
263 | if (root.SubtreeCount > ushort.MaxValue) throw new ArgumentException("Number of subtrees is too big (>65.535)");
|
---|
264 | int c = 1, i = 0;
|
---|
265 | foreach (var node in root.IterateNodesBreadth()) {
|
---|
266 | if (node.SubtreeCount > ushort.MaxValue) throw new ArgumentException("Number of subtrees is too big (>65.535)");
|
---|
267 | code[i] = new BatchInstruction {
|
---|
268 | opcode = opCodeMapper(node),
|
---|
269 | narg = (ushort)node.SubtreeCount,
|
---|
270 | buf = new double[BATCHSIZE],
|
---|
271 | childIndex = c
|
---|
272 | };
|
---|
273 | if (node is VariableTreeNode variable) {
|
---|
274 | code[i].weight = variable.Weight;
|
---|
275 | if (cachedData.ContainsKey(variable.VariableName)) {
|
---|
276 | code[i].data = cachedData[variable.VariableName];
|
---|
277 | } else {
|
---|
278 | code[i].data = dataset.GetReadOnlyDoubleValues(variable.VariableName).ToArray();
|
---|
279 | cachedData[variable.VariableName] = code[i].data;
|
---|
280 | }
|
---|
281 | } else if (node is ConstantTreeNode constant) {
|
---|
282 | code[i].value = constant.Value;
|
---|
283 | for (int j = 0; j < BATCHSIZE; ++j)
|
---|
284 | code[i].buf[j] = code[i].value;
|
---|
285 | }
|
---|
286 | c += node.SubtreeCount;
|
---|
287 | ++i;
|
---|
288 | }
|
---|
289 | return code;
|
---|
290 | }
|
---|
291 | }
|
---|
292 | }
|
---|