HomeSort by relevance Sort by last modified time
    Searched defs:incY (Results 1 - 8 of 8) sorted by null

  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicBLAS.java 275 static void validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) {
288 if (incX <= 0 || incY <= 0) {
294 expectedYDim = 1 + (M - 1) * incY;
297 expectedYDim = 1 + (N - 1) * incY;
318 * @param incY The increment for the elements of vector y, must be larger than zero.
320 public void SGEMV(@Transpose int TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) {
321 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY);
324 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, 0, 0);
340 * @param incY The increment for the elements of vector y, must be larger than zero.
342 public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) {
    [all...]
  /frameworks/rs/
rsDefines.h 466 int incY;
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptIntrinsicBLAS.java 282 static void validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) {
295 if (incX <= 0 || incY <= 0) {
301 expectedYDim = 1 + (M - 1) * incY;
304 expectedYDim = 1 + (N - 1) * incY;
325 * @param incY The increment for the elements of vector y, must be larger than zero.
327 public void SGEMV(@Transpose int TransA, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) {
328 validateGEMV(Element.F32(mRS), TransA, A, X, incX, Y, incY);
341 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgemv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, 0, 0, mUseIncSupp);
357 * @param incY The increment for the elements of vector y, must be larger than zero.
359 public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) {
    [all...]
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java 205 private boolean validateGEMV(Element e, int TransA, Allocation A, Allocation X, int incX, Allocation Y, int incY) {
220 if (incX <= 0 || incY <= 0) {
226 expectedYDim = 1 + (M - 1) * incY;
229 expectedYDim = 1 + (N - 1) * incY;
238 private void xGEMV_API_test(int trans, int incX, int incY, ArrayList<Allocation> mMatrix) {
249 if (validateGEMV(elemA, trans, matA, vecX, incX, vecY, incY)) {
252 mBLAS.SGEMV(trans, alphaS, matA, vecX, incX, betaS, vecY, incY);
254 mBLAS.DGEMV(trans, alphaD, matA, vecX, incX, betaD, vecY, incY);
256 mBLAS.CGEMV(trans, alphaC, matA, vecX, incX, betaC, vecY, incY);
258 mBLAS.ZGEMV(trans, alphaZ, matA, vecX, incX, betaZ, vecY, incY);
    [all...]
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 

Completed in 126 milliseconds