Lines Matching full:bits
64 def RunBenchmarkAndReportResult(self, bits):
68 bits: integer (32 or 64), the number of bits in a word chosen
82 result = self.RunBenchmark(bits, thread)
95 "binder_throughput_iterations_per_second_%sbits" % bits,
101 "binder_throughput_time_average_ns_%sbits" % bits,
106 "binder_throughput_time_best_ns_%sbits" % bits,
110 "binder_throughput_time_worst_ns_%sbits" % bits,
116 "binder_throughput_time_50percentile_ns_%sbits" % bits,
121 "binder_throughput_time_90percentile_ns_%sbits" % bits,
126 "binder_throughput_time_95percentile_ns_%sbits" % bits,
131 "binder_throughput_time_99percentile_ns_%sbits" % bits,
136 def RunBenchmark(self, bits, threads):
140 bits: integer (32 or 64), the number of bits in a word chosen
150 logging.info("Start to run the benchmark (%s bit mode)", bits)
151 binary = "/data/local/tmp/%s/binderThroughputTest%s" % (bits, bits)
157 "$LD_LIBRARY_PATH %s -w %s" % (bits, bits, binary, threads)])
167 "testRunBenchmark%sBit(%s thread) failed." % (bits, threads))