aboutsummaryrefslogtreecommitdiff
path: root/reference_model/include
diff options
context:
space:
mode:
authorGrant Watson <grant.watson@arm.com>2023-06-23 16:52:12 +0100
committerEric Kunze <eric.kunze@arm.com>2023-06-26 15:44:59 +0000
commiteb74106e1bc52127e5631736e10e8f8b0b7a1d07 (patch)
tree1e5b4286ca1c55eb37bd3ce3a80669b420a4299b /reference_model/include
parentfe36fa9f38824d03250393488fe468b7dacc72ed (diff)
downloadreference_model-eb74106e1bc52127e5631736e10e8f8b0b7a1d07.tar.gz
Upgrade to latest version of TOSA specification
Signed-off-by: Grant Watson <grant.watson@arm.com> Change-Id: I1296f968baca335ea88691bc973e2d01b2aa2c5b
Diffstat (limited to 'reference_model/include')
-rw-r--r--reference_model/include/operators.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/reference_model/include/operators.h b/reference_model/include/operators.h
index 6e21e95..6efb655 100644
--- a/reference_model/include/operators.h
+++ b/reference_model/include/operators.h
@@ -130,9 +130,7 @@ extern "C"
tosa_status_t tosa_run_transpose_conv2d(tosa_tensor_t client_input,
tosa_tensor_t client_weight,
tosa_tensor_t client_bias,
- const int32_t client_out_pad[4],
const int32_t client_stride[2],
- const int32_t client_out_shape[4],
const int32_t client_input_zp,
const int32_t client_weight_zp,
const int32_t client_pad_len,
@@ -196,7 +194,7 @@ extern "C"
tosa_status_t tosa_run_mul(tosa_tensor_t client_input1,
tosa_tensor_t client_input2,
- const uint8_t client_shift,
+ const int32_t client_shift,
tosa_tensor_t client_output);
tosa_status_t tosa_run_pow(tosa_tensor_t client_input1, tosa_tensor_t client_input2, tosa_tensor_t client_output);
@@ -288,8 +286,6 @@ extern "C"
tosa_tensor_t client_output);
tosa_status_t tosa_run_tile(tosa_tensor_t client_input1,
- const int32_t client_multiplies_len,
- const int32_t client_multiplies[],
const int32_t client_multiples_len,
const int32_t client_multiples[],
tosa_tensor_t client_output);
@@ -323,7 +319,7 @@ extern "C"
const int32_t client_multiplier_len,
const int32_t client_multiplier[],
const int32_t client_shift_len,
- const uint8_t client_shift[],
+ const int32_t client_shift[],
const bool client_scale32,
const bool client_double_round,
const bool client_per_channel);