We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 993a17b commit 2ff350cCopy full SHA for 2ff350c
official/benchmark/keras_imagenet_benchmark.py
@@ -448,6 +448,16 @@ def benchmark_1_gpu_fp16(self):
448
dtype='float16',
449
per_replica_batch_size=256)
450
451
+ def benchmark_1_gpu_fp32(self):
452
+ """Tests Keras model with 1 GPU and fp32."""
453
+ self._setup()
454
+ self._run_and_report_benchmark(
455
+ experiment_name='benchmark_1_gpu_fp32',
456
+ num_gpus=1,
457
+ distribution_strategy='one_device',
458
+ dtype='float32',
459
+ per_replica_batch_size=256)
460
+
461
def benchmark_1_gpu_fp16_128_batch(self):
462
"""Tests Keras model with 1 GPU and fp16."""
463
self._setup()
0 commit comments