From 166b402861eaa85ef308c2c6d867d2a2e9263834 Mon Sep 17 00:00:00 2001 From: Miao Wang Date: Thu, 6 Oct 2016 10:45:42 -0700 Subject: [PATCH] Correctly pass number of input allocations for BLAS Bug: 31992305 Test: Build and CTS RsBlas test pass on Angler. Change-Id: If49c0be003d9c2a2175924dc3303703b9ab49357 (cherry picked from commit b742fcc808165fbeeb1a48761e7d629f60207de2) --- rs/jni/android_renderscript_RenderScript.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs/jni/android_renderscript_RenderScript.cpp b/rs/jni/android_renderscript_RenderScript.cpp index aa2a607dc702..37cbd31fdb75 100644 --- a/rs/jni/android_renderscript_RenderScript.cpp +++ b/rs/jni/android_renderscript_RenderScript.cpp @@ -632,7 +632,7 @@ nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong id, ji in_allocs[2] = (RsAllocation)C; rsScriptForEachMulti((RsContext)con, (RsScript)id, 0, - in_allocs, sizeof(in_allocs), nullptr, + in_allocs, NELEM(in_allocs), nullptr, &call, sizeof(call), nullptr, 0); } -- 2.11.0