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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPContingencyStatistics.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.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2011 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
#if defined(_MSC_VER)
#pragma warning (disable:4503)
#endif
#include "vtkToolkits.h"
#include "vtkPOrderStatistics.h"
#include "vtkCommunicator.h"
#include "vtkIdTypeArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
#include "vtkMultiProcessController.h"
#include "vtkStringArray.h"
#include "vtkTable.h"
#include "vtkVariantArray.h"
#include <map>
#include <set>
#include <vector>
vtkStandardNewMacro(vtkPOrderStatistics);
vtkCxxSetObjectMacro(vtkPOrderStatistics, Controller, vtkMultiProcessController);
//-----------------------------------------------------------------------------
vtkPOrderStatistics::vtkPOrderStatistics()
{
this->Controller = 0;
this->SetController( vtkMultiProcessController::GetGlobalController() );
}
//-----------------------------------------------------------------------------
vtkPOrderStatistics::~vtkPOrderStatistics()
{
this->SetController( 0 );
}
//-----------------------------------------------------------------------------
void vtkPOrderStatistics::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Controller: " << this->Controller << endl;
}
//-----------------------------------------------------------------------------
static void StringVectorToStringBuffer( const std::vector<vtkStdString>& strings,
vtkStdString& buffer )
{
buffer.clear();
for( std::vector<vtkStdString>::const_iterator it = strings.begin();
it != strings.end(); ++ it )
{
buffer.append( *it );
buffer.push_back( 0 );
}
}
// ----------------------------------------------------------------------
static void StringArrayToStringBuffer( vtkStringArray* sVals,
vtkStdString& sPack )
{
std::vector<vtkStdString> sVect; // consecutive strings
vtkIdType nv = sVals->GetNumberOfValues();
for ( vtkIdType i = 0; i < nv; ++ i )
{
// Push back current string value
sVect.push_back( sVals->GetValue( i ) );
}
// Concatenate vector of strings into single string
StringVectorToStringBuffer( sVect, sPack );
}
//-----------------------------------------------------------------------------
static void StringHistoToBuffers( const std::map<vtkStdString,vtkIdType>& histo,
vtkStdString& buffer,
vtkIdTypeArray* card )
{
buffer.clear();
card->SetNumberOfTuples( histo.size() );
vtkIdType r = 0;
for( std::map<vtkStdString,vtkIdType>::const_iterator it = histo.begin();
it != histo.end(); ++ it, ++ r )
{
buffer.append( it->first );
card->SetValue( r, it->second );
buffer.push_back( 0 );
}
}
//-----------------------------------------------------------------------------
static void StringBufferToStringVector( const vtkStdString& buffer,
std::vector<vtkStdString>& strings )
{
strings.clear();
const char* const bufferEnd = &buffer[0] + buffer.size();
for( const char* start = &buffer[0]; start != bufferEnd; ++ start )
{
for( const char* finish = start; finish != bufferEnd; ++ finish )
{
if( ! *finish )
{
strings.push_back( vtkStdString( start ) );
start = finish;
break;
}
}
}
}
// ----------------------------------------------------------------------
void vtkPOrderStatistics::Learn( vtkTable* inData,
vtkTable* inParameters,
vtkMultiBlockDataSet* outMeta )
{
if ( ! outMeta )
{
return;
}
// First calculate order statistics on local data set
this->Superclass::Learn( inData, inParameters, outMeta );
if ( ! outMeta
|| outMeta->GetNumberOfBlocks() < 1 )
{
// No statistics were calculated.
return;
}
// Make sure that parallel updates are needed, otherwise leave it at that.
int np = this->Controller->GetNumberOfProcesses();
if ( np < 2 )
{
return;
}
// Get ready for parallel calculations
vtkCommunicator* com = this->Controller->GetCommunicator();
if ( ! com )
{
vtkErrorMacro("No parallel communicator.");
}
// Figure local process id
vtkIdType myRank = com->GetLocalProcessId();
// NB: Use process 0 as sole reducer for now
vtkIdType rProc = 0;
// Iterate over primary tables
unsigned int nBlocks = outMeta->GetNumberOfBlocks();
for ( unsigned int b = 0; b < nBlocks; ++ b )
{
// Fetch histogram table
vtkTable* histoTab = vtkTable::SafeDownCast( outMeta->GetBlock( b ) );
if ( ! histoTab )
{
continue;
}
// Downcast columns to typed arrays for efficient data access
vtkAbstractArray* vals = histoTab->GetColumnByName( "Value" );
vtkIdTypeArray* card = vtkArrayDownCast<vtkIdTypeArray>( histoTab->GetColumnByName( "Cardinality" ) );
if ( ! vals || ! card )
{
vtkErrorMacro("Column fetching error on process "
<< myRank
<< ".");
return;
}
// Create new table for global histogram
vtkTable* histoTab_g = vtkTable::New();
// Create column for global histogram cardinalities
vtkIdTypeArray* card_g = vtkIdTypeArray::New();
card_g->SetName( "Cardinality" );
// Gather all histogram cardinalities on process rProc
// NB: GatherV because the arrays have variable lengths
if ( ! com->GatherV( card, card_g, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not gather histogram cardinalities.");
return;
}
// Gather all histogram values on rProc and perform reduction of the global histogram table
if ( vals->IsA("vtkDataArray") )
{
// Downcast column to data array for subsequent typed message passing
vtkDataArray* dVals = vtkArrayDownCast<vtkDataArray>( vals );
// Create column for global histogram values of the same type as the values
vtkDataArray* dVals_g = vtkDataArray::CreateDataArray( dVals->GetDataType() );
dVals_g->SetName( "Value" );
// Gather all histogram values on process rProc
// NB: GatherV because the arrays have variable lengths
if ( ! com->GatherV( dVals, dVals_g, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not gather histogram values.");
return;
}
// Reduce to global histogram table on process rProc
if ( myRank == rProc )
{
if ( this->Reduce( card_g, dVals_g ) )
{
return;
}
} // if ( myRank == rProc )
// Finally broadcast reduced histogram values
if ( ! com->Broadcast( dVals_g, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not broadcast reduced histogram values.");
return;
}
// Add column of data values to histogram table
histoTab_g->AddColumn( dVals_g );
// Clean up
dVals_g->Delete();
// Finally broadcast reduced histogram cardinalities
if ( ! com->Broadcast( card_g, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not broadcast reduced histogram cardinalities.");
return;
}
} // if ( vals->IsA("vtkDataArray") )
else if ( vals->IsA("vtkStringArray") )
{
// Downcast column to string array for subsequent typed message passing
vtkStringArray* sVals = vtkArrayDownCast<vtkStringArray>( vals );
// Packing step: concatenate all string values
vtkStdString sPack_l;
StringArrayToStringBuffer( sVals, sPack_l );
// (All) gather all string sizes
vtkIdType nc_l = sPack_l.size();
vtkIdType* nc_g = new vtkIdType[np];
com->AllGather( &nc_l, nc_g, 1 );
// Calculate total size and displacement arrays
vtkIdType* offsets = new vtkIdType[np];
vtkIdType ncTotal = 0;
for ( vtkIdType i = 0; i < np; ++ i )
{
offsets[i] = ncTotal;
ncTotal += nc_g[i];
}
// Allocate receive buffer on reducer process, based on the global size obtained above
char* sPack_g = 0;
if ( myRank == rProc )
{
sPack_g = new char[ncTotal];
}
// Gather all sPack on process rProc
// NB: GatherV because the packets have variable lengths
if ( ! com->GatherV( &(*sPack_l.begin()), sPack_g, nc_l, nc_g, offsets, rProc ) )
{
vtkErrorMacro("Process "
<< myRank
<< "could not gather string values.");
return;
}
// Reduce to global histogram on process rProc
std::map<vtkStdString,vtkIdType> histogram;
if ( myRank == rProc )
{
if ( this->Reduce( card_g, ncTotal, sPack_g, histogram ) )
{
return;
}
} // if ( myRank == rProc )
// Create column for global histogram values of the same type as the values
vtkStringArray* sVals_g = vtkStringArray::New();
sVals_g->SetName( "Value" );
// Finally broadcast reduced histogram
if ( this->Broadcast( histogram, card_g, sVals_g, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not broadcast reduced histogram values.");
return;
}
// Add column of string values to histogram table
histoTab_g->AddColumn( sVals_g );
// Clean up
sVals_g->Delete();
} // else if ( vals->IsA("vtkStringArray") )
else if ( vals->IsA("vtkVariantArray") )
{
vtkErrorMacro( "Unsupported data type (variant array) for column "
<< vals->GetName()
<< ". Ignoring it." );
return;
}
else
{
vtkErrorMacro( "Unsupported data type for column "
<< vals->GetName()
<< ". Ignoring it." );
return;
}
// Add column of cardinalities to histogram table
histoTab_g->AddColumn( card_g );
// Replace local histogram table with globally reduced one
outMeta->SetBlock( b, histoTab_g );
// Clean up
card_g->Delete();
histoTab_g->Delete();
} // for ( unsigned int b = 0; b < nBlocks; ++ b )
}
//-----------------------------------------------------------------------------
bool vtkPOrderStatistics::Reduce( vtkIdTypeArray* card_g,
vtkDataArray* dVals_g )
{
// Check consistency: we must have as many values as cardinality entries
vtkIdType nRow_g = card_g->GetNumberOfTuples();
if ( dVals_g->GetNumberOfTuples() != nRow_g )
{
vtkErrorMacro("Gathering error on process "
<< this->Controller->GetCommunicator()->GetLocalProcessId()
<< ": inconsistent number of values and cardinality entries: "
<< dVals_g->GetNumberOfTuples()
<< " <> "
<< nRow_g
<< ".");
return true;
}
// Reduce to the global histogram table
std::map<double,vtkIdType> histogram;
double x;
vtkIdType c;
for ( vtkIdType r = 0; r < nRow_g; ++ r )
{
// First, fetch value
x = dVals_g->GetTuple1( r );
// Then, retrieve corresponding cardinality
c = card_g->GetValue( r );
// Last, update histogram count for corresponding value
histogram[x] += c;
}
// Now resize global histogram arrays to reduced size
nRow_g = static_cast<vtkIdType>( histogram.size() );
dVals_g->SetNumberOfTuples( nRow_g );
card_g->SetNumberOfTuples( nRow_g );
// Then store reduced histogram into array
std::map<double,vtkIdType>::iterator hit = histogram.begin();
for ( vtkIdType r = 0; r < nRow_g; ++ r, ++ hit )
{
dVals_g->SetTuple1( r, hit->first );
card_g->SetValue( r, hit->second );
}
return false;
}
//-----------------------------------------------------------------------------
bool vtkPOrderStatistics::Reduce( vtkIdTypeArray* card_g,
vtkIdType& ncTotal,
char* sPack_g,
std::map<vtkStdString,vtkIdType>& histogram )
{
// First, unpack the packet of strings
std::vector<vtkStdString> sVect_g;
StringBufferToStringVector( vtkStdString ( sPack_g, ncTotal ), sVect_g );
// Second, check consistency: we must have as many values as cardinality entries
vtkIdType nRow_g = card_g->GetNumberOfTuples();
if ( vtkIdType( sVect_g.size() ) != nRow_g )
{
vtkErrorMacro("Gathering error on process "
<< this->Controller->GetCommunicator()->GetLocalProcessId()
<< ": inconsistent number of values and cardinality entries: "
<< sVect_g.size()
<< " <> "
<< nRow_g
<< ".");
return true;
}
// Third, reduce to the global histogram
vtkIdType c;
vtkIdType i = 0;
for ( std::vector<vtkStdString>::iterator vit = sVect_g.begin();
vit != sVect_g.end(); ++ vit , ++ i )
{
// First, retrieve cardinality
c = card_g->GetValue( i );
// Then, update histogram count for corresponding value
histogram[*vit] += c;
}
return false;
}
// ----------------------------------------------------------------------
bool vtkPOrderStatistics::Broadcast( std::map<vtkStdString,vtkIdType>& histogram,
vtkIdTypeArray* card,
vtkStringArray* sVals,
vtkIdType rProc )
{
vtkCommunicator* com = this->Controller->GetCommunicator();
// Concatenate string keys of histogram into single string and put values into resized array
vtkStdString sPack;
StringHistoToBuffers( histogram, sPack, card );
// Broadcast size of string buffer
vtkIdType nc = sPack.size();
if ( ! com->Broadcast( &nc, 1, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not broadcast size of string buffer.");
return true;
}
// Resize string so it can receive the broadcasted string buffer
sPack.resize( nc );
// Broadcast histogram values
if ( ! com->Broadcast( &(*sPack.begin()), nc, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not broadcast histogram string values.");
return true;
}
// Unpack the packet of strings
std::vector<vtkStdString> sVect;
StringBufferToStringVector( sPack, sVect );
// Broadcast histogram cardinalities
if ( ! com->Broadcast( card, rProc ) )
{
vtkErrorMacro("Process "
<< com->GetLocalProcessId()
<< " could not broadcast histogram cardinalities.");
return true;
}
// Now resize global histogram arrays to reduced size
sVals->SetNumberOfValues( sVect.size() );
// Then store reduced histogram into array
vtkIdType r = 0;
for ( std::vector<vtkStdString>::iterator vit = sVect.begin();
vit != sVect.end(); ++ vit, ++ r )
{
sVals->SetValue( r, *vit );
}
return false;
}
|