pub unsafe extern "C" fn nn_tensor_concat(
    output: *mut NNTensor,
    n_inputs: i32,
    inputs: *mut *mut NNTensor,
    axis: i32
) -> NNError
Expand description

nn_tensor_concat concatenates all of the given input tensors into the given output tensor.

@output pointer to the output tensor @inputs list of pointers to the input tensors @n_inputs the number of inputs @axis the axis along which to concatenate the inputs

@public @memberof NNTensor @since 2.0