Blaze  3.6
ReductionFlag.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_REDUCTIONFLAG_H_
36 #define _BLAZE_MATH_REDUCTIONFLAG_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
43 #include <blaze/util/Types.h>
44 
45 
46 namespace blaze {
47 
48 //=================================================================================================
49 //
50 // REDUCTION FLAGS
51 //
52 //=================================================================================================
53 
54 //*************************************************************************************************
70 constexpr size_t rowwise = 1UL;
71 //*************************************************************************************************
72 
73 
74 //*************************************************************************************************
90 constexpr size_t columnwise = 0UL;
91 //*************************************************************************************************
92 
93 } // namespace blaze
94 
95 #endif
Header file for basic type definitions.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr size_t columnwise
Reduction flag for column-wise reduction operations.
Definition: ReductionFlag.h:90
constexpr size_t rowwise
Reduction flag for row-wise reduction operations.
Definition: ReductionFlag.h:70