Giter Club home page Giter Club logo

Comments (2)

dosubot avatar dosubot commented on September 17, 2024 3

Hello, @RuiqingGuo! I'm here to help you with any bugs, questions, or contributions you may have. Let's tackle this issue together!

Yes, there is support for embedding model parallelism across multiple GPUs when using the semantic splitter from LlamaIndex for document segmentation. The provided code includes configurations for tensor parallelism (tp_size) and pipeline parallelism (pp_size), which are used to distribute the model across multiple GPUs.

tp_size = config["builder_config"]["tensor_parallel"]
pp_size = config["builder_config"]["pipeline_parallel"]
world_size = tp_size * pp_size
assert (
    world_size == tensorrt_llm.mpi_world_size()
), f"Engine world size ({world_size}) != Runtime world size ({tensorrt_llm.mpi_world_size()})"

However, it is noted that the Python runtime does not support pipeline parallelism:

assert (
    pp_size == 1
), "Python runtime does not support pipeline parallelism"

This means that while tensor parallelism is supported, pipeline parallelism is not supported in the Python runtime [1].

Additionally, the HuggingFaceEmbedding model does not include explicit handling for multi-GPU setups. The _device attribute is set to a single device, and the model is moved to this single device:

self._device = device or infer_torch_device()
self._model = model.to(self._device)

This indicates that the current implementation does not support distributing the model across multiple GPUs [2].

For better multi-GPU support, consider using alternative embedding models such as OptimumEmbedding, OpenVINOEmbedding, TogetherEmbedding, IpexLLMEmbedding, OctoAIEmbedding, VoyageEmbedding, or GradientEmbedding [3][4].

To continue talking to Dosu, mention @dosu.

from llama_index.

thorory avatar thorory commented on September 17, 2024

i meet the same problem with a large pdf(260 pages).

when I use SimpleDirectoryReader, it returns documents for every page. And then SemanticSplitterNodeParser can embed the text. However, when I use my own OCR and put all the content in one string, the SemanticSplitterNodeParser get OOM

from llama_index.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.