aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2021-09-30 16:05:03 +0200
committerLester Solbakken <lesters@oath.com>2021-09-30 16:05:03 +0200
commit387da217a9eb2a6f88b50f3608659a7d75c66aeb (patch)
treefbc82d6cb6add5d599425191cfc994c454fea4a6 /searchcore
parent2f5a11f868291b34a3aa2c28817b36c5d0ed3d52 (diff)
Add parsing of ONNX Runtime session options to services.xml
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/config/onnx-models.def17
1 files changed, 10 insertions, 7 deletions
diff --git a/searchcore/src/vespa/searchcore/config/onnx-models.def b/searchcore/src/vespa/searchcore/config/onnx-models.def
index 33ea90002c8..2c87a5a78ad 100644
--- a/searchcore/src/vespa/searchcore/config/onnx-models.def
+++ b/searchcore/src/vespa/searchcore/config/onnx-models.def
@@ -1,10 +1,13 @@
# Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
namespace=vespa.config.search.core
-model[].name string
-model[].fileref file
-model[].input[].name string
-model[].input[].source string
-model[].output[].name string
-model[].output[].as string
-model[].dry_run_on_setup bool default=false
+model[].name string
+model[].fileref file
+model[].input[].name string
+model[].input[].source string
+model[].output[].name string
+model[].output[].as string
+model[].dry_run_on_setup bool default=false
+model[].stateless_execution_mode string default=""
+model[].stateless_interop_threads int default=-1
+model[].stateless_intraop_threads int default=-1