summaryrefslogtreecommitdiff
path: root/compiler/nnc/tests/acl_soft_backend/models/reshape.prototxt
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/nnc/tests/acl_soft_backend/models/reshape.prototxt')
-rw-r--r--compiler/nnc/tests/acl_soft_backend/models/reshape.prototxt26
1 files changed, 26 insertions, 0 deletions
diff --git a/compiler/nnc/tests/acl_soft_backend/models/reshape.prototxt b/compiler/nnc/tests/acl_soft_backend/models/reshape.prototxt
new file mode 100644
index 000000000..1f48e3972
--- /dev/null
+++ b/compiler/nnc/tests/acl_soft_backend/models/reshape.prototxt
@@ -0,0 +1,26 @@
+name: "RESHAPENET"
+layer {
+ name: "input"
+ type: "Input"
+ top: "data"
+ input_param {
+ shape {
+ dim: 1
+ dim: 3
+ dim: 4
+ dim: 8
+ }
+ }
+}
+layer {
+ name: "reshape"
+ type: "Reshape"
+ bottom: "data"
+ top: "output"
+ reshape_param {
+ shape {
+ dim: 1
+ dim: 96
+ }
+ }
+}