adli-igc
adli-igc
You have to specify the TCNN_CUDA_ARCHITECTURE as shown in this line of code: ``` if "TCNN_CUDA_ARCHITECTURES" in os.environ and os.environ["TCNN_CUDA_ARCHITECTURES"]: compute_capabilities = [int(x) for x in os.environ["TCNN_CUDA_ARCHITECTURES"].replace(";", ",").split(",")] print(f"Obtained compute...
This is an example of my Dockerfile where i've set the CUDA architecture ``` ARG BASE_IMAGE=nvcr.io/nvidia/pytorch:22.05-py3 FROM $BASE_IMAGE RUN apt-get update -yq --fix-missing \ && DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends...