forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkThreadedImageAlgorithm.cxx
340 lines (296 loc) · 10.6 KB
/
vtkThreadedImageAlgorithm.cxx
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
/*=========================================================================
Program: Visualization Toolkit
Module: vtkThreadedImageAlgorithm.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkThreadedImageAlgorithm.h"
#include "vtkCellData.h"
#include "vtkCommand.h"
#include "vtkDataArray.h"
#include "vtkImageData.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMultiThreader.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkTrivialProducer.h"
//----------------------------------------------------------------------------
vtkThreadedImageAlgorithm::vtkThreadedImageAlgorithm()
{
this->Threader = vtkMultiThreader::New();
this->NumberOfThreads = this->Threader->GetNumberOfThreads();
}
//----------------------------------------------------------------------------
vtkThreadedImageAlgorithm::~vtkThreadedImageAlgorithm()
{
this->Threader->Delete();
}
//----------------------------------------------------------------------------
void vtkThreadedImageAlgorithm::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "NumberOfThreads: " << this->NumberOfThreads << "\n";
}
struct vtkImageThreadStruct
{
vtkThreadedImageAlgorithm *Filter;
vtkInformation *Request;
vtkInformationVector **InputsInfo;
vtkInformationVector *OutputsInfo;
vtkImageData ***Inputs;
vtkImageData **Outputs;
};
//----------------------------------------------------------------------------
// For streaming and threads. Splits output update extent into num pieces.
// This method needs to be called num times. Results must not overlap for
// consistent starting extent. Subclass can override this method.
// This method returns the number of peices resulting from a successful split.
// This can be from 1 to "total".
// If 1 is returned, the extent cannot be split.
int vtkThreadedImageAlgorithm::SplitExtent(int splitExt[6],
int startExt[6],
int num, int total)
{
int splitAxis;
int min, max;
vtkDebugMacro("SplitExtent: ( " << startExt[0] << ", " << startExt[1] << ", "
<< startExt[2] << ", " << startExt[3] << ", "
<< startExt[4] << ", " << startExt[5] << "), "
<< num << " of " << total);
// start with same extent
memcpy(splitExt, startExt, 6 * sizeof(int));
splitAxis = 2;
min = startExt[4];
max = startExt[5];
while (min >= max)
{
// empty extent so cannot split
if (min > max)
{
return 1;
}
--splitAxis;
if (splitAxis < 0)
{ // cannot split
vtkDebugMacro(" Cannot Split");
return 1;
}
min = startExt[splitAxis*2];
max = startExt[splitAxis*2+1];
}
// determine the actual number of pieces that will be generated
int range = max - min + 1;
int valuesPerThread = static_cast<int>(ceil(range/static_cast<double>(total)));
int maxThreadIdUsed = static_cast<int>(ceil(range/static_cast<double>(valuesPerThread))) - 1;
if (num < maxThreadIdUsed)
{
splitExt[splitAxis*2] = splitExt[splitAxis*2] + num*valuesPerThread;
splitExt[splitAxis*2+1] = splitExt[splitAxis*2] + valuesPerThread - 1;
}
if (num == maxThreadIdUsed)
{
splitExt[splitAxis*2] = splitExt[splitAxis*2] + num*valuesPerThread;
}
vtkDebugMacro(" Split Piece: ( " <<splitExt[0]<< ", " <<splitExt[1]<< ", "
<< splitExt[2] << ", " << splitExt[3] << ", "
<< splitExt[4] << ", " << splitExt[5] << ")");
return maxThreadIdUsed + 1;
}
// this mess is really a simple function. All it does is call
// the ThreadedExecute method after setting the correct
// extent for this thread. Its just a pain to calculate
// the correct extent.
VTK_THREAD_RETURN_TYPE vtkThreadedImageAlgorithmThreadedExecute( void *arg )
{
vtkImageThreadStruct *str;
int ext[6], splitExt[6], total;
int threadId, threadCount;
threadId = static_cast<vtkMultiThreader::ThreadInfo *>(arg)->ThreadID;
threadCount = static_cast<vtkMultiThreader::ThreadInfo *>(arg)->NumberOfThreads;
str = static_cast<vtkImageThreadStruct *>
(static_cast<vtkMultiThreader::ThreadInfo *>(arg)->UserData);
// if we have an output
if (str->Filter->GetNumberOfOutputPorts())
{
// which output port did the request come from
int outputPort =
str->Request->Get(vtkDemandDrivenPipeline::FROM_OUTPUT_PORT());
// if output port is negative then that means this filter is calling the
// update directly, for now an error
if (outputPort == -1)
{
return VTK_THREAD_RETURN_VALUE;
}
// get the update extent from the output port
vtkInformation *outInfo =
str->OutputsInfo->GetInformationObject(outputPort);
int updateExtent[6];
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(),
updateExtent);
memcpy(ext,updateExtent, sizeof(int)*6);
}
else
{
// if there is no output, then use UE from input, use the first input
int inPort;
for (inPort = 0; inPort < str->Filter->GetNumberOfInputPorts(); ++inPort)
{
if (str->Filter->GetNumberOfInputConnections(inPort))
{
int updateExtent[6];
str->InputsInfo[inPort]
->GetInformationObject(0)
->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(),
updateExtent);
memcpy(ext,updateExtent, sizeof(int)*6);
break;
}
}
if (inPort >= str->Filter->GetNumberOfInputPorts())
{
return VTK_THREAD_RETURN_VALUE;
}
}
// execute the actual method with appropriate extent
// first find out how many pieces extent can be split into.
total = str->Filter->SplitExtent(splitExt, ext, threadId, threadCount);
if (threadId < total)
{
// return if nothing to do
if (splitExt[1] < splitExt[0] ||
splitExt[3] < splitExt[2] ||
splitExt[5] < splitExt[4])
{
return VTK_THREAD_RETURN_VALUE;
}
str->Filter->ThreadedRequestData(str->Request,
str->InputsInfo, str->OutputsInfo,
str->Inputs, str->Outputs,
splitExt, threadId);
}
// else
// {
// otherwise don't use this thread. Sometimes the threads dont
// break up very well and it is just as efficient to leave a
// few threads idle.
// }
return VTK_THREAD_RETURN_VALUE;
}
//----------------------------------------------------------------------------
// This is the superclasses style of Execute method. Convert it into
// an imaging style Execute method.
int vtkThreadedImageAlgorithm::RequestData(
vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
int i;
// setup the threasd structure
vtkImageThreadStruct str;
str.Filter = this;
str.Request = request;
str.InputsInfo = inputVector;
str.OutputsInfo = outputVector;
// now we must create the output array
str.Outputs = 0;
if (this->GetNumberOfOutputPorts())
{
str.Outputs = new vtkImageData * [this->GetNumberOfOutputPorts()];
for (i = 0; i < this->GetNumberOfOutputPorts(); ++i)
{
vtkInformation* info = outputVector->GetInformationObject(i);
vtkImageData *outData = static_cast<vtkImageData *>(
info->Get(vtkDataObject::DATA_OBJECT()));
str.Outputs[i] = outData;
int updateExtent[6];
info->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(),
updateExtent);
// for image filters as a convenience we usually allocate the output data
// in the superclass
this->AllocateOutputData(outData, updateExtent);
}
}
// now create the inputs array
str.Inputs = 0;
if (this->GetNumberOfInputPorts())
{
str.Inputs = new vtkImageData ** [this->GetNumberOfInputPorts()];
for (i = 0; i < this->GetNumberOfInputPorts(); ++i)
{
str.Inputs[i] = 0;
vtkInformationVector* portInfo = inputVector[i];
if (portInfo->GetNumberOfInformationObjects())
{
int j;
str.Inputs[i] =
new vtkImageData *[portInfo->GetNumberOfInformationObjects()];
for (j = 0; j < portInfo->GetNumberOfInformationObjects(); ++j)
{
vtkInformation* info = portInfo->GetInformationObject(j);
str.Inputs[i][j] =
static_cast<vtkImageData*>(info->Get(vtkDataObject::DATA_OBJECT()));
}
}
}
}
// copy other arrays
if (str.Inputs && str.Inputs[0] && str.Outputs)
{
this->CopyAttributeData(str.Inputs[0][0],str.Outputs[0],inputVector);
}
this->Threader->SetNumberOfThreads(this->NumberOfThreads);
this->Threader->SetSingleMethod(vtkThreadedImageAlgorithmThreadedExecute, &str);
// always shut off debugging to avoid threading problems with GetMacros
int debug = this->Debug;
this->Debug = 0;
this->Threader->SingleMethodExecute();
this->Debug = debug;
// free up the arrays
for (i = 0; i < this->GetNumberOfInputPorts(); ++i)
{
if (str.Inputs[i])
{
delete [] str.Inputs[i];
}
}
// note the check isn't required by C++ standard but due to bad compilers
if (str.Inputs)
{
delete [] str.Inputs;
}
if (str.Outputs)
{
delete [] str.Outputs;
}
return 1;
}
//----------------------------------------------------------------------------
// The execute method created by the subclass.
void vtkThreadedImageAlgorithm::ThreadedRequestData(
vtkInformation* vtkNotUsed( request ),
vtkInformationVector** vtkNotUsed( inputVector ),
vtkInformationVector* vtkNotUsed( outputVector ),
vtkImageData ***inData,
vtkImageData **outData,
int extent[6],
int threadId)
{
this->ThreadedExecute(inData[0][0], outData[0], extent, threadId);
}
//----------------------------------------------------------------------------
// The execute method created by the subclass.
void vtkThreadedImageAlgorithm::ThreadedExecute(
vtkImageData *vtkNotUsed(inData),
vtkImageData *vtkNotUsed(outData),
int extent[6],
int vtkNotUsed(threadId))
{
extent = extent;
vtkErrorMacro("Subclass should override this method!!!");
}