summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/integration/onnx-model/searchdefinitions/test.sd
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/integration/onnx-model/searchdefinitions/test.sd')
-rw-r--r--config-model/src/test/integration/onnx-model/searchdefinitions/test.sd16
1 files changed, 16 insertions, 0 deletions
diff --git a/config-model/src/test/integration/onnx-model/searchdefinitions/test.sd b/config-model/src/test/integration/onnx-model/searchdefinitions/test.sd
index 6e9ba356293..a87222e77ee 100644
--- a/config-model/src/test/integration/onnx-model/searchdefinitions/test.sd
+++ b/config-model/src/test/integration/onnx-model/searchdefinitions/test.sd
@@ -35,6 +35,12 @@ search test {
output output: my_output
}
+ onnx-model unbound_model {
+ file: files/unbound_model.onnx
+ input input: my_function
+ output output: my_output
+ }
+
rank-profile test_model_config {
function my_function() {
expression: tensor(d0[2])(1)
@@ -93,4 +99,14 @@ search test {
}
}
+ rank-profile test_unbound_model {
+ function my_function() {
+ expression: tensor(d0[1],d1[2])(d1)
+ }
+ first-phase {
+ expression: onnxModel(unbound_model){d0:0,d1:1}
+ }
+ }
+
+
}