Fast kernel -- ALGLIB routine -- 19.01.2010 Bochkanov Sergey *************************************************************************/
| 352 | Bochkanov Sergey |
| 353 | *************************************************************************/ |
| 354 | bool 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 |