Returns block size - subdivision size where cache-oblivious soubroutines switch to the optimized kernel. INPUT PARAMETERS A - real matrix, is passed to ensure that we didn't split complex matrix using real splitting subroutine. matrix itself is not changed. -- ALGLIB routine -- 15.12.2009 Bochkanov Sergey *********************************************
| 194 | Bochkanov Sergey |
| 195 | *************************************************************************/ |
| 196 | int ablasblocksize(const ap::real_2d_array& a) |
| 197 | { |
| 198 | int result; |
| 199 | |
| 200 | result = 32; |
| 201 | return result; |
| 202 | } |
| 203 | |
| 204 | |
| 205 | /************************************************************************* |
no outgoing calls
no test coverage detected