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

Function cmatrixgemmf

src/ablasf.cpp:354–379  ·  view source on GitHub ↗

Fast kernel -- ALGLIB routine -- 19.01.2010 Bochkanov Sergey *************************************************************************/

Source from the content-addressed store, hash-verified

352 Bochkanov Sergey
353*************************************************************************/
354bool cmatrixgemmf(int m,
355 int n,
356 int k,
357 ap::complex alpha,
358 const ap::complex_2d_array& a,
359 int ia,
360 int ja,
361 int optypea,
362 const ap::complex_2d_array& b,
363 int ib,
364 int jb,
365 int optypeb,
366 ap::complex beta,
367 ap::complex_2d_array& c,
368 int ic,
369 int jc)
370{
371#ifndef ALGLIB_INTERCEPTS_ABLAS
372 bool result;
373
374 result = false;
375 return result;
376#else
377 return ialglib::_i_cmatrixgemmf(m, n, k, alpha, a, ia, ja, optypea, b, ib, jb, optypeb, beta, c, ic, jc);
378#endif
379}
380
381
382

Callers 1

cmatrixgemmkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected