mirror of
https://github.com/huggingface/transformers.git
synced 2025-07-04 05:10:06 +06:00
24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
<!--Copyright 2022 The HuggingFace Team. All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
|
|
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
|
|
-->
|
|
|
|
# Efficient Inference on a Multiple GPUs
|
|
|
|
This document contains information on how to efficiently infer on a multiple GPUs.
|
|
<Tip>
|
|
|
|
Note: A multi GPU setup can use the majority of the strategies described in the [single GPU section](./perf_infer_gpu_one). You must be aware of simple techniques, though, that can be used for a better usage.
|
|
|
|
</Tip>
|
|
|
|
## `BetterTransformer` for faster inference
|
|
|
|
We have recently integrated `BetterTransformer` for faster inference on multi-GPU for text, image and audio models. Check the documentation about this integration [here](https://huggingface.co/docs/optimum/bettertransformer/overview) for more details.
|