blob: 659cba65adfb3a70da0ccca29f8077fc2542ffb8 [file] [log] [blame]
Kevin Petita7ac3132024-01-08 15:27:25 +00001//
2// This confidential and proprietary software may be used only as
3// authorised by a licensing agreement from ARM Limited
4// (C) COPYRIGHT 2020-2024 ARM Limited
5// ALL RIGHTS RESERVED
6// The entire notice above must be reproduced on all authorised
7// copies and copies may only be made to the extent permitted
8// by a licensing agreement from ARM Limited.
9
10ERROR_IF(shape != broadcast_shape(shape1, shape2));
11for_each(index in shape) {
Eric Kunze526f6c72024-01-12 17:18:42 -080012 shape_t index1 = apply_broadcast(shape, shape1, index);
13 shape_t index2 = apply_broadcast(shape, shape2, index);
Kevin Petita7ac3132024-01-08 15:27:25 +000014 in_out_t value1 = tensor_read<in_out_t>(input1, shape1, index1);
15 in_out_t value2 = tensor_read<in_out_t>(input2, shape2, index2);
16 in_out_t result = apply_min_s(value1, value2);
17 tensor_write<in_out_t>(output, shape, index, result);
18}