/test/vti/dashboard/src/test/java/com/android/vts/util/ |
D | ProfilingPointSummaryTest.java | 41 private static String[] labels = new String[] {"label1", "label2", "label3"}; field in ProfilingPointSummaryTest 54 String[] labels, long[] values, VtsProfilingRegressionMode regressionMode) { in createProfilingReport() argument 55 List<String> labelList = Arrays.asList(labels); in createProfilingReport() 58 for (int i = 0; i < labels.length; ++i) { in createProfilingReport() 59 StatSummary stat = new StatSummary(labels[i], regressionMode); in createProfilingReport() 61 labelStats.put(labels[i], stat); in createProfilingReport() 80 ProfilingPointSummaryEntity pt = createProfilingReport(labels, values, mode); in setUp() 92 for (String label : labels) { in testHasLabel() 106 for (String label : labels) { in testGetStatSummary() 124 ProfilingPointSummaryEntity pt = createProfilingReport(labels, values, mode); in testIterator() [all …]
|
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | ProfilingPointRunEntity.java | 82 private List<String> labels; field in ProfilingPointRunEntity 117 List<String> labels, in ProfilingPointRunEntity() argument 126 this.labels = labels == null ? null : new ArrayList<>(labels); in ProfilingPointRunEntity() 153 List<String> labels, in ProfilingPointRunEntity() argument 162 this.labels = labels == null ? null : new ArrayList<>(labels); in ProfilingPointRunEntity() 211 this.labels.addAll(partitionedLabelList.get(index)); in saveMultiRow() 216 this.labels = partitionedLabelList.get(index); in saveMultiRow() 238 if (this.labels != null) { in toEntity() 239 profilingRun.setUnindexedProperty(LABELS, this.labels); in toEntity() 277 List<String> labels = null; in fromEntity() local [all …]
|
D | ProfilingPointSummaryEntity.java | 97 private List<String> labels; field in ProfilingPointSummaryEntity 150 List<String> labels, in ProfilingPointSummaryEntity() argument 157 this.labels = labels; in ProfilingPointSummaryEntity() 231 this.labels.clear(); in update() 232 this.labels.addAll(profilingRun.getLabels()); in update() 257 if (this.labels.size() != 0) { in toEntity() 263 for (String label : this.labels) { in toEntity() 272 profilingSummary.setUnindexedProperty(LABELS, this.labels); in toEntity() 323 List<String> labels = new ArrayList<>(); in fromEntity() local 325 labels = (List<String>) e.getProperty(LABELS); in fromEntity() [all …]
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | ProfilingPointSummary.java | 31 private List<String> labels; field in ProfilingPointSummary 41 labels = new ArrayList<>(); in ProfilingPointSummary() 87 labels.add(label); in update() 108 labelIndices.put(label, labels.size()); in updateLabel() 109 labels.add(label); in updateLabel() 138 return labels != null && currentIndex < labels.size(); in iterator() 143 String label = labels.get(currentIndex++); in iterator()
|
D | BoxPlot.java | 49 private List<String> labels; field in BoxPlot 58 this.labels = new ArrayList<>(); in BoxPlot() 138 public void setLabels(List<String> labels) { in setLabels() argument 139 this.labels = labels; in setLabels() 153 for (String label : labels) { in toJson()
|
/test/vts-testcase/performance/binder_throughput_test/ |
D | BinderThroughputBenchmark.py | 70 labels = [] 82 labels.append("%s_thread" % thread) 95 labels, iterations_per_second, x_axis_label="Number of Threads", 101 labels, time_average, x_axis_label="Number of Threads", 106 labels, time_best, x_axis_label="Number of Threads", 110 labels, time_worst, x_axis_label="Number of Threads", 116 labels, time_percentile_50, x_axis_label="Number of Threads", 121 labels, time_percentile_90, x_axis_label="Number of Threads", 126 labels, time_percentile_95, x_axis_label="Number of Threads", 131 labels, time_percentile_99, x_axis_label="Number of Threads",
|
/test/vts-testcase/performance/hwbinder_throughput_test/ |
D | HwBinderThroughputBenchmark.py | 72 labels = [] 84 labels.append("%s_thread" % thread) 97 labels, iterations_per_second, x_axis_label="Number of Threads", 103 labels, time_average, x_axis_label="Number of Threads", 108 labels, time_best, x_axis_label="Number of Threads", 112 labels, time_worst, x_axis_label="Number of Threads", 118 labels, time_percentile_50, x_axis_label="Number of Threads", 123 labels, time_percentile_90, x_axis_label="Number of Threads", 128 labels, time_percentile_95, x_axis_label="Number of Threads", 133 labels, time_percentile_99, x_axis_label="Number of Threads",
|
/test/vti/dashboard/src/main/java/com/android/vts/job/ |
D | VtsPerformanceJobServlet.java | 103 String testName, List<PerformanceSummary> perfSummaries, List<String> labels) { in getPerformanceSummary() argument 114 int colspan = labels.size() * 4; in getPerformanceSummary() 121 for (int i = 0; i < labels.size(); i++) { in getPerformanceSummary() 122 String content = labels.get(i); in getPerformanceSummary() 149 for (int i = 0; i < labels.size(); i++) { in getPerformanceSummary() 263 List<String> labels = new ArrayList<>(); in doPost() local 264 labels.add(""); in doPost() 268 labels.add(perfSummary.label); in doPost() 270 String body = getPerformanceSummary(testKey.getName(), nonEmptySummaries, labels); in doPost()
|
/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsPerformanceJobServletTest.java | 66 String[] labels, long[] values, VtsProfilingRegressionMode regressionMode) { in createProfilingReport() argument 67 List<String> labelList = Arrays.asList(labels); in createProfilingReport() 70 for (int i = 0; i < labels.length; ++i) { in createProfilingReport() 71 StatSummary stat = new StatSummary(labels[i], regressionMode); in createProfilingReport() 73 labelStats.put(labels[i], stat); in createProfilingReport()
|
/test/vts/utils/python/web/ |
D | web_utils.py | 276 labels, argument 313 if labels: 314 profiling_msg.label.extend(labels) 323 labels, argument 344 name, labels, values, ReportMsg.VTS_PROFILING_TYPE_LABELED_VECTOR,
|
/test/mlts/benchmark/src/com/android/nn/benchmark/core/ |
D | TestModelsListLoader.java | 125 String labels = jsonDataset.getString("labels"); in parseJSONModelsList() local 145 new InferenceInOutSequence.FromDataset(inputPath, labels, groundTruth, in parseJSONModelsList()
|
/test/vti/dashboard/src/main/webapp/WEB-INF/jsp/ |
D | show_graph.jsp | 87 * - ticks: an array of strings to use as x-axis labels 88 * - ids: an array of string labels for each point (e.g. the 130 * - ids: an array of string labels for each point (e.g. the
|
/test/vts/proto/ |
D | VtsReportMessage.proto | 57 // for multiple single-type samples with labels. 59 // for multiple single-type samples without labels. 164 // x-axis and y-axis title labels when displaying the data as a graph
|
/test/mlts/benchmark/tools/ |
D | tensor_utils.py | 476 labels = [dump_dir.split('/')[-2] for dump_dir in self.dump_dir_list] 480 axs[1][i].set_title(labels[i]) 487 hist_ax.legend(labels)
|
/test/vti/dashboard/src/main/java/com/android/vts/api/ |
D | TestDataForDevServlet.java | 165 private List<String> labels; field in TestDataForDevServlet.TestReportDataObject.Test.TestRun.Profiling 452 testRunProfile.labels, in doPost()
|
/test/mlts/benchmark/results/ |
D | Chart.bundle.min.js | 10 …labels.length>0&&t[0].index<e.labels.length&&(i=e.labels[t[0].index])),i},label:function(t,e){retu… property
|