OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptIntrinsicBLAS
(Results
1 - 10
of
10
) sorted by null
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
SGEMMTest.java
32
ScriptIntrinsicBLAS
mBLAS;
51
mBLAS =
ScriptIntrinsicBLAS
.create(mRS);
158
mBLAS.SGEMM(
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
213
mBLAS.SGEMM(
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
261
mBLAS.SGEMM(
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
273
mBLAS.SGEMM(
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
ScriptIntrinsicBLAS
.NO_TRANSPOSE
[
all
...]
BNNMTest.java
32
ScriptIntrinsicBLAS
mBLAS;
53
mBLAS =
ScriptIntrinsicBLAS
.create(mRS);
/frameworks/rs/cpp/
ScriptIntrinsicBLAS.cpp
24
//
ScriptIntrinsicBLAS
APIS
25
ScriptIntrinsicBLAS
::
ScriptIntrinsicBLAS
(sp<RS> rs, sp<const Element> e)
30
sp<
ScriptIntrinsicBLAS
>
ScriptIntrinsicBLAS
::create(sp<RS> rs) {
31
return new
ScriptIntrinsicBLAS
(rs, Element::U32(rs));
205
void
ScriptIntrinsicBLAS
::SGEMV(RsBlasTranspose TransA, float alpha, sp<Allocation> A, sp<Allocation> X,
216
void
ScriptIntrinsicBLAS
::DGEMV(RsBlasTranspose TransA, double alpha, sp<Allocation> A, sp<Allocation> X,
227
void
ScriptIntrinsicBLAS
::CGEMV(RsBlasTranspose TransA, Float2 alpha, sp<Allocation> A, sp<Allocation> X,
238
void
ScriptIntrinsicBLAS
::ZGEMV(RsBlasTranspose TransA, Double2 alpha, sp<Allocation> A, sp<Allocation> X
[
all
...]
Android.mk
33
ScriptIntrinsicBLAS
.cpp \
rsCppStructs.h
[
all
...]
/cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java
24
private
ScriptIntrinsicBLAS
mBLAS;
44
private int[] mTranspose = {
ScriptIntrinsicBLAS
.NO_TRANSPOSE,
45
ScriptIntrinsicBLAS
.TRANSPOSE,
46
ScriptIntrinsicBLAS
.CONJ_TRANSPOSE,
49
private int[] mUplo = {
ScriptIntrinsicBLAS
.UPPER,
50
ScriptIntrinsicBLAS
.LOWER,
53
private int[] mDiag = {
ScriptIntrinsicBLAS
.NON_UNIT,
54
ScriptIntrinsicBLAS
.UNIT,
57
private int[] mSide = {
ScriptIntrinsicBLAS
.LEFT,
58
ScriptIntrinsicBLAS
.RIGHT
[
all
...]
BNNMTest.java
145
ScriptIntrinsicBLAS
blas =
ScriptIntrinsicBLAS
.create(mRS);
463
ScriptIntrinsicBLAS
blas =
ScriptIntrinsicBLAS
.create(mRS);
/prebuilts/sdk/renderscript/lib/
javalib.jar
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicBLAS.java
25
*
ScriptIntrinsicBLAS
class provides high performance RenderScript APIs to BLAS.
33
public final class
ScriptIntrinsicBLAS
extends ScriptIntrinsic {
37
private
ScriptIntrinsicBLAS
(long id, RenderScript rs) {
191
* @return
ScriptIntrinsicBLAS
193
public static
ScriptIntrinsicBLAS
create(RenderScript rs) {
199
ScriptIntrinsicBLAS
si = new
ScriptIntrinsicBLAS
(id, rs);
[
all
...]
/frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicBLAS.java
25
*
ScriptIntrinsicBLAS
class provides high performance RenderScript APIs to BLAS.
33
public final class
ScriptIntrinsicBLAS
extends ScriptIntrinsic {
36
private
ScriptIntrinsicBLAS
(long id, RenderScript rs) {
190
* @return
ScriptIntrinsicBLAS
192
public static
ScriptIntrinsicBLAS
create(RenderScript rs) {
194
return new
ScriptIntrinsicBLAS
(id, rs);
[
all
...]
Completed in 380 milliseconds