Skip to content

An example of running a pytorch-geometric graph attention model in nvidia triton.

License

Notifications You must be signed in to change notification settings

lgray/triton-torchgeo-gat-example

Repository files navigation

triton-torchgeo-gat-example

An example of running a pytorch-geometric graph attention model in nvidia triton.

NB: This works on Windows Subsystem for Linux 2 and Linux. Docker for Windows and MacOSX do not function well or at all.

NVIDIA Triton is an engine for running inference as a service, it handles load balancing, model replication, model versioning, and batching. Client code need only send data to the service endpoint (i.e. model) and it will receive the model predictions back from the server, without any need for a heavy ML framework at the client.

A user can interact with triton as depicted in the following diagram: nvidia triton interaction pattern

There can be multiple clients of multiple types making requests for inference of some specified model(s). Those requests are deferred to a computing cluster dedicated to running AI inference that is connected to a library of models that can be loaded or unloaded as needed.

Graph neural networks using the pytorch geometric library are now able to be deployed on triton and this repository aims to be an example of how to setup the various containers needed to do that. It uses a fast-training, self-contained model as demonstration, but all the pieces here can be used to deploy much more complex and purpose specific models.

Requirements:

Use:

./build-images.sh # to build the various triton images
./start.sh # (or ./start_gpu.sh) to run dockerized tests
./cleanup.sh # to clean up the docker containers and networks

Generating and running using a singularity container:

Note: These instructions require docker to be available on the machine, but the singularity images can then be moved anywhere.

./build-images.sh # to build the triton containers in docker
./make-singularity.sh # to build singularity triton containers from the docker triton containers
./start-singularity.sh # to run the freshly made singularity triton containers in a test
./cleanup-singularity.sh # to clean up the singularity triton containers

How to substitute in your own model:

(assuming your model training is separate from container generation)

  1. Train your model and then save it using TorchScript's jit. See here for details on how to tweak your Pytorch-Geometric model for torch scripting (it is very easy and backwards compatible with saved weights from previous trainings).
  2. In Dockerfile.build remove the lines:
RUN git clone https://github.com/rusty1s/pytorch_geometric.git

RUN pushd pytorch_geometric && pip install -e . && popd

RUN pushd pytorch_geometric/examples/jit &&\
    echo "torch.jit.save(model, 'gat_test.pt')" >> gat.py &&\
    python gat.py &&\
    mv gat_test.pt /workspace/model.pt

and also remove the line:

COPY --from=builder /workspace/model.pt /opt/tritonserver/model.pt
  1. You'll need to create a "model config" to describe the input and output tensor shapes. You can see an example of this for a pytorch model in this repository's config.pbtxt. You can find more documentation on how to write the model config here. Warning - right now GNNs can only use a batch size of zero! This will be fixed in due time.
  2. in build-images.sh you can remove the lines:
docker run -d --name triton_server_temp \
       --shm-size=1g --ulimit memlock=-1 \
       --ulimit stack=67108864 \
       -p8000:8000 -p8001:8001 -p8002:8002 \
       local/gat_test_server:latest

and

docker stop triton_server_temp
docker rm triton_server_temp

and then replace the lines:

mkdir -p ./models/gat_test/1

cp config.pbtxt models/gat_test/
docker cp triton_server_temp:/opt/tritonserver/model.pt models/gat_test/1/

with

mkdir -p ./models/<your model's name>/1

cp yourmodel_config.pbtxt models/<your model's name>/config.pbtxt
cp yourmodel.pt models/<your model's name>/1/model.pt # a .pt file is a saved TorchScript jit file
  1. Modify client.py to supply the correct data for your model, and modify start[_gpu].sh to mount any directories containing data you want to read into the model. You should also adjust the arguments to client.py to call the correct model!

About

An example of running a pytorch-geometric graph attention model in nvidia triton.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published