aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerry Ge <jerry.ge@arm.com>2024-03-19 21:28:14 +0000
committerJerry Ge <jerry.ge@arm.com>2024-03-20 15:32:13 +0000
commit44d13fbf1f29a08c5cba249b35460114c0e02cd6 (patch)
tree535e0ef06d7f7278a89cc1e2c005b9cd6de80bdd
parentdd975b842f5220b57090aacf1845f4ed669182b7 (diff)
downloadreference_model-44d13fbf1f29a08c5cba249b35460114c0e02cd6.tar.gz
Fix writeVariableTensors error in example runs
- The desc.json file for variable examples are missing the variable_name and variable_file fields - Add those missing fields to silence the error Signed-off-by: Jerry Ge <jerry.ge@arm.com> Change-Id: Ia391d308849efd4111aff98500775ad0f3e741ac
-rw-r--r--examples/test_lstm_stateful_13x21x3_f32/flatbuffer-tflite/desc.json8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/test_lstm_stateful_13x21x3_f32/flatbuffer-tflite/desc.json b/examples/test_lstm_stateful_13x21x3_f32/flatbuffer-tflite/desc.json
index 7fa53d0..c49a17c 100644
--- a/examples/test_lstm_stateful_13x21x3_f32/flatbuffer-tflite/desc.json
+++ b/examples/test_lstm_stateful_13x21x3_f32/flatbuffer-tflite/desc.json
@@ -12,5 +12,13 @@
"ofm_file": [
"ref_model_output_0.npy"
],
+ "variable_name": [
+ "Variable_0",
+ "Variable_1"
+ ],
+ "variable_file": [
+ "variable_output_0.npy",
+ "variable_output_1.npy"
+ ],
"expected_failure": false
} \ No newline at end of file