Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ae546f94 authored by Miao Wang's avatar Miao Wang Committed by Gerrit Code Review
Browse files

Merge "[RenderScript] L2 BLAS, fix element type in ZHER"

parents 2478bd52 cc711795
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -961,7 +961,7 @@ public final class ScriptIntrinsicBLAS extends ScriptIntrinsic {
    }
    void ZHER(@Uplo int Uplo, double alpha, Allocation X, int incX, Allocation A) {
        // same as SYR
        int N = validateSYR(Element.F64(mRS), Uplo, X, incX, A);
        int N = validateSYR(Element.F64_2(mRS), Uplo, X, incX, A);
        mRS.nScriptIntrinsicBLAS_Z(getID(mRS), RsBlas_zher, 0, 0, 0, Uplo, 0, 0, N, 0, alpha, 0, X.getID(mRS), 0, 0, 0, A.getID(mRS), incX, 0, 0, 0);
    }
    void ZHPR(@Uplo int Uplo, double alpha, Allocation X, int incX, Allocation Ap) {