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
|
/*=========================================================================
*
* Copyright NumFOCUS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkFFTWGlobalConfiguration_h
#define itkFFTWGlobalConfiguration_h
#include "itkObject.h"
#include "itkConfigure.h"
// NOTE: Need to have at least one itk include before
// the next defines in order to have ITK_USE_FFTWF,ITK_USE_FFTWD defined
#if defined(ITK_USE_FFTWF) || defined(ITK_USE_FFTWD)
# include "ITKFFTExport.h"
# include <mutex>
# include "itkSingletonMacro.h"
# include "itksys/SystemTools.hxx"
# include "itksys/SystemInformation.hxx"
# if defined(ITK_USE_CUFFTW)
# include "cufftw.h"
# else
# include "fftw3.h"
# endif
# include <algorithm>
# include <cctype>
struct FFTWGlobalConfigurationGlobals;
//* The fftw utilities help control the various strategies
// available for controlling optimizations for the FFTW library.
//
// Environmental variables:
// ITK_FFTW_PLAN_RIGOR - Defines how aggressive the generation of
// wisdom should be.
// ITK_FFTW_READ_WISDOM_CACHE - Defines if a wisdom file cache should
// be read if found. (it is "On" by default)
// ITK_FFTW_WRITE_WISDOM_CACHE - Defines if generated wisdom file cache
// should be written (it is "Off" by default)
// ITK_FFTW_WISDOM_CACHE_BASE - Defines the base directory where the
// fftw wisdom cache will be placed,
// this is intended to be used with auto-
// generated cache file names
// ITK_FFTW_WISDOM_CACHE_FILE - Defines the full name of the cache
// file to be generated. If this is
// set, then ITK_FFTW_WISDOM_CACHE_BASE
// is ignored.
//
// The above behaviors can also be controlled by the application.
//
namespace itk
{
/**
* A set of functions for defining wisdom filename
* generation strategies.
*/
struct FFTWGlobalConfigurationGlobals;
# ifdef _WIN32
# define FFTWPathSep "\\"
# else
# define FFTWPathSep "/"
# endif
class ITKFFT_EXPORT WisdomFilenameGeneratorBase
{
public:
// The baseCacheDirectory from which to build the cache hierarchy
virtual std::string
GenerateWisdomFilename(const std::string & baseCacheDirectory) const = 0;
WisdomFilenameGeneratorBase();
virtual ~WisdomFilenameGeneratorBase();
private:
};
class ITKFFT_EXPORT ManualWisdomFilenameGenerator : public WisdomFilenameGeneratorBase
{
public:
ManualWisdomFilenameGenerator(std::string wfn);
void
SetWisdomFilename(const std::string & wfn);
std::string
GenerateWisdomFilename(const std::string & baseCacheDirectory) const override;
private:
std::string m_WisdomFilename{};
};
class ITKFFT_EXPORT SimpleWisdomFilenameGenerator : public WisdomFilenameGeneratorBase
{
public:
std::string
GenerateWisdomFilename(const std::string & baseCacheDirectory) const override;
};
class ITKFFT_EXPORT HostnameWisdomFilenameGenerator : public WisdomFilenameGeneratorBase
{
public:
std::string
GenerateWisdomFilename(const std::string & baseCacheDirectory) const override;
};
class ITKFFT_EXPORT HardwareWisdomFilenameGenerator : public WisdomFilenameGeneratorBase
{
public:
HardwareWisdomFilenameGenerator();
std::string
GenerateWisdomFilename(const std::string & baseCacheDirectory) const override;
void
SetUseOSName(const bool flag);
void
SetUseOSRelease(const bool flag);
void
SetUseOSVersion(const bool flag);
void
SetUseOSPlatform(const bool flag);
void
SetUseOSBitSize(const bool flag);
void
SetUseNumberOfProcessors(const bool flag);
void
SetUseVendorString(const bool flag);
void
SetUseTypeID(const bool flag);
void
SetUseFamilyID(const bool flag);
void
SetUseModelID(const bool flag);
void
SetUseSteppingCode(const bool flag);
bool
GetUseOSName() const;
bool
GetUseOSRelease() const;
bool
GetUseOSVersion() const;
bool
GetUseOSPlatform() const;
bool
GetUseOSBitSize() const;
bool
GetUseNumberOfProcessors() const;
bool
GetUseVendorString() const;
bool
GetUseTypeID() const;
bool
GetUseFamilyID() const;
bool
GetUseModelID() const;
bool
GetUseSteppingCode() const;
private:
bool m_UseOSName{ true };
bool m_UseOSRelease{ false };
bool m_UseOSVersion{ false };
bool m_UseOSPlatform{ true };
bool m_UseOSBitSize{ true };
bool m_UseNumberOfProcessors{ true };
bool m_UseVendorString{ true };
bool m_UseVendorID{ false };
bool m_UseTypeID{ true };
bool m_UseFamilyID{ true };
bool m_UseModelID{ true };
bool m_UseSteppingCode{ true };
};
/**
* \class FFTWGlobalConfiguration
* A class to contain all the global configuration options for
* FFTW.
*
* A simple global lock is included that must be called
* before calling FFTW unsafe functions. It also handle
* cleanly the initialization and cleanup of FFTW.
*
* This implementation was taken from the Insight Journal paper:
* https://www.insight-journal.org/browse/publication/717
*
* \author Gaetan Lehmann. Biologie du Developpement et de la Reproduction, INRA de Jouy-en-Josas, France.
* \author Hans Johnson, The University of Iowa
*
* \ingroup ITKFFT
*/
class ITKFFT_EXPORT FFTWGlobalConfiguration : public Object
{
public:
ITK_DISALLOW_COPY_AND_MOVE(FFTWGlobalConfiguration);
/** Standard class type aliases. */
using Self = FFTWGlobalConfiguration;
using Superclass = Object;
using Pointer = SmartPointer<Self>;
using ConstPointer = SmartPointer<const Self>;
using MutexType = std::mutex;
/** \see LightObject::GetNameOfClass() */
itkOverrideGetNameOfClassMacro(FFTWGlobalConfiguration);
/** Get the mutex that protects calls to FFTW functions. */
static std::mutex &
GetLockMutex();
/** Set/Get whether a new wisdom is available compared to the
* initial state. If a new wisdom is available, the wisdoms
* may be written to the cache file
*/
static void
SetNewWisdomAvailable(const bool v);
static bool
GetNewWisdomAvailable();
/**
* \brief Set the behavior of wisdom plan creation
*
* If the environmental variable "ITK_FFTW_PLAN_RIGOR", is set,
* then the environmental setting overrides default settings.
* \param v One of the FFTW planner rigor flags FFTW_ESTIMATE,
* FFTW_MEASURE, FFTW_PATIENT, FFTW_EXHAUSTIVE
*/
static void
SetPlanRigor(const int v);
static int
GetPlanRigor();
static void
SetPlanRigor(const std::string & name);
/** Translate plan rigor name to value. An exception is sent if the name is not valid. */
static int
GetPlanRigorValue(const std::string & name);
/** Translate plan rigor value to name. An exception is sent if the value is not valid. */
static std::string
GetPlanRigorName(const int value);
/**
* \brief Set/Get the behavior of wisdom file caching
*
* If the environmental variable "ITK_FFTW_WRITE_WISDOM_CACHE", is set,
* then the environmental setting overrides default settings.
* If true, will create a wisdom file in the location
*/
static void
SetReadWisdomCache(const bool v);
static bool
GetReadWisdomCache();
/**
* \brief Set/Get the behavior of wisdom file caching
*
* If the environmental variable "ITK_FFTW_WRITE_WISDOM_CACHE", is set,
* then the environmental setting overrides default settings.
* If true, will create a wisdom file in the location
*/
static void
SetWriteWisdomCache(const bool v);
static bool
GetWriteWisdomCache();
/**
* \brief Define the directory where
* the wisdom cache will be placed.
* The environmental variable ITK_FFTW_WISDOM_CACHE_BASE
* will override the default behavior.
*/
static void
SetWisdomCacheBase(const std::string & v);
static std::string
GetWisdomCacheBase();
/**
* \brief allows application developers
* to create arbitrary rules for auto-generating
* cache file names. A default cache strategy is set
* to generate separate cache files for each unique
* operating system and hardware permutation. Alternate
* representative strategies are available to meet common
* use cases.
* \sa HardwareWisdomFilenameGenerator
* \sa SimpleWisdomFilenameGenerator
* \sa HostnameWisdomFilenameGenerator
*/
static void
SetWisdomFilenameGenerator(WisdomFilenameGeneratorBase * wfg);
/**
* \brief
* \return Returns the full path for the file to be written
* if WriteWisdomCache is set to true.
* The file name is based on the naming strategy set
* in SetWisdomFilenameGenerator (defaults to HardwareWisdomFilenameGenerator).
* The file generated by GetWisdomFileDefaultBaseName() (with an "f" suffix for single
* precision wisdom files).
* The environmental variable ITK_FFTW_WISDOM_CACHE_BASE can be used to set
* the base directory name to place the file name specified
* by the GetWisdomFileDefaultBaseName(). The default location is the users
* home account directory.
*/
static std::string
GetWisdomFileDefaultBaseName();
/** Import or export some wisdom for the type double to/from a file */
static bool
ImportWisdomFileDouble(const std::string & fname);
static bool
ExportWisdomFileDouble(const std::string & fname);
/** Import or export some wisdom for the type float to/from a file */
static bool
ImportWisdomFileFloat(const std::string & fname);
static bool
ExportWisdomFileFloat(const std::string & fname);
/** Import or export some wisdom for the type double to/from the default file */
static bool
ImportDefaultWisdomFileDouble();
static bool
ExportDefaultWisdomFileDouble();
/** Import or export some wisdom for the type float to/from the default file */
static bool
ImportDefaultWisdomFileFloat();
static bool
ExportDefaultWisdomFileFloat();
/** Convenience functions to Import/Export both double and float default wisdom files */
static bool
ImportDefaultWisdomFile();
static bool
ExportDefaultWisdomFile();
private:
FFTWGlobalConfiguration(); // This will process env variables
~FFTWGlobalConfiguration() override; // This will write cache file if requested.
/** Return the singleton instance with no reference counting. */
static Pointer
GetInstance();
itkGetGlobalDeclarationMacro(FFTWGlobalConfigurationGlobals, PimplGlobals);
/** This is a singleton pattern New. There will only be ONE
* reference to a FFTWGlobalConfiguration object per process.
* The single instance will be unreferenced when
* the program exits. */
itkFactorylessNewMacro(Self);
static FFTWGlobalConfigurationGlobals * m_PimplGlobals;
std::mutex m_Mutex;
bool m_NewWisdomAvailable{ false };
int m_PlanRigor{ 0 };
bool m_WriteWisdomCache{ false };
bool m_ReadWisdomCache{ true };
std::string m_WisdomCacheBase;
// m_WriteWisdomCache Controls the behavior of default
// wisdom file creation policies.
WisdomFilenameGeneratorBase * m_WisdomFilenameGenerator;
};
} // namespace itk
#endif
#endif
|