You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 15, 2025. It is now read-only.
I have searched the EvaDB issues and found no similar questions.
Question
When I set ray to True and gpu_ids to '[0,1,2,3,4,5,6,7]', YOLOv8x is only running on cuda:0 and not using other GPUs. Did I set it up wrong?
I use the EvaDB v0.3.8, and the used queries are as follows:
SET ray=True;
SET gpu_ids='[0,1,2,3,4,5,6,7]';
SET batch_mem_size=300000;
DROPTABLE IF EXISTS NightStreet;
LOAD VIDEO 'benchmark/datasets/video/night-street.mp4'
INTO NightStreet;
DROPTABLE IF EXISTS Yolo;
CREATEFUNCTIONIF NOT EXISTS Yolo
TYPE ultralytics
MODEL 'benchmark/models/yolov8x.pt';
SELECT id, Yolo(data).labels
FROM NightStreet
WHERE ['person', 'car'] <@ Yolo(data).labels;