"tasks/vision/vscode:/vscode.git/clone" did not exist on "ca7a2e34fecc962f9b977676b947e079c70ef192"
Commit 368f3305 authored by A. Unique TensorFlower's avatar A. Unique TensorFlower
Browse files

Internal change

PiperOrigin-RevId: 438075627
parent b3f57016
......@@ -111,6 +111,14 @@ class Resnet50KerasCoreBenchmark(perfzero_benchmark.PerfZeroBenchmark):
max_wall_time = max(wall_times)
self.report_benchmark(iters=-1, wall_time=max_wall_time)
def benchmark_1_gpu_min_3(self):
num_trials = 3
wall_times = []
for _ in range(num_trials):
wall_times.append(_run_benchmark())
min_wall_time = min(wall_times)
self.report_benchmark(iters=-1, wall_time=min_wall_time)
def benchmark_1_gpu_med_3(self):
num_trials = 3
wall_times = []
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment