mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-05-01 11:07:41 +03:00
Expand packages for tensorflow model training
This commit is contained in:
parent
f553bf0067
commit
123e56467e
@ -18,7 +18,7 @@ FROM deps AS frigate-tensorrt
|
|||||||
ARG PIP_BREAK_SYSTEM_PACKAGES
|
ARG PIP_BREAK_SYSTEM_PACKAGES
|
||||||
|
|
||||||
RUN --mount=type=bind,from=trt-wheels,source=/trt-wheels,target=/deps/trt-wheels \
|
RUN --mount=type=bind,from=trt-wheels,source=/trt-wheels,target=/deps/trt-wheels \
|
||||||
pip3 uninstall -y onnxruntime-openvino \
|
pip3 uninstall -y onnxruntime-openvino tensorflow-cpu \
|
||||||
&& pip3 install -U /deps/trt-wheels/*.whl
|
&& pip3 install -U /deps/trt-wheels/*.whl
|
||||||
|
|
||||||
COPY --from=rootfs / /
|
COPY --from=rootfs / /
|
||||||
|
|||||||
@ -1,12 +1,20 @@
|
|||||||
# NVidia TensorRT Support (amd64 only)
|
# NVidia TensorRT Support (amd64 only)
|
||||||
--extra-index-url 'https://pypi.nvidia.com'
|
--extra-index-url 'https://pypi.nvidia.com'
|
||||||
cython == 3.0.*; platform_machine == 'x86_64'
|
cython==3.0.*; platform_machine == 'x86_64'
|
||||||
nvidia-cuda-runtime-cu12 == 12.1.*; platform_machine == 'x86_64'
|
nvidia_cuda_cupti_cu12==12.5.82; platform_machine == 'x86_64'
|
||||||
nvidia-cublas-cu12==12.6.4.*; platform_machine == 'x86_64'
|
nvidia-cuda-runtime-cu12==12.1.*; platform_machine == 'x86_64'
|
||||||
nvidia-cudnn-cu12 == 9.5.0.*; platform_machine == 'x86_64'
|
nvidia-cublas-cu12==12.5.3.*; platform_machine == 'x86_64'
|
||||||
nvidia-cufft-cu12==11.*; platform_machine == 'x86_64'
|
nvidia-cudnn-cu12==9.3.0.*; platform_machine == 'x86_64'
|
||||||
nvidia-curand-cu12==10.3.9.*; platform_machine == 'x86_64'
|
nvidia-cufft-cu12==11.2.3.*; platform_machine == 'x86_64'
|
||||||
nvidia-cuda-nvrtc-cu12==12.6.*; platform_machine == 'x86_64'
|
nvidia-curand-cu12==10.3.6.*; platform_machine == 'x86_64'
|
||||||
|
nvidia_cuda_nvcc_cu12==12.5.82; platform_machine == 'x86_64'
|
||||||
|
nvidia-cuda-nvrtc-cu12==12.5.82; platform_machine == 'x86_64'
|
||||||
|
nvidia_cuda_runtime_cu12==12.5.82; platform_machine == 'x86_64'
|
||||||
|
nvidia_cusolver_cu12==11.6.3.*; platform_machine == 'x86_64'
|
||||||
|
nvidia_cusparse_cu12==12.5.1.*; platform_machine == 'x86_64'
|
||||||
|
nvidia_nccl_cu12==2.23.4; platform_machine == 'x86_64'
|
||||||
|
nvidia_nvjitlink_cu12==12.5.82; platform_machine == 'x86_64'
|
||||||
|
tensorflow==2.19.*; platform_machine == 'x86_64'
|
||||||
onnx==1.16.*; platform_machine == 'x86_64'
|
onnx==1.16.*; platform_machine == 'x86_64'
|
||||||
onnxruntime-gpu==1.22.*; platform_machine == 'x86_64'
|
onnxruntime-gpu==1.22.*; platform_machine == 'x86_64'
|
||||||
protobuf==3.20.3; platform_machine == 'x86_64'
|
protobuf==3.20.3; platform_machine == 'x86_64'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user