/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | StatSummary.java | 26 private double mean; field in StatSummary 48 double mean, in StatSummary() argument 55 this.mean = mean; in StatSummary() 81 double oldMean = mean; in updateStats() 82 mean = oldMean + (value - oldMean) / n; in updateStats() 83 sumSq = sumSq + (value - mean) * (value - oldMean); in updateStats() 94 double delta = stat.getMean() - mean; in merge() 98 mean = n * recipN * mean + stat.getCount() * recipN * stat.getMean(); in merge() 140 return mean; in getMean()
|
D | BoxPlot.java | 160 Double mean = null; in toJson() local 165 mean = stat.getMean(); in toJson() 172 statSummary.addProperty(MEAN_KEY, mean); in toJson()
|
/test/mlts/benchmark/src/com/android/nn/benchmark/core/ |
D | MeanStdDev.java | 26 public float mean; field in MeanStdDev 29 public MeanStdDev(float mean, float stdDev) { in MeanStdDev() argument 30 this.mean = mean; in MeanStdDev() 35 return value * stdDev + mean; in denormalize()
|
/test/vti/dashboard/src/test/java/com/android/vts/util/ |
D | StatSummaryTest.java | 39 double mean = (n - 1) / 2.0; in testAverage() local 44 assertEquals(mean, test.getMean(), threshold); in testAverage() 88 double mean = sum / n; in testStd() local 91 sumSq += (values[i] - mean) * (values[i] - mean); in testStd()
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_profiling_overview.jsp | 73 stat.mean.toFixed(2) + 79 stat.mean, 80 stat.mean + stat.std, 81 stat.mean - stat.std, 82 stat.mean + stat.std, 83 stat.mean - stat.std,
|
/test/vts/hals/light/bullhead/ |
D | NOTICE | 22 "License" shall mean the terms and conditions for use, reproduction, 25 "Licensor" shall mean the copyright owner or entity authorized by 28 "Legal Entity" shall mean the union of the acting entity and all 36 "You" (or "Your") shall mean an individual or Legal Entity 39 "Source" form shall mean the preferred form for making modifications, 43 "Object" form shall mean any form resulting from mechanical 48 "Work" shall mean the work of authorship, whether in Source or 53 "Derivative Works" shall mean any work, whether in Source or Object 61 "Contribution" shall mean any work of authorship, including 75 "Contributor" shall mean Licensor and any individual or Legal Entity
|
/test/mlts/benchmark/ |
D | LICENSE | 9 "License" shall mean the terms and conditions for use, reproduction, 12 "Licensor" shall mean the copyright owner or entity authorized by 15 "Legal Entity" shall mean the union of the acting entity and all 23 "You" (or "Your") shall mean an individual or Legal Entity 26 "Source" form shall mean the preferred form for making modifications, 30 "Object" form shall mean any form resulting from mechanical 35 "Work" shall mean the work of authorship, whether in Source or 40 "Derivative Works" shall mean any work, whether in Source or Object 48 "Contribution" shall mean any work of authorship, including 62 "Contributor" shall mean Licensor and any individual or Legal Entity
|
/test/mlts/models/ |
D | LICENSE | 9 "License" shall mean the terms and conditions for use, reproduction, 12 "Licensor" shall mean the copyright owner or entity authorized by 15 "Legal Entity" shall mean the union of the acting entity and all 23 "You" (or "Your") shall mean an individual or Legal Entity 26 "Source" form shall mean the preferred form for making modifications, 30 "Object" form shall mean any form resulting from mechanical 35 "Work" shall mean the work of authorship, whether in Source or 40 "Derivative Works" shall mean any work, whether in Source or Object 48 "Contribution" shall mean any work of authorship, including 62 "Contributor" shall mean Licensor and any individual or Legal Entity
|
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | ProfilingPointSummaryEntity.java | 106 private Long mean; field in ProfilingPointSummaryEntity 308 double mean = (double) e.getProperty(MEAN); in fromEntity() local 318 mean, in fromEntity()
|
/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsProfilingStatsJobServletTest.java | 104 Mean mean = new Mean(); in createProfilingRun() local 228 Mean mean = new Mean(); in testNewSummary() local
|
/test/mlts/benchmark/tools/ |
D | tensor_utils.py | 192 'mean': np.mean(diff),
|