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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkGPUInfoList.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 "vtkGPUInfoList.h"
#include "vtkGPUInfo.h"
#include "vtkGraphicsFactory.h"
#include <cassert>
#include "vtkGPUInfoListArray.h"
#include <vector>
//------------------------------------------------------------------------------
VTK_ABI_NAMESPACE_BEGIN
vtkGPUInfoList* vtkGPUInfoList::New()
{
vtkObject* ret = vtkGraphicsFactory::CreateInstance("vtkGPUInfoList");
return static_cast<vtkGPUInfoList*>(ret);
}
//------------------------------------------------------------------------------
// Description:
// Tells if the operating system has been probed. Initial value is false.
bool vtkGPUInfoList::IsProbed()
{
return this->Probed;
}
//------------------------------------------------------------------------------
// Description:
// Return the number of GPUs.
// \pre probed: IsProbed()
int vtkGPUInfoList::GetNumberOfGPUs()
{
if (!this->IsProbed())
{
vtkErrorMacro("You must first call the Probe method");
return 0;
}
return static_cast<int>(this->Array->v.size());
}
//------------------------------------------------------------------------------
// Description:
// Return information about GPU i.
// \pre probed: IsProbed()
// \pre valid_index: i>=0 && i<GetNumberOfGPUs()
// \post result_exists: result!=0
vtkGPUInfo* vtkGPUInfoList::GetGPUInfo(int i)
{
assert("pre: probed" && this->IsProbed());
assert("pre: valid_index" && i >= 0 && i < this->GetNumberOfGPUs());
vtkGPUInfo* result = this->Array->v[static_cast<size_t>(i)];
assert("post: result_exists" && result != nullptr);
return result;
}
//------------------------------------------------------------------------------
// Description:
// Default constructor. Set Probed to false. Set Array to nullptr.
vtkGPUInfoList::vtkGPUInfoList()
{
this->Probed = false;
this->Array = nullptr;
}
//------------------------------------------------------------------------------
vtkGPUInfoList::~vtkGPUInfoList()
{
if (this->Array != nullptr)
{
size_t c = this->Array->v.size();
size_t i = 0;
while (i < c)
{
this->Array->v[i]->Delete();
++i;
}
delete this->Array;
}
}
//------------------------------------------------------------------------------
void vtkGPUInfoList::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "IsProbed: " << this->Probed << endl;
if (this->Probed)
{
int c = this->GetNumberOfGPUs();
os << indent << "Number of GPUs: " << c << endl;
int i = 0;
while (i < c)
{
os << indent << " GPU " << i;
this->GetGPUInfo(i)->PrintSelf(os, indent);
++i;
}
}
}
VTK_ABI_NAMESPACE_END
|