All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Thresholds.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 
36 namespace blaze {
37 
38 //*************************************************************************************************
51 const size_t DMATDVECMULT_THRESHOLD = 10000UL;
52 //*************************************************************************************************
53 
54 
55 //*************************************************************************************************
68 const size_t TDMATDVECMULT_THRESHOLD = 10000UL;
69 //*************************************************************************************************
70 
71 
72 //*************************************************************************************************
85 const size_t TDVECDMATMULT_THRESHOLD = 10000UL;
86 //*************************************************************************************************
87 
88 
89 //*************************************************************************************************
102 const size_t TDVECTDMATMULT_THRESHOLD = 10000UL;
103 //*************************************************************************************************
104 
105 
106 //*************************************************************************************************
119 const size_t DMATDMATMULT_THRESHOLD = 10000UL;
120 //*************************************************************************************************
121 
122 
123 //*************************************************************************************************
136 const size_t DMATTDMATMULT_THRESHOLD = 10000UL;
137 //*************************************************************************************************
138 
139 
140 //*************************************************************************************************
153 const size_t TDMATDMATMULT_THRESHOLD = 10000UL;
154 //*************************************************************************************************
155 
156 
157 //*************************************************************************************************
170 const size_t TDMATTDMATMULT_THRESHOLD = 10000UL;
171 //*************************************************************************************************
172 
173 } // namespace blaze
const size_t TDMATTDMATMULT_THRESHOLD
Column-major dense matrix/column-major dense matrix multiplication threshold.This setting specifies t...
Definition: Thresholds.h:170
const size_t TDVECTDMATMULT_THRESHOLD
Dense Vector/column-major dense matrix multiplication threshold.This setting specifies the threshold ...
Definition: Thresholds.h:102
const size_t TDMATDMATMULT_THRESHOLD
Column-major dense matrix/row-major dense matrix multiplication threshold.This setting specifies the ...
Definition: Thresholds.h:153
const size_t DMATDMATMULT_THRESHOLD
Row-major dense matrix/row-major dense matrix multiplication threshold.This setting specifies the thr...
Definition: Thresholds.h:119
const size_t TDMATDVECMULT_THRESHOLD
Column-major dense matrix/dense vector multiplication threshold.This setting specifies the threshold ...
Definition: Thresholds.h:68
const size_t DMATTDMATMULT_THRESHOLD
Row-major dense matrix/column-major dense matrix multiplication threshold.This setting specifies the ...
Definition: Thresholds.h:136
const size_t TDVECDMATMULT_THRESHOLD
Dense Vector/row-major dense matrix multiplication threshold.This setting specifies the threshold bet...
Definition: Thresholds.h:85
const size_t DMATDVECMULT_THRESHOLD
Row-major dense matrix/dense vector multiplication threshold.This setting specifies the threshold bet...
Definition: Thresholds.h:51