rml_op_concat_params

Parameters for the RML_OP_CONCAT operation.

RML_OP_CONCAT operation concatenates a list of tensors along the specified dimension. All tensors MUST have the same shape and type, except for the dimension size of the axis to concatenate on.

API

Graph Manipulation

Items

Name

Type

Description

num_inputs

size_t

The number of input operations.

inputs

rml_op*

A list of operations that outputs tensors containing input data.

axis

rml_op

The axis to stack along.
A negative value means counting dimensions from back. Accepted range is [-R, R-1] where R = rank(inputs[i]).