gatherElements function
Implementation
VARP gatherElements(VARP params, VARP indices, {VARP? axis}) => VARP.fromPointer(
axis == null
? C.mnn_expr_GatherElements(params.ptr, indices.ptr)
: C.mnn_expr_GatherElements_1(params.ptr, indices.ptr, axis.ptr),
);