HomeSort by relevance Sort by last modified time
    Searched refs:counters_matrix (Results 1 - 2 of 2) sorted by null

  /external/v8/tools/ignition/
bytecode_dispatches_report_test.py 23 counters_matrix, xlabels, ylabels = bdr.build_counters_matrix({
27 self.assertTrue((counters_matrix == [[42, 12, 99],
bytecode_dispatches_report.py 131 counters_matrix = numpy.empty([len(labels), len(labels)], dtype=int)
135 counters_matrix[from_index, to_index] = current_row.get(to_name, 0)
140 counters_matrix = numpy.flipud(counters_matrix)
142 return counters_matrix, xlabels, ylabels
146 counters_matrix, xlabels, ylabels = build_counters_matrix(dispatches_table)
149 counters_matrix,

Completed in 2233 milliseconds