OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:l2Norm
(Results
1 - 2
of
2
) sorted by null
/frameworks/rs/java/tests/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
SGEMMTest.java
73
float
l2Norm
= 0.f;
75
l2Norm
+= input[i] * input[i];
77
return
l2Norm
;
/cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java
103
double
l2Norm
= 0;
105
l2Norm
+= input[i] * input[i];
107
return
l2Norm
;
111
double
l2Norm
= 0;
113
l2Norm
+= input[i] * input[i];
115
return
l2Norm
;
129
double
l2Norm
;
141
l2Norm
= (l2NormOut < l2NormRef ? l2NormOut : l2NormRef) / size;
151
l2Norm
= (l2NormOut < l2NormRef ? l2NormOut : l2NormRef) / size;
153
mVerify.invoke_verifyMatrix(ref, out,
l2Norm
, isUpperMatrix)
[
all
...]
Completed in 121 milliseconds