|
| 1 | +# function cdotc(n, cx, incx, cy, incy) |
| 2 | +# @ccall libblastrampoline.cdotc_(n::Ref{BlasInt}, cx::Ptr{ComplexF32}, |
| 3 | +# incx::Ref{BlasInt}, |
| 4 | +# cy::Ptr{ComplexF32}, incy::Ref{BlasInt})::ComplexF32 |
| 5 | +# end |
| 6 | + |
| 7 | +# function cdotu(n, cx, incx, cy, incy) |
| 8 | +# @ccall libblastrampoline.cdotu_(n::Ref{BlasInt}, cx::Ptr{ComplexF32}, |
| 9 | +# incx::Ref{BlasInt}, |
| 10 | +# cy::Ptr{ComplexF32}, incy::Ref{BlasInt})::ComplexF32 |
| 11 | +# end |
| 12 | + |
| 13 | +# function zdotc(n, zx, incx, zy, incy) |
| 14 | +# @ccall libblastrampoline.zdotc_(n::Ref{BlasInt}, zx::Ptr{ComplexF64}, |
| 15 | +# incx::Ref{BlasInt}, |
| 16 | +# zy::Ptr{ComplexF64}, incy::Ref{BlasInt})::ComplexF64 |
| 17 | +# end |
| 18 | + |
| 19 | +# function zdotu(n, zx, incx, zy, incy) |
| 20 | +# @ccall libblastrampoline.zdotu_(n::Ref{BlasInt}, zx::Ptr{ComplexF64}, |
| 21 | +# incx::Ref{BlasInt}, |
| 22 | +# zy::Ptr{ComplexF64}, incy::Ref{BlasInt})::ComplexF64 |
| 23 | +# end |
| 24 | + |
1 | 25 | function srotg(a, b, c, s) |
2 | 26 | @ccall libblastrampoline.srotg_(a::Ref{Float32}, b::Ref{Float32}, c::Ref{Float32}, |
3 | 27 | s::Ref{Float32})::Cvoid |
@@ -51,18 +75,6 @@ function ccopy(n, cx, incx, cy, incy) |
51 | 75 | cy::Ptr{ComplexF32}, incy::Ref{BlasInt})::Cvoid |
52 | 76 | end |
53 | 77 |
|
54 | | -function cdotc(n, cx, incx, cy, incy) |
55 | | - @ccall libblastrampoline.cdotc_(n::Ref{BlasInt}, cx::Ptr{ComplexF32}, |
56 | | - incx::Ref{BlasInt}, |
57 | | - cy::Ptr{ComplexF32}, incy::Ref{BlasInt})::ComplexF32 |
58 | | -end |
59 | | - |
60 | | -function cdotu(n, cx, incx, cy, incy) |
61 | | - @ccall libblastrampoline.cdotu_(n::Ref{BlasInt}, cx::Ptr{ComplexF32}, |
62 | | - incx::Ref{BlasInt}, |
63 | | - cy::Ptr{ComplexF32}, incy::Ref{BlasInt})::ComplexF32 |
64 | | -end |
65 | | - |
66 | 78 | function cgbmv(trans, m, n, kl, ku, alpha, a, lda, x, incx, beta, y, incy) |
67 | 79 | @ccall libblastrampoline.cgbmv_(trans::Ref{UInt8}, m::Ref{BlasInt}, n::Ref{BlasInt}, |
68 | 80 | kl::Ref{BlasInt}, |
@@ -879,18 +891,6 @@ function zcopy(n, zx, incx, zy, incy) |
879 | 891 | zy::Ptr{ComplexF64}, incy::Ref{BlasInt})::Cvoid |
880 | 892 | end |
881 | 893 |
|
882 | | -function zdotc(n, zx, incx, zy, incy) |
883 | | - @ccall libblastrampoline.zdotc_(n::Ref{BlasInt}, zx::Ptr{ComplexF64}, |
884 | | - incx::Ref{BlasInt}, |
885 | | - zy::Ptr{ComplexF64}, incy::Ref{BlasInt})::ComplexF64 |
886 | | -end |
887 | | - |
888 | | -function zdotu(n, zx, incx, zy, incy) |
889 | | - @ccall libblastrampoline.zdotu_(n::Ref{BlasInt}, zx::Ptr{ComplexF64}, |
890 | | - incx::Ref{BlasInt}, |
891 | | - zy::Ptr{ComplexF64}, incy::Ref{BlasInt})::ComplexF64 |
892 | | -end |
893 | | - |
894 | 894 | function zdrot(n, zx, incx, zy, incy, c, s) |
895 | 895 | @ccall libblastrampoline.zdrot_(n::Ref{BlasInt}, zx::Ptr{ComplexF64}, |
896 | 896 | incx::Ref{BlasInt}, |
|
0 commit comments