@fidecastro thanks for your efforts! I am testing and ran into some issues.
- I setup the vision connector server and when I send prompts through the api, using open-webui in this example, the prompt is sent to the llama binary without quotations and so they are not parsed correctly (I do not get a reply)-

The command works when I manually exit the server and run it directly.
- Due to the Widespread errors with Nvidia's latest GPU drivers 572.*, I have reverted back to older drivers from December and they are on Cuda 12.7 so below the current spec of the Docker stage1 image. I believe it's a safe bet to just revise to use cuda 12.4 (that's what Llama.cpp recommends based on their compiled binaries).
In Dockerfile:
Stage 1: Build environment
ARG BASE_CUDA_DEV_CONTAINER=nvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04
ARG BASE_CUDA_RUN_CONTAINER=nvidia/cuda:12.4.1-cudnn-runtime-ubuntu22.04
- I am in a dual GPU setup with a 3090 + 4090. The build script did not detect both gpus and went to cuda architecture 89 as the hard-coded default and then the image won't run. I went back and changed it in the Dockerfile and build-docker-container.sh to "89;86" and things were fine.
Could something be done to adjust the cuda architecture detection in a multi-gpu setup to mitigate this issue?
Originally posted by @ColumbusAI in #1
Originally posted by @ColumbusAI in #1