Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use different tags for GPU versions of serverless functions #7215

Merged
merged 1 commit into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog.d/20231204_124652_roman.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
### Changed

- GPU versions of serverless functions now use the `latest-gpu` Docker tag
rather than `latest`
(<https://github.com/opencv/cvat/pull/7215>)
2 changes: 1 addition & 1 deletion serverless/onnx/WongKinYiu/yolov7/nuclio/function-gpu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ spec:
handler: main:handler
eventTimeout: 30s
build:
image: cvat.onnx.wongkinyiu.yolov7
image: cvat.onnx.wongkinyiu.yolov7:latest-gpu
bsekachev marked this conversation as resolved.
Show resolved Hide resolved
baseImage: nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04

directives:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
value: /opt/nuclio/trans-t

build:
image: cvat.pth.dschoerk.transt
image: cvat.pth.dschoerk.transt:latest-gpu
baseImage: nvidia/cuda:11.7.1-devel-ubuntu20.04

directives:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ spec:
eventTimeout: 30s

build:
image: cvat.pth.facebookresearch.detectron2.retinanet_r101
image: cvat.pth.facebookresearch.detectron2.retinanet_r101:latest-gpu
baseImage: ubuntu:20.04

directives:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
value: /opt/nuclio/sam

build:
image: cvat.pth.facebookresearch.sam.vit_h
image: cvat.pth.facebookresearch.sam.vit_h:latest-gpu
baseImage: ubuntu:22.04

directives:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
value: /opt/nuclio/SiamMask:/opt/nuclio/SiamMask/experiments/siammask_sharp

build:
image: cvat.pth.foolwood.siammask
image: cvat.pth.foolwood.siammask:latest-gpu
baseImage: nvidia/cuda:11.1.1-devel-ubuntu20.04

directives:
Expand Down
2 changes: 1 addition & 1 deletion serverless/pytorch/saic-vul/hrnet/nuclio/function-gpu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
value: /opt/nuclio/hrnet

build:
image: cvat.pth.saic-vul.hrnet
image: cvat.pth.saic-vul.hrnet:latest-gpu
baseImage: ubuntu:20.04

directives:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ spec:
eventTimeout: 30s

build:
image: cvat.tf.faster_rcnn_inception_v2_coco
image: cvat.tf.faster_rcnn_inception_v2_coco:latest-gpu
baseImage: tensorflow/tensorflow:2.1.1-gpu

directives:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ spec:
- name: MASK_RCNN_DIR
value: /opt/nuclio/Mask_RCNN
build:
image: cvat.tf.matterport.mask_rcnn
image: cvat.tf.matterport.mask_rcnn:latest-gpu
baseImage: tensorflow/tensorflow:1.15.5-gpu-py3
directives:
postCopy:
Expand Down
Loading