HomeSort by relevance Sort by last modified time
    Searched full:l2norm (Results 1 - 23 of 23) sorted by null

  /external/tensorflow/tensorflow/contrib/lite/kernels/
l2norm.cc 26 namespace l2norm { namespace in namespace:tflite::ops::builtin
28 // This file has two implementation of L2Norm.
86 } // namespace l2norm
89 static TfLiteRegistration r = {nullptr, nullptr, l2norm::Prepare,
90 l2norm::Eval<l2norm::kReference>};
95 static TfLiteRegistration r = {nullptr, nullptr, l2norm::Prepare,
96 l2norm::Eval<l2norm::kGenericOptimized>};
Android.bp 54 "l2norm.cc",
BUILD 118 "l2norm.cc",
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
verify.rs 77 static bool verify_CMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix) {
90 if (absErr > l2Norm * gAllowedFloatMatError) {
101 static bool verify_SMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix) {
114 if (absErr > l2Norm * gAllowedFloatMatError) {
125 static bool verify_ZMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix) {
138 if (absErr > l2Norm * gAllowedDoubleMatError) {
149 static bool verify_DMatrix(rs_allocation in1, rs_allocation in2, double l2Norm, bool isUpperMatrix) {
162 if (absErr > l2Norm * gAllowedDoubleMatError) {
173 void verifyMatrix(rs_allocation ref_in, rs_allocation tst_in, double l2Norm, bool isUpperMatrix) {
182 valid = verify_CMatrix(ref_in, tst_in, l2Norm, isUpperMatrix)
    [all...]
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...]
  /external/tensorflow/tensorflow/contrib/solvers/python/ops/
util.py 76 def l2norm(v): function
81 norm = l2norm(v)
lanczos.py 138 v_norm = util.l2norm(v)
  /external/vulkan-validation-layers/libs/glm/gtx/
norm.hpp 97 GLM_FUNC_DECL T l2Norm(
104 GLM_FUNC_DECL T l2Norm(
norm.inl 108 GLM_FUNC_QUALIFIER T l2Norm
118 GLM_FUNC_QUALIFIER T l2Norm
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
norm.hpp 97 GLM_FUNC_DECL T l2Norm(
104 GLM_FUNC_DECL T l2Norm(
norm.inl 108 GLM_FUNC_QUALIFIER T l2Norm
118 GLM_FUNC_QUALIFIER T l2Norm
  /external/tensorflow/tensorflow/contrib/solvers/python/kernel_tests/
util_test.py 109 l2norm = util.l2norm(x)
112 self.assertAllClose(l2norm.eval(), x_norm_np)
  /external/tensorflow/tensorflow/contrib/lite/
tflite_static.bp 49 "kernels/l2norm.cc",
  /external/tensorflow/tensorflow/python/ops/
clip_ops.py 87 `t * clip_norm / l2norm(t)`
113 l2norm = math_ops.sqrt(math_ops.reduce_sum(t * t, axes, keepdims=True))
119 intermediate / math_ops.maximum(l2norm, clip_norm), name=name)
132 `global_norm = sqrt(sum([l2norm(t)**2 for t in t_list]))`
189 global_norm = sqrt(sum([l2norm(t)**2 for t in t_list]))
  /external/tensorflow/tensorflow/contrib/lite/testing/
generated_examples_zip_test.cc 65 // L2Norm only supports tensors with 4D or fewer.
75 // L2Norm only works for dim=-1.
250 INSTANTIATE_TESTS(l2norm)
BUILD 34 "l2norm.zip",
generate_examples.py     [all...]
  /frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
SGEMMTest.java 73 float l2Norm = 0.f;
75 l2Norm += input[i] * input[i];
77 return l2Norm;
  /external/tensorflow/tensorflow/contrib/lite/schema/
schema_v0.fbs 77 L2NORM = 21,
schema_v1.fbs 82 L2NORM = 21,
upgrade_schema_test.py 89 "builtin_code": "L2NORM"
upgrade_schema.py 223 "L2NORM": "L2_NORMALIZATION",
  /external/autotest/client/tests/npb/
NPB3.3.tar.gz 

Completed in 829 milliseconds