\brief Builds and serializes a network for the given INetworkDefinition and IBuilderConfig. This function allows building and serialization of a network without creating an engine. \param network Network definition. \param config Builder configuration. \return A pointer to a IHostMemory object that contains a serialized network. \note This function will synchronize the cuda stream returned by
| 10176 | //! \see INetworkDefinition, IBuilderConfig, IHostMemory |
| 10177 | //! |
| 10178 | nvinfer1::IHostMemory* buildSerializedNetwork(INetworkDefinition& network, IBuilderConfig& config) noexcept |
| 10179 | { |
| 10180 | return mImpl->buildSerializedNetwork(network, config); |
| 10181 | } |
| 10182 | |
| 10183 | //! |
| 10184 | //! \brief Checks that a network is within the scope of the IBuilderConfig settings. |
no outgoing calls
no test coverage detected