blob: 3f73c2452a70629db3de8c4be084bbbb882b76c9 [file] [log] [blame]
//
// 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_intdiv_s<size_t>(input1[index], input2[index]);
}