summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/integration
diff options
context:
space:
mode:
authorLester Solbakken <lesters@oath.com>2020-11-17 11:18:30 +0100
committerLester Solbakken <lesters@oath.com>2020-11-17 11:18:30 +0100
commit80dd6dd99860aa73b6d88a2d20253e814a4912c2 (patch)
tree16a2c0db4cb4921d7377b0a4e1b4d9d7d11ef576 /config-model/src/test/integration
parente4c14623ad4ecbe6337a49d2176621c528bf7c22 (diff)
Make onnx feature an alias of onnxModel
Diffstat (limited to 'config-model/src/test/integration')
-rw-r--r--config-model/src/test/integration/onnx-model/schemas/test.sd14
1 files changed, 7 insertions, 7 deletions
diff --git a/config-model/src/test/integration/onnx-model/schemas/test.sd b/config-model/src/test/integration/onnx-model/schemas/test.sd
index a87222e77ee..eac6f650fef 100644
--- a/config-model/src/test/integration/onnx-model/schemas/test.sd
+++ b/config-model/src/test/integration/onnx-model/schemas/test.sd
@@ -46,7 +46,7 @@ search test {
expression: tensor(d0[2])(1)
}
first-phase {
- expression: onnxModel(my_model).out{d0:1}
+ expression: onnx(my_model).out{d0:1}
}
}
@@ -61,7 +61,7 @@ search test {
expression: my_function()
}
first-phase {
- expression: onnxModel("files/model.onnx", "path/to/output:1"){d0:1}
+ expression: onnx("files/model.onnx", "path/to/output:1"){d0:1}
}
}
@@ -73,8 +73,8 @@ search test {
expression: 1
}
summary-features {
- onnxModel(another_model).out
- onnxModel("files/summary_model.onnx", "path/to/output:2")
+ onnx(another_model).out
+ onnx("files/summary_model.onnx", "path/to/output:2")
}
}
@@ -83,7 +83,7 @@ search test {
expression: tensor(d0[1],d1[2])(d1)
}
first-phase {
- expression: onnxModel(dynamic_model){d0:0,d1:1}
+ expression: onnx(dynamic_model){d0:0,d1:1}
}
}
@@ -95,7 +95,7 @@ search test {
expression: my_function_2()
}
first-phase {
- expression: onnxModel(dynamic_model){d0:0,d1:2}
+ expression: onnx(dynamic_model){d0:0,d1:2}
}
}
@@ -104,7 +104,7 @@ search test {
expression: tensor(d0[1],d1[2])(d1)
}
first-phase {
- expression: onnxModel(unbound_model){d0:0,d1:1}
+ expression: onnx(unbound_model){d0:0,d1:1}
}
}