mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#7563 HDF5 Export : Add support for defining how many threads to use
This commit is contained in:
@@ -1,25 +1,25 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2021 Equinor ASA
|
||||
//
|
||||
// ResInsight is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "RiaPreferencesSummary.h"
|
||||
#include "cafPdmUiCheckBoxEditor.h"
|
||||
|
||||
// #include "RiaColorTables.h"
|
||||
// #include "RiaValidRegExpValidator.h"
|
||||
// #include "RifReaderSettings.h"
|
||||
// #include "RiuGuiTheme.h"
|
||||
//
|
||||
// #include "cafPdmFieldCvfColor.h"
|
||||
// #include "cafPdmSettings.h"
|
||||
// #include "cafPdmUiCheckBoxEditor.h"
|
||||
// #include "cafPdmUiComboBoxEditor.h"
|
||||
// #include "cafPdmUiFieldHandle.h"
|
||||
// #include "cafPdmUiFilePathEditor.h"
|
||||
// #include "cafPdmUiLineEditor.h"
|
||||
//
|
||||
// #include <QDate>
|
||||
// #include <QDir>
|
||||
// #include <QLocale>
|
||||
// #include <QRegExp>
|
||||
// #include <QStandardPaths>
|
||||
#include <algorithm>
|
||||
|
||||
namespace caf
|
||||
{
|
||||
@@ -109,6 +109,14 @@ RiaPreferencesSummary::RiaPreferencesSummary()
|
||||
"" );
|
||||
m_createH5SummaryDataFile.uiCapability()->setUiLabelPosition( caf::PdmUiItemInfo::HIDDEN );
|
||||
|
||||
CAF_PDM_InitField( &m_createH5SummaryFileThreadCount,
|
||||
"createH5SummaryFileThreadCount",
|
||||
4,
|
||||
"H5 Summary Data Creation Thread Count [BETA]",
|
||||
"",
|
||||
"",
|
||||
"" );
|
||||
|
||||
CAF_PDM_InitFieldNoDefault( &m_summaryReader, "summaryReaderType", "Summary Data File Reader", "", "", "" );
|
||||
}
|
||||
|
||||
@@ -144,6 +152,16 @@ bool RiaPreferencesSummary::createH5SummaryDataFiles() const
|
||||
return m_createH5SummaryDataFile();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
int RiaPreferencesSummary::createH5SummaryDataThreadCount() const
|
||||
{
|
||||
const int minimumThreadCount = 1;
|
||||
|
||||
return std::max( minimumThreadCount, m_createH5SummaryFileThreadCount() );
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
@@ -177,6 +195,7 @@ void RiaPreferencesSummary::defineUiOrdering( QString uiConfigName, caf::PdmUiOr
|
||||
else if ( m_summaryReader == SummaryReaderMode::HDF5_OPM_COMMON )
|
||||
{
|
||||
uiOrdering.add( &m_createH5SummaryDataFile );
|
||||
uiOrdering.add( &m_createH5SummaryFileThreadCount );
|
||||
}
|
||||
|
||||
uiOrdering.skipRemainingFields();
|
||||
|
||||
@@ -1,25 +1,26 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Copyright (C) 2021 Equinor ASA
|
||||
//
|
||||
// ResInsight is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
// FITNESS FOR A PARTICULAR PURPOSE.
|
||||
//
|
||||
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#pragma once
|
||||
|
||||
// #include "RiaDefines.h"
|
||||
// #include "RiaFontCache.h"
|
||||
// #include "RiaGuiApplication.h"
|
||||
// #include "RiaQDateTimeTools.h"
|
||||
//
|
||||
// #include "cafAppEnum.h"
|
||||
// #include "cafPdmChildField.h"
|
||||
// #include "cafPdmField.h"
|
||||
// #include "cafPdmObject.h"
|
||||
//
|
||||
// // Include to make Pdm work for cvf::Color
|
||||
// #include "cafPdmFieldCvfColor.h"
|
||||
//
|
||||
// #include <QPageLayout>
|
||||
// #include <QPageSize>
|
||||
// #include <QStringList>
|
||||
//
|
||||
// #include <map>
|
||||
//
|
||||
// class RifReaderSettings;
|
||||
#include "cafAppEnum.h"
|
||||
#include "cafPdmField.h"
|
||||
#include "cafPdmObject.h"
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
@@ -43,7 +44,9 @@ public:
|
||||
SummaryReaderMode summaryDataReader() const;
|
||||
bool useOptimizedSummaryDataFiles() const;
|
||||
bool createOptimizedSummaryDataFiles() const;
|
||||
bool createH5SummaryDataFiles() const;
|
||||
|
||||
bool createH5SummaryDataFiles() const;
|
||||
int createH5SummaryDataThreadCount() const;
|
||||
|
||||
protected:
|
||||
void defineEditorAttribute( const caf::PdmFieldHandle* field,
|
||||
@@ -58,6 +61,7 @@ private:
|
||||
caf::PdmField<bool> m_useOptimizedSummaryDataFile;
|
||||
|
||||
caf::PdmField<bool> m_createH5SummaryDataFile;
|
||||
caf::PdmField<int> m_createH5SummaryFileThreadCount;
|
||||
|
||||
caf::PdmField<SummaryReaderModeType> m_summaryReader;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user