文章目录
- 过程
- SDXL TensorRT构建
- SDXL TensorRT LCM 调度器
过程
docker push kevinchina/deeplearning:cuda12.1torch2.1.1
FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04
ENV DEBIAN_FRONTEND=noninteractive# 安装基本软件包
RUN apt-get update && \apt-get upgrade -y && \apt-get -y --no-install-recommends install vim wget curl git build-essential python3.10 python3-pip python3.10-venv sudo && \update-alternatives --install /usr/bin/python python /usr/bin/python3.10 1