aboutsummaryrefslogtreecommitdiff
path: root/pseudocode/operators/SUB_SHAPE.tosac
blob: eff2687a2ca34c8679c69195f78d661d53cbf0c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// This confidential and proprietary software may be used only as
// authorised by a licensing agreement from ARM Limited
// (C) COPYRIGHT 2024 ARM Limited
// ALL RIGHTS RESERVED
// The entire notice above must be reproduced on all authorised
// copies and copies may only be made to the extent permitted
// by a licensing agreement from ARM Limited.

ERROR_IF(length(input1) != length(input2));

for(int32_t index=0; index < rank(input1); index++) {
    output[index] = apply_sub_s<size_t>(input1[index], input2[index]);
}