From 75920b1b5993fc653f9935a96f7327ddf14875fb Mon Sep 17 00:00:00 2001 From: Kevin Petit Date: Tue, 23 Jan 2024 19:12:14 +0000 Subject: pseudocode: fix name mismatches with operator arguments in the XML Change either the name in the pseudocode or XML to what feels more "natural" or in line with other related names. Change-Id: Ic12a0418a80642c548c288b6ba26a4603b94fedc Signed-off-by: Kevin Petit --- pseudocode/operators/RECIPROCAL.tosac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pseudocode/operators/RECIPROCAL.tosac') diff --git a/pseudocode/operators/RECIPROCAL.tosac b/pseudocode/operators/RECIPROCAL.tosac index 9bc086b..986462c 100644 --- a/pseudocode/operators/RECIPROCAL.tosac +++ b/pseudocode/operators/RECIPROCAL.tosac @@ -8,7 +8,7 @@ // by a licensing agreement from ARM Limited. for_each(index in shape) { - in_out_t value1 = tensor_read(input1, shape1, index); + in_out_t value1 = tensor_read(input1, shape, index); in_out_t result = 1.0 / value1; tensor_write(output, shape, index, result); } -- cgit v1.2.1