Unhide BLAS intrinsics.

Change-Id: I3006d878e68cce833d8f26cb5d8a1a660a6f5565
This commit is contained in:
Tim Murray
2015-04-16 11:15:43 -07:00
parent 3f2631f526
commit ef0e1c6a0c
3 changed files with 112 additions and 2 deletions

View File

@@ -24,7 +24,6 @@ import java.lang.annotation.RetentionPolicy;
*
* BLAS
*
* @hide
**/
public final class ScriptIntrinsicBLAS extends ScriptIntrinsic {
private Allocation mLUT;
@@ -1492,7 +1491,6 @@ public final class ScriptIntrinsicBLAS extends ScriptIntrinsic {
*
* 8-bit GEMM-like operation for neural networks
*
* @hide
**/
public void BNNM(Allocation A, int a_offset, Allocation B, int b_offset, Allocation C, int c_offset, int c_mult) {
validateL3(Element.U8(mRS), NO_TRANSPOSE, TRANSPOSE, 0, A, B, C);