Skip to content

Commit

Permalink
add benchmarks (#1792)
Browse files Browse the repository at this point in the history
* add benchmarks

* addressing comments
  • Loading branch information
haifeng-jin authored Mar 13, 2024
1 parent 6fab7ee commit 3877ca4
Show file tree
Hide file tree
Showing 2 changed files with 197 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/master.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
"path": "intro_to_keras_for_engineers",
"title": "Introduction to Keras for engineers",
},
{
"path": "benchmarks",
"title": "Keras 3 benchmarks",
},
{
"path": "ecosystem",
"title": "The Keras ecosystem",
Expand Down
193 changes: 193 additions & 0 deletions templates/getting_started/benchmark.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
# Keras 3 benchmarks

We benchmark the three backends of Keras 3
([TensorFlow](https://tensorflow.org/),
[JAX](https://jax.readthedocs.io/en/latest/), [PyTorch](https://pytorch.org/))
alongside native PyTorch implementations ([HuggingFace](https://huggingface.co/)
and [Meta Research](https://github.com/facebookresearch/)) and alongside Keras 2
with TensorFlow. Find code and setup details for reproducing our results
[here](https://github.com/haifeng-jin/keras-benchmarks).

## Models

We chose a set of popular computer vision and natural language processing models
for both generative and non-generative AI tasks. See the table below for our
selections.

**Table 1**: Models used in benchmarking.

| | Non-Generative | Generative |
|:---:|:---:|:---:|
| CV | SegmentAnything<sup>1</sup> | StableDiffusion<sup>2</sup> |
| NLP | BERT<sup>3</sup> | Gemma<sup>4</sup>, Mistral<sup>5</sup> |

We leveraged pre-existing implementations from KerasCV and KerasNLP for the
Keras versions of the models. For native PyTorch, we opted for the most popular
options online:

* BERT, Gemma, Mistral from HuggingFace Transformers
* StableDiffusion from HuggingFace Diffusers
* SegmentAnything from the original PyTorch implementation by Meta Research

We'll refer to this group as "Native PyTorch" in contrast to Keras 3 with
PyTorch backend.

We employed synthetic data for all benchmarks. We used `bfloat16` precision for
all LLM training and inferencing, and LoRA<sup>6</sup> for all LLM training
(fine-tuning). Additionally, we applied `torch.compile()` to compatible native
PyTorch implementations (with the exception of Gemma training and Mistral
training due to incompatibility).

To measure out-of-the-box performance, we use high-level APIs (e.g. `Trainer()`
from HuggingFace, plain PyTorch training loops and Keras `model.fit()`) with as
little configuration as possible. Note that this is quite different from
measuring an optimized implementation for a particular hardware/framework/model
combination.

## Hardware

All benchmarks are done with a single NVIDIA A100 GPU with 40GB of GPU memory on
a Google Cloud Compute Engine of machine type `a2-highgpu-1g` with 12 vCPUs and
85GB host memory.

## Results

Table 2 displays benchmarking results in milliseconds per step. Each step
involves training or predicting on a single data batch. Results are averaged
over 100 steps, excluding the first, which includes model creation and
compilation overhead.

For fair comparison, we use the same batch size across frameworks if it is the
same model and task (fit or predict). However, for different models and tasks,
due to their different sizes and architectures, we use different batch sizes to
avoid either running out of memory (too large) or under GPU utilization (too
small). A too small batch size would also unfairly make PyTorch look slow due to
its Python overhead.

For large language models (Gemma and Mistral), we also used the same batch size
since they are the same model type with similar number of parameters (7B). We
also benchmarked text generation with batch size equal to 1 since it is widely
requested by the users.


**Table 2**: Benchmarking results. The speed is measured in ms/step. Lower is
better.

| | Batch<br>size | Native<br>PyTorch | Keras 2<br>(TensorFlow) | Keras 3<br>(TensorFlow) | Keras 3<br>(JAX) | Keras 3<br>(PyTorch) | Keras 3<br>(best) |
|:---:|---:|---:|---:|---:|---:|---:|---:|
| **SegmentAnything<br>(fit)** | 1 | 1,306.85 | 386.93 | **355.25** | 361.69 | 1,388.87 | **355.25** |
| **SegmentAnything<br>(predict)** | 7 | 2,733.90 | 3,187.09 | 762.67 | **660.16** | 2,973.64 | **660.16** |
| **Stable Diffusion<br>(fit)** | 8 | 481.22 | 1,023.21 | 392.24 | **391.21** | 823.44 | **391.21** |
| **Stable Diffusion<br>(predict)** | 13 | 775.36 | 649.71 | **616.04** | 627.27 | 1,337.17 | **616.04** |
| **BERT<br>(fit)** | 54 | 1,137.57 | 841.84 | **404.17** | 414.26 | 1,320.41 | **404.17** |
| **BERT<br>(predict)** | 531 | 3,837.65 | 965.21 | 962.11 | **865.29** | 3,869.72 | **865.29** |
| **Gemma<br>(fit)** | 8 | 253.95 | NA | **232.52** | 273.67 | 525.15 | **232.52** |
| **Gemma<br>(generate)** | 32 | 2,717.04 | NA | 1,134.91 | **1,128.21** | 7,952.67<sup>*</sup> | **1,128.21** |
| **Gemma<br>(generate)** | 1 | 1,632.66 | NA | 758.57 | **703.46** | 7,649.40<sup>*</sup> | **703.46** |
| **Mistral<br>(fit)** | 8 | 217.56 | NA | **185.92** | 213.22 | 452.12 | **185.92** |
| **Mistral<br>(generate)** | 32 | 1,594.65 | NA | 966.06 | **957.25** | 10,932.59<sup>*</sup> | **957.25** |
| **Mistral<br>(generate)** | 1 | 1,532.63 | NA | 743.28 | **679.30** | 11,054.67<sup>*</sup> | **679.30** |

\* _LLM inference with the PyTorch backend is abnormally slow at this time
because KerasNLP uses static sequence padding, unlike HuggingFace. This will be
addressed soon._

## Discussion

### Key Finding 1: There is no "best" backend

Each of the three backends of Keras offers unique strengths. Crucially, from a
performance standpoint, there's no single backend that consistently outpaces the
others. The fastest backend often depends on your specific model architecture.

This underscores the value of framework optionality when chasing optimal
performance. Keras 3 empowers you to seamlessly switch backends, ensuring you
find the ideal match for your model.

### Key Finding 2: Keras 3 is consistently faster than the reference PyTorch implementations

The following figure compares the best-performing Keras 3 backend for each model
with the corresponding reference native PyTorch implementation. We calculated
the throughput (steps/ms) increase of Keras 3 over native PyTorch from Table 2.
A 100% increase indicates Keras 3 is twice as fast, while 0% means both
frameworks perform equally.

![Figure 1](https://i.imgur.com/3s3RZOx.png)

**Figure 1**: Keras 3 speedup over PyTorch measured in throughput (steps/ms)

Keras 3 with the best-performing backend outperformed the reference native
PyTorch implementations for all the models. Notably, 5 out of 10 tasks
demonstrated speedups exceeding 100%, with a maximum speedup of 340%.

### Key Finding 3: Keras 3 delivers best-in-class "out-of-the-box" performance

All Keras model implementations benchmarked here are plain implementations
without any custom performance optimizations: they represent "out-of-the-box
performance", the kind of performance that any Keras user should expect for
their own models. While, for native PyTorch implementations, more performance
optimizations are expected on the user's side.

Besides the numbers we shared above, we observed a significant performance boost
(over 100%) in HuggingFace Diffusers' StableDiffusion inferencing between
versions `0.3.0` and `0.25.0` (the version used in our benchmarks). Gemma in
HuggingFace Transformers also has a significant improvement from `4.38.1` to
`4.38.2` (the version used in our benchmarks). These performance improvements
underscore HuggingFace's dedicated engineering efforts toward performance
optimization.

Conversely, consider a less manually-optimized model like SegmentAnything, where
we used the implementation provided by the research authors. Here, the
performance gap compared to Keras is wider than most other models.

The takeaway here is that Keras offers exceptional out-of-the-box performance.
You don't have to know all the tricks to make your model run faster.

### Key Finding 4: Keras 3 is faster than Keras 2

We also calculated the throughput (steps/ms) increase of Keras 3 (using its
best-performing backend) over Keras 2 with TensorFlow from Table 1. Results are
shown in the following figure.

![Figrue 2](https://i.imgur.com/BUjRUK1.png)

**Figure 2**: Keras 3 speedup over Keras 2 measured in throughput (steps/ms)

Keras 3 consistently outperformed Keras 2 across all benchmarked models, with
substantial speed increases in many cases. SegmentAnything inference saw a
remarkable 380% boost, StableDiffusion training throughput increased by over
150%, and BERT training throughput rose by over 100%.

Importantly, you would still see a performance boost even if you simply upgrade
to Keras 3 and continue using the TensorFlow backend. This is mainly because
Keras 2 uses more TensorFlow fused ops directly, which may be sub-optimal for
XLA compilation in certain use cases.


## Conclusions

Framework performance depends heavily on the specific model. Keras 3 empowers
you to select the fastest framework for your task – an option almost always to
outperform both Keras 2 and reference PyTorch implementations. Importantly,
Keras 3 models deliver excellent out-of-the-box performance without requiring
complex, low-level optimizations.


## References

<sup>1</sup> Kirillov, Alexander, et al. "Segment anything." ICCV (2023).

<sup>2</sup> Rombach, Robin, et al. "High-resolution image synthesis with
latent diffusion models." CVPR (2022).

<sup>3</sup> Kenton, Jacob, et al. "BERT: Pre-training of Deep Bidirectional
Transformers for Language Understanding." NAACL (2019).

<sup>4</sup> Banks, Jeanine, et al. "Gemma: Introducing new state-of-the-art
open models." The Keyword, Google (2024).

<sup>5</sup> Jiang, Albert Q., et al. "Mistral 7B." arXiv preprint
arXiv:2310.06825 (2023).

<sup>6</sup> Hu, Edward J., et al. "Lora: Low-rank adaptation of large language
models." ICLR (2022).

0 comments on commit 3877ca4

Please sign in to comment.