\brief Add a concatenation layer to the network. \param inputs The input tensors to the layer. \param nbInputs The number of input tensors. \see IConcatenationLayer \return The new concatenation layer, or nullptr if it could not be created. \warning All tensors must have the same dimensions except along the concatenation axis.
| 7077 | //! \warning All tensors must have the same dimensions except along the concatenation axis. |
| 7078 | //! |
| 7079 | IConcatenationLayer* addConcatenation(ITensor* const* inputs, int32_t nbInputs) noexcept |
| 7080 | { |
| 7081 | return mImpl->addConcatenation(inputs, nbInputs); |
| 7082 | } |
| 7083 | |
| 7084 | //! |
| 7085 | //! \brief Add a deconvolution layer to the network. |
no outgoing calls
no test coverage detected