HomeSort by relevance Sort by last modified time
    Searched refs:KU (Results 1 - 25 of 38) sorted by null

1 2

  /external/cblas/src/
cblas_dgbmv.c 13 const int KL, const int KU,
26 F77_INT F77_KL=KL,F77_KU=KU;
32 #define F77_KU KU
cblas_sgbmv.c 14 const int KL, const int KU,
27 F77_INT F77_KL=KL,F77_KU=KU;
33 #define F77_KU KU
cblas_cgbmv.c 14 const int KL, const int KU,
27 F77_INT F77_KL=KL,F77_KU=KU;
33 #define F77_KU KU
cblas_zgbmv.c 14 const int KL, const int KU,
27 F77_INT F77_KL=KL,F77_KU=KU;
33 #define F77_KU KU
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java     [all...]
ScriptIntrinsicBLAS.java 400 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
403 * for j in range(max(0, i-kl), min(i+ku+1, n)):
408 * @param KU The number of super-diagonals of the matrix A.
417 public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) {
418 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
420 if (KL < 0 || KU < 0) {
421 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
425 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, A.getID(mRS), X.getID(mRS), beta, Y.getID(mRS), incX, incY, KL, KU);
435 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
438 * for j in range(max(0, i-kl), min(i+ku+1, n))
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
RenderScript.java     [all...]
ScriptIntrinsicBLAS.java 447 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
450 * for j in range(max(0, i-kl), min(i+ku+1, n)):
455 * @param KU The number of super-diagonals of the matrix A.
464 public void SGBMV(@Transpose int TransA, int KL, int KU, float alpha, Allocation A, Allocation X, int incX, float beta, Allocation Y, int incY) {
465 // GBMV has the same validation requirements as GEMV + KL and KU >= 0
467 if (KL < 0 || KU < 0) {
468 throw new RSRuntimeException("KL and KU must be greater than or equal to 0");
482 mRS.nScriptIntrinsicBLAS_Single(getID(mRS), RsBlas_sgbmv, TransA, 0, 0, 0, 0, M, N, 0, alpha, aID, xID, beta, yID, incX, incY, KL, KU, mUseIncSupp);
492 * but only the region M*(KL+KU+1) will be referenced. The following subroutine can is an
495 * for j in range(max(0, i-kl), min(i+ku+1, n))
    [all...]
  /frameworks/rs/cpp/
ScriptIntrinsicBLAS.cpp 52 int M, int N, int K, int incX, int incY, int KL, int KU,
101 call.KU = KU;
110 float beta, RsAllocation C, int incX, int incY, int KL, int KU) {
112 M, N, K, incX, incY, KL, KU, alpha, beta, 0.0, 0.0,
124 double beta, RsAllocation C, int incX, int incY, int KL, int KU) {
126 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, alpha, beta,
137 float betaX, float betaY, RsAllocation C, int incX, int incY, int KL, int KU) {
139 M, N, K, incX, incY, KL, KU, 0.0f, 0.0f, 0.0, 0.0,
150 double betaX, double betaY, RsAllocation C, int incX, int incY, int KL, int KU) {
    [all...]
  /external/cblas/include/
cblas.h 154 const int KL, const int KU, const float alpha,
187 const int KL, const int KU, const double alpha,
220 const int KL, const int KU, const void *alpha,
253 const int KL, const int KU, const void *alpha,
  /frameworks/rs/cpu_ref/
rsCpuBLASDispatch.h 31 const int KL, const int KU, const float alpha,
64 const int KL, const int KU, const double alpha,
97 const int KL, const int KU, const void *alpha,
130 const int KL, const int KU, const void *alpha,
    [all...]
rsCpuIntrinsicBLAS.cpp 285 cblas_sgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
327 cblas_dgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
369 cblas_cgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
411 cblas_zgbmv(CblasRowMajor, TransA, call->M, call->N, call->KL, call->KU,
    [all...]
  /frameworks/rs/
rsDefines.h 468 int KU;
  /external/cblas/testing/
c_cblat2.f 498 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
552 KU = KB( IKU )
553 KL = MAX( KU - 1, 0 )
555 KU = N - 1
560 LDA = KL + KU + 1
576 $ LDA, KL, KU, RESET, TRANSL )
637 KUS = KU
668 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
673 $ KU, ALPHA, AA, LDA, XX,
708 ISAME( 5 ) = KUS.EQ.KU
    [all...]
c_dblat2.f 489 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
543 KU = KB( IKU )
544 KL = MAX( KU - 1, 0 )
546 KU = N - 1
551 LDA = KL + KU + 1
567 $ LDA, KL, KU, RESET, TRANSL )
628 KUS = KU
659 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
664 $ KU, ALPHA, AA, LDA, XX,
698 ISAME( 5 ) = KUS.EQ.KU
    [all...]
c_sblat2.f 489 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
543 KU = KB( IKU )
544 KL = MAX( KU - 1, 0 )
546 KU = N - 1
551 LDA = KL + KU + 1
567 $ LDA, KL, KU, RESET, TRANSL )
628 KUS = KU
659 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
664 $ KU, ALPHA, AA, LDA, XX,
698 ISAME( 5 ) = KUS.EQ.KU
    [all...]
c_zblat2.f 499 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
553 KU = KB( IKU )
554 KL = MAX( KU - 1, 0 )
556 KU = N - 1
561 LDA = KL + KU + 1
577 $ LDA, KL, KU, RESET, TRANSL )
638 KUS = KU
669 $ CTRANS, M, N, KL, KU, ALPHA, LDA,
674 $ KU, ALPHA, AA, LDA, XX,
709 ISAME( 5 ) = KUS.EQ.KU
    [all...]
  /external/eigen/blas/testing/
cblat2.f 473 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
526 KU = KB( IKU )
527 KL = MAX( KU - 1, 0 )
529 KU = N - 1
534 LDA = KL + KU + 1
550 $ LDA, KL, KU, RESET, TRANSL )
604 KUS = KU
635 $ TRANS, M, N, KL, KU, ALPHA, LDA,
639 CALL CGBMV( TRANS, M, N, KL, KU, ALPHA,
674 ISAME( 5 ) = KUS.EQ.KU
    [all...]
dblat2.f 463 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
516 KU = KB( IKU )
517 KL = MAX( KU - 1, 0 )
519 KU = N - 1
524 LDA = KL + KU + 1
540 $ LDA, KL, KU, RESET, TRANSL )
594 KUS = KU
625 $ TRANS, M, N, KL, KU, ALPHA, LDA,
629 CALL DGBMV( TRANS, M, N, KL, KU, ALPHA,
664 ISAME( 5 ) = KUS.EQ.KU
    [all...]
sblat2.f 463 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
516 KU = KB( IKU )
517 KL = MAX( KU - 1, 0 )
519 KU = N - 1
524 LDA = KL + KU + 1
540 $ LDA, KL, KU, RESET, TRANSL )
594 KUS = KU
625 $ TRANS, M, N, KL, KU, ALPHA, LDA,
629 CALL SGBMV( TRANS, M, N, KL, KU, ALPHA,
664 ISAME( 5 ) = KUS.EQ.KU
    [all...]
zblat2.f 475 $ INCYS, IX, IY, KL, KLS, KU, KUS, LAA, LDA,
528 KU = KB( IKU )
529 KL = MAX( KU - 1, 0 )
531 KU = N - 1
536 LDA = KL + KU + 1
552 $ LDA, KL, KU, RESET, TRANSL )
606 KUS = KU
637 $ TRANS, M, N, KL, KU, ALPHA, LDA,
641 CALL ZGBMV( TRANS, M, N, KL, KU, ALPHA,
676 ISAME( 5 ) = KUS.EQ.KU
    [all...]
  /frameworks/base/rs/jni/
android_renderscript_RenderScript.cpp 623 jint KL, jint KU) {
640 call.KU = KU;
656 jint KL, jint KU) {
673 call.KU = KU;
    [all...]
  /frameworks/rs/support/jni/
android_renderscript_RenderScript.cpp 588 jint KL, jint KU, jboolean mUseInc) {
605 call.KU = KU;
628 jint KL, jint KU, jboolean mUseInc) {
645 call.KU = KU;
668 jfloat betaY, jlong C, jint incX, jint incY, jint KL, jint KU, jboolean mUseInc) {
    [all...]
  /frameworks/base/media/tests/contents/media_api/music/
test_amr_ietf.amr 39 1?s??<)???U0X????<?,OG???+4uxkw?**?m>?;.??e??<?>d??B??z?????D?v??gW????Q???<?U??7qNu&?{??????????n??p<$???<4??u?Y???^??P??? D';??< ?I?6y???4??q??y?L@*?w}?|<e9??[???S??????????r? ?<???W%?g-KLo?}?G?@J??b??Z?<[?'??????K???B?j?|???!?`<4???k??3?::??m?O?$?q??`+? <Y??"?EQ?j???????:??6#??<{%????3?????????:DW[????<?i??O0?)DS+?2j??*?n?~????<??C???PT?t?ef?C???c??oA??<?e4?^??iwJ?????ro????Y?y?Z??<?????!?[?h8???@H?J??<N????? G???<??????=l@???<.?????KU?o? ??_???A??,?-@??<???&x??E??NYVr- ?Jo?JO?t?<B-?f???i?$???? *?J???3m?0<?Z???(0??K L??B???C??.c/
230 e??zc?????tw?F????I???`?<?,g??a?{??O3?V?u? ?? ?k??w?<?$g??t??X"x?$0e??u?bc??J?<(?mFe????5???Q????9?a?``<??6fw?7?~?':?*?%?S`??9???<??&c_?kU/???\??bi'uJ??&??<?)6f? T???? ?4~????|?E]?`<?Sl2o?: A?f?_?3??:Z???<6^vf?$?2?{?m?h_???Lt?.???5??<6m.m??-&??gp?R???WC?`<",vxg??v{??'??O?M?8??q???<(c&x?i???"#~??1w?(??pX?D?P<tFxwA??&?????<?!iC???P<?i.y#i??? c^P?@ZT ??lV?L#&?<,YFy?S??"k?9>?Zq>?????|(?"?zP<1}6m?????kP\.I??N?\?H??p<9?&?1??Q?ZB? ??_??1?~?e4&w?<?8Z??k?*???1??<j?d??H???<?hF?S?? ?;:??7Mz?r$?#kI?y?<8>???;e?}
310 ?\?vEGd? ???????*%?<?Z?me?4??:C4"???? S??+??yR??P<"?5>{5?4??*m??c??J?C?C?| ?<[?7?D???z????M???g9R~?m0<&07?P??g?4?\?kt_ P??fc|3&?<?=????????=????e????9Q??<???)b????2g?M0"~|?N??EK?<4? 3K???????T?7??c???D?<(?$?{"=E??o???'??N?c?i?? <Dl??^??U???V?W?j??L\Oo&2i?<m{??lKU?Js6?a?x?Uu?F\[?-??<?3?'??<?+7W? !Xz??Y? H???< ^'7???a?+???@D????,?-?????<)cO?gK%?'?%???Z
357 }K??????+4 ?<B[??Ax??T?f?'??9?5r??f9?<Dm?f?y????;??_??B?jR????vp< ~??i??)b?J??tI??A??Y?x?<D?%O? ?U?IM?j?? ??t?[p??#>/?<?g?0?U?(??%??}???L1ph#?$P<?y?'?a??3?p??c?iF?+8+m?0<>??Q??=+?|-???vx?ol??c0<D?W?????Iz?q?q?m?agd??`*<D^?=?????5f?????[]?Q????<????KU??p0~?!?i???????`<"$'???????{?$t8????&?D?<?B??)s????G2 ??^[0????<;{'??{??n???<???[l_'?m???<?7{/?K??????o?X )??A#??b?<<]?>X???K1v?D?7???z/u7?>?+?<RpO???0???m??lz??Rj??AZ <"??????Z?ZUR?=pv??Q??NP?<??#&X??*?????! 'C4?/<?A&]A.?<]GO?Ea??J?6????&@?_a?? 6t/?P<4V5?*?2???B?6?t?:??? <FF?4?p?????"?T?x?I?P`{???<(Z)W?????:????t??<C?Q ?sD <5?O?o=?P~??z??g{Ei/??>?.p<(>5W???????%k?&Y?y??u??'`<?_???Ic?x?=?????eg??f???p<?W????W??XG2???8M4 ??? ?<z_?vIq?????e???XGg th????<?_?F???tW?38?*?=?v%GS.???<?N?|??Y?2?"??LS??h ?o?`<??"?b???JG????S??=?@???<@?!??????(??3?I?m{#??T???%?<Rq??Ny)v?9?i?oM??o?#????<2r ????|????+?e2T ?Ztn??a6?<m???2?U4?s ?'?/+?KW???6m?<Bl w??E8[^?Cf?&?y?5
399 ???<?lv??????Z?q??No\q?Qt?2l??,?<?d'???????#!??z??=:64?????<?[]???????+9[4??E&???{??&???<D?W'????\?+?[???!??|GYF?c:??<?YZ3?| ??8???[???Jlm??,??"d>@<??gI?P????3h?A?????0pa??<Rdi%[LC??":'C3??f w?(?? ?v?<Li1?(?? *?m?'?????,??=[?@?z?<Xy?O?4 !?.?.??B???T????<NS?k??3????Y?]??-by????U-?@<RT^???T?????#G I ?|? }?? <Rli?? zD?,@C?%?Ke(?Y?Ij??Qp<?b(???g ??Bu2???????M???<?~ ?m???[1??&?OJ?u?i???^p<Pp'O?????,8????1I?r???R'???<????l??-Z????o?????D?C?>?p<??W?N ~M])0i??-?? ??|A`?? <?b?~mL#??[(W??G_L>??;?|?G?9 ?<Tm?V?y?D?d?g%?/?X??????a}B?<R\~Oh????D>??:4E??=?Km.?h??<TT^~??c?L?? ?$eV?? )??j?A ?<Td.???s+??W?k???[ ??x?Xz?!@<TU?>?0?h?ku%???r?*?=,??N <RC??K w??}'R&WY??Yn??P'?0<?C?/????Z??"???d?:??~?@<Rgm??M??(?rD???K??1?f?mM?<H_?2~? ??+?'??3?9&iMk??? c??!p<Rqi????,7"71??N?????@<
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 845 milliseconds

1 2