Home
last modified time | relevance | path

Searched refs:axpy (Results 1 – 7 of 7) sorted by relevance

/libCEED/julia/LibCEED.jl/docs/src/
H A DCeedVector.md19 LinearAlgebra.axpy!(a::Real, x::CeedVector, y::CeedVector)
/libCEED/julia/LibCEED.jl/src/
H A DCeedVector.jl1 import LinearAlgebra: norm, axpy!
326 axpy!(a::Real, x::CeedVector, y::CeedVector)
331 In order to be consistent with `LinearAlgebra.axpy!`, the arguments are passed in order: `a`,
334 function axpy!(a::Real, x::CeedVector, y::CeedVector)
H A DLibCEED.jl76 axpy!,
/libCEED/python/
H A Dceed_vector.py429 def axpy(self, alpha, x): member in Vector
/libCEED/julia/LibCEED.jl/test/
H A Druntests.jl132 axpy!(alpha, cv2, cv1)
133 axpy!(alpha, w2, w1)
/libCEED/rust/libceed/src/
H A Dvector.rs668 pub fn axpy(mut self, alpha: crate::Scalar, x: &Vector) -> crate::Result<Self> { in axpy() method
/libCEED/python/tests/
H A Dtest-1-vector.py246 y.axpy(-0.5, x)