Skip to content

Commit

Permalink
fvt: enable torchserve, disable OVMS
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Vasquez <[email protected]>
  • Loading branch information
rafvasq committed Jan 24, 2023
1 parent a73852b commit 8bf62f9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-fvt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
config/default/config-defaults.yaml \
config/runtimes/mlserver-0.x.yaml \
config/runtimes/triton-2.x.yaml \
config/runtimes/ovms-1.x.yaml
config/runtimes/torchserve-0.x.yaml
sed -i 's/memory:.*$/memory: 512Mi/g' \
config/runtimes/mlserver-0.x.yaml \
config/runtimes/triton-2.x.yaml \
config/runtimes/ovms-1.x.yaml
config/runtimes/torchserve-0.x.yaml
sed -i 's/maxSurge:.*$/maxSurge: 0/' config/internal/base/deployment.yaml.tmpl
sed -i 's/maxUnavailable:.*$/maxUnavailable: 100%/' config/internal/base/deployment.yaml.tmpl
echo -e '\n disabled: true' >> config/runtimes/torchserve-0.x.yaml
echo -e '\n disabled: true' >> config/runtimes/ovms-1.x.yaml
- name: Build Controller image
run: |
make build.develop
Expand All @@ -69,7 +69,7 @@ jobs:
run: |
docker pull nvcr.io/nvidia/tritonserver:21.06.1-py3
docker pull seldonio/mlserver:0.5.2
docker pull openvino/model_server:2022.1
# docker pull openvino/model_server:2022.1
docker pull kserve/modelmesh-runtime-adapter
docker pull kserve/rest-proxy
docker pull kserve/modelmesh
Expand Down
18 changes: 9 additions & 9 deletions fvt/predictor/predictor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ var predictorsArray = []FVTPredictor{
differentPredictorName: "onnx",
differentPredictorFilename: "onnx-predictor.yaml",
},
{
predictorName: "openvino",
predictorFilename: "openvino-mnist-predictor.yaml",
currentModelPath: "fvt/openvino/mnist",
updatedModelPath: "fvt/openvino/mnist-dup",
differentPredictorName: "xgboost",
differentPredictorFilename: "xgboost-predictor.yaml",
},
// {
// predictorName: "openvino",
// predictorFilename: "openvino-mnist-predictor.yaml",
// currentModelPath: "fvt/openvino/mnist",
// updatedModelPath: "fvt/openvino/mnist-dup",
// differentPredictorName: "xgboost",
// differentPredictorFilename: "xgboost-predictor.yaml",
// },
{
predictorName: "pytorch-mar",
predictorFilename: "pytorch-mar-predictor.yaml",
Expand Down Expand Up @@ -535,7 +535,7 @@ var _ = Describe("Predictor", func() {
})
})

var _ = Describe("OVMS Inference", Ordered, func() {
var _ = XDescribe("OVMS Inference", Ordered, func() {
var openvinoPredictorObject *unstructured.Unstructured
var openvinoPredictorName string

Expand Down

0 comments on commit 8bf62f9

Please sign in to comment.