\brief Add a shuffle layer to the network. \param input The input tensor to the layer. \see IShuffleLayer \return The new shuffle layer, or nullptr if it could not be created.
| 7181 | //! \return The new shuffle layer, or nullptr if it could not be created. |
| 7182 | //! |
| 7183 | IShuffleLayer* addShuffle(ITensor& input) noexcept |
| 7184 | { |
| 7185 | return mImpl->addShuffle(input); |
| 7186 | } |
| 7187 | |
| 7188 | //! |
| 7189 | //! \brief Add a OneHot layer to the network. |
no outgoing calls
no test coverage detected