| 932 | } |
| 933 | |
| 934 | void |
| 935 | ::clMath::blas::gerc( |
| 936 | clblasOrder order, |
| 937 | size_t M, |
| 938 | size_t N, |
| 939 | FloatComplex alpha, |
| 940 | FloatComplex *x, |
| 941 | size_t offx, |
| 942 | int incx, |
| 943 | FloatComplex *y, |
| 944 | size_t offy, |
| 945 | int incy, |
| 946 | FloatComplex *A, |
| 947 | size_t offa, |
| 948 | size_t lda) |
| 949 | { |
| 950 | blasCgerc( order, M, N, alpha, x, offx, incx, y, offy, incy , A, offa, lda ); |
| 951 | } |
| 952 | |
| 953 | |
| 954 | void |