Graphistry Integration¶
Knowledge graph visualization with RAPIDS on GPU 1.
Overview¶
Run Graphistry on GPU 1 while LLM runs on GPU 0.
Basic Usage¶
import os
# LLM on GPU 0
os.environ["CUDA_VISIBLE_DEVICES"] = "0"
from llcuda.server import ServerManager
server = ServerManager()
# Graphistry on GPU 1
os.environ["CUDA_VISIBLE_DEVICES"] = "1"
import graphistry
graphistry.register(api=3)