gemini-code-assist[bot] commented on code in PR #19738: URL: https://github.com/apache/tvm/pull/19738#discussion_r3399680258
########## docker/install/ubuntu_install_cuda_python.sh: ########## @@ -20,4 +20,4 @@ set -e set -u set -o pipefail -uv pip install cuda-python==12.8.0 +uv pip install cuda-python==12.9.4 Review Comment:  There is a version mismatch between the updated `cuda-python==12.9.4` and the CUDA base image `nvidia/cuda:12.8.1-cudnn-devel-ubuntu22.04` specified in `docker/Dockerfile.ci_gpu`. Installing a version of `cuda-python` that is newer than the system CUDA Toolkit version often leads to runtime errors (such as missing library symbols or compatibility issues) when Python attempts to interface with the CUDA driver and runtime libraries. To resolve this inconsistency, the CUDA base image in `docker/Dockerfile.ci_gpu` needs to be updated to a 12.9.x version as well. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
