Walker test code coverage report
Current view: top level - Control/Options - MKLGaussianMethod.hpp (source / functions) Hit Total Coverage
Commit: test_coverage.info Lines: 13 14 92.9 %
Date: 2022-09-21 18:57:21 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 22 42 52.4 %

           Branch data     Line data    Source code
       1                 :            : // *****************************************************************************
       2                 :            : /*!
       3                 :            :   \file      src/Control/Options/MKLGaussianMethod.hpp
       4                 :            :   \copyright 2012-2015 J. Bakosi,
       5                 :            :              2016-2018 Los Alamos National Security, LLC.,
       6                 :            :              2019-2021 Triad National Security, LLC.
       7                 :            :              All rights reserved. See the LICENSE file for details.
       8                 :            :   \brief     Intel MKL Gaussian RNG method options
       9                 :            :   \details   Intel MKL Gaussian RNG method options
      10                 :            : */
      11                 :            : // *****************************************************************************
      12                 :            : #ifndef MKLGaussianMethodOptions_h
      13                 :            : #define MKLGaussianMethodOptions_h
      14                 :            : 
      15                 :            : #include <map>
      16                 :            : 
      17                 :            : #include <mkl_vsl_defines.h>
      18                 :            : 
      19                 :            : #include <brigand/sequences/list.hpp>
      20                 :            : 
      21                 :            : #include "Toggle.hpp"
      22                 :            : #include "Keywords.hpp"
      23                 :            : #include "PUPUtil.hpp"
      24                 :            : 
      25                 :            : namespace tk {
      26                 :            : namespace ctr {
      27                 :            : 
      28                 :            : //! MKL Gaussian random number generator method types
      29                 :            : enum class MKLGaussianMethodType : uint8_t { BOXMULLER,
      30                 :            :                                              BOXMULLER2,
      31                 :            :                                              ICDF };
      32                 :            : 
      33                 :            : //! \brief Pack/Unpack MKLGaussianMethodType: forward overload to generic enum
      34                 :            : //!   class packer
      35                 :         80 : inline void operator|( PUP::er& p, MKLGaussianMethodType& e )
      36                 :         80 : { PUP::pup( p, e ); }
      37                 :            : 
      38                 :            : //! \brief MKLGaussianMethod options: outsource searches to base templated on
      39                 :            : //!   enum type
      40                 :            : class MKLGaussianMethod : public tk::Toggle< MKLGaussianMethodType > {
      41                 :            : 
      42                 :            :   public:
      43                 :            :     using ParamType = int;
      44                 :            : 
      45                 :            :     //! Valid expected choices to make them also available at compile-time
      46                 :            :     using keywords = brigand::list< kw::boxmuller
      47                 :            :                                   , kw::boxmuller2
      48                 :            :                                   , kw::icdf
      49                 :            :                                   >;
      50                 :            : 
      51                 :            :     //! \brief Options constructor
      52                 :            :     //! \details Simply initialize in-line and pass associations to base, which
      53                 :            :     //!    will handle client interactions
      54                 :        383 :     explicit MKLGaussianMethod() :
      55                 :            :       tk::Toggle< MKLGaussianMethodType >(
      56                 :            :         //! Group, i.e., options, name
      57                 :            :         "Gaussian method",
      58                 :            :         //! Enums -> names
      59         [ +  - ]:        383 :         { { MKLGaussianMethodType::BOXMULLER, kw::boxmuller::name() },
      60         [ +  - ]:        766 :           { MKLGaussianMethodType::BOXMULLER2, kw::boxmuller2::name() },
      61         [ +  - ]:        766 :           { MKLGaussianMethodType::ICDF, kw::icdf::name() } },
      62                 :            :         //! keywords -> Enums
      63                 :          0 :         { { kw::boxmuller::string(), MKLGaussianMethodType::BOXMULLER },
      64         [ +  - ]:        766 :           { kw::boxmuller2::string(), MKLGaussianMethodType::BOXMULLER2 },
      65 [ +  - ][ +  - ]:       4979 :           { kw::icdf::string(), MKLGaussianMethodType::ICDF } } ) {}
         [ +  - ][ +  - ]
         [ +  - ][ +  + ]
         [ +  + ][ +  - ]
         [ -  - ][ -  - ]
      66                 :            : 
      67                 :            :     //! \brief Return parameter based on Enum
      68                 :            :     //! \details Here 'parameter' is the library-specific identifier of the
      69                 :            :     //!    option, i.e., as the library identifies the given option
      70                 :            :     //! \param[in] m Enum value of the option requested
      71                 :            :     //! \return Library-specific parameter of the option
      72                 :       3273 :     const ParamType& param( MKLGaussianMethodType m ) const {
      73                 :            :       using tk::operator<<;
      74         [ +  - ]:       3273 :       auto it = method.find( m );
      75 [ +  + ][ +  - ]:       3273 :       Assert( it != end(method),
         [ +  - ][ +  - ]
         [ +  - ][ +  - ]
      76                 :            :               std::string("Cannot find parameter for MKLGaussianMethod \"")
      77                 :            :               << m << "\"" );
      78                 :       3272 :       return it->second;
      79                 :            :     }
      80                 :            : 
      81                 :            :   private:
      82                 :            :     //! Enums -> MKL VSL RNG GAUSSIAN METHOD parameters
      83                 :            :     std::map< MKLGaussianMethodType, ParamType > method {
      84                 :            :       { MKLGaussianMethodType::BOXMULLER, VSL_RNG_METHOD_GAUSSIAN_BOXMULLER },
      85                 :            :       { MKLGaussianMethodType::BOXMULLER2, VSL_RNG_METHOD_GAUSSIAN_BOXMULLER2 },
      86                 :            :       { MKLGaussianMethodType::ICDF, VSL_RNG_METHOD_GAUSSIAN_ICDF }
      87                 :        383 :     };
      88                 :            : };
      89                 :            : 
      90                 :            : } // ctr::
      91                 :            : } // tk::
      92                 :            : 
      93                 :            : #endif // MKLGaussianMethodOptions_h

Generated by: LCOV version 1.14