Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kmkolasinski/triton-server-python-backend-bug

A snippet which demonstrates a potential bug in the triton server
https://github.com/kmkolasinski/triton-server-python-backend-bug

Last synced: 8 days ago
JSON representation

A snippet which demonstrates a potential bug in the triton server

Awesome Lists containing this project

README

        

# triton-server-python-backend-bug [**SOLVED**]
A snippet which demonstrates a potential bug in the triton server

**SOLVED**: I was using old version of triton server. The issue is resolved in the latest version `nvcr.io/nvidia/tritonserver:23.12-py3`

## Build and Restart server

```bash
docker compose build && docker compose down && docker compose up
```
Note: docker compose down - resolves the issue with error "ln: failed to create symbolic link '/opt/tritonserver/lib/libnvidia-ml.so.1': File exists" after restarting the server

## Run the client (Python 3.11.4)

Setup environment (example using conda)
```bash
conda create --name=triton-bug python==3.11
conda activate triton-bug
pip install -r requirements.txt
```

Open a new terminal and run the client
```bash

python run_client.py
```