aboutsummaryrefslogtreecommitdiff
path: root/reference_model/include
diff options
context:
space:
mode:
authorJiacheng Liang <jiacheng.liang@arm.com>2023-07-27 16:50:15 +0100
committerEric Kunze <eric.kunze@arm.com>2023-07-31 15:38:01 +0000
commited1a15b641128e38e6efc9128e7cff97b782446d (patch)
treeb4faaa1b57b4c07fc7b34fba44577d6fe4f26850 /reference_model/include
parente5cabbf7528849aac35b498ce0711a144c1a08d5 (diff)
downloadreference_model-ed1a15b641128e38e6efc9128e7cff97b782446d.tar.gz
Fixed missing tensor inputs in fully_connected in model runner
Signed-off-by: Jiacheng Liang <jiacheng.liang@arm.com> Change-Id: I473adc1525319b5574ee0e36d10a530277d9215d
Diffstat (limited to 'reference_model/include')
-rw-r--r--reference_model/include/operators.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/reference_model/include/operators.h b/reference_model/include/operators.h
index b12604f..6b4ec58 100644
--- a/reference_model/include/operators.h
+++ b/reference_model/include/operators.h
@@ -109,6 +109,8 @@ extern "C"
tosa_tensor_t client_output);
tosa_status_t tosa_run_fully_connected(tosa_tensor_t client_input,
+ tosa_tensor_t client_weight,
+ tosa_tensor_t client_bias,
const int32_t client_input_zp,
const int32_t client_weight_zp,
tosa_tensor_t client_output);