MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / ablascomplexsplitlength

Function ablascomplexsplitlength

src/ablas.cpp:166–180  ·  view source on GitHub ↗

Complex ABLASSplitLength -- ALGLIB routine -- 15.12.2009 Bochkanov Sergey *************************************************************************/

Source from the content-addressed store, hash-verified

164 Bochkanov Sergey
165*************************************************************************/
166void ablascomplexsplitlength(const ap::complex_2d_array& a,
167 int n,
168 int& n1,
169 int& n2)
170{
171
172 if( n>ablascomplexblocksize(a) )
173 {
174 ablasinternalsplitlength(n, ablascomplexblocksize(a), n1, n2);
175 }
176 else
177 {
178 ablasinternalsplitlength(n, ablasmicroblocksize(), n1, n2);
179 }
180}
181
182
183/*************************************************************************

Callers 5

cmatrixtransposeFunction · 0.85
cmatrixrighttrsmFunction · 0.85
cmatrixlefttrsmFunction · 0.85
cmatrixsyrkFunction · 0.85
cmatrixgemmFunction · 0.85

Calls 3

ablascomplexblocksizeFunction · 0.85
ablasinternalsplitlengthFunction · 0.85
ablasmicroblocksizeFunction · 0.85

Tested by

no test coverage detected