// // 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_add_s(input1[index], input2[index]); }