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

  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBLAS.cpp 147 enum CBLAS_TRANSPOSE TransA = (enum CBLAS_TRANSPOSE)call->transA;
164 int mStride = (TransA == CblasNoTrans) ? lda : 1;
183 blasFunc(CblasRowMajor, TransA, TransB,
245 enum CBLAS_TRANSPOSE TransA = (enum CBLAS_TRANSPOSE)call->transA;
280 cblas_sgemv(CblasRowMajor, TransA, call->M, call->N, call->alpha.f, (float*)A,
285 cblas_sgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
291 cblas_strmv(CblasRowMajor, Uplo, TransA, Diag, call->N, (float*)A,
296 cblas_stbmv(CblasRowMajor, Uplo, TransA, Diag, call->N, call->K, (float*)A
    [all...]
  /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) {
276 validateTranspose(TransA);
292 if (TransA == NO_TRANSPOSE) {
311 * @param TransA The type of transpose applied to matrix A.
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);
333 * @param TransA The type of transpose applied to matrix A.
342 public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) {
343 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY)
    [all...]
  /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) {
283 validateTranspose(TransA);
299 if (TransA == NO_TRANSPOSE) {
318 * @param TransA The type of transpose applied to matrix A.
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);
350 * @param TransA The type of transpose applied to matrix A.
359 public void DGEMV(@Transpose int TransA, double alpha, Allocation A, Allocation X, int incX, double beta, Allocation Y, int incY) {
360 validateGEMV(Element.F64(mRS), TransA, A, X, incX, Y, incY)
    [all...]
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 

Completed in 126 milliseconds