\brief Create a network definition object Creates a network definition object with immutable properties specified using the flags parameter. CreateNetworkV2 supports dynamic shapes and explicit batch dimensions when used with NetworkDefinitionCreationFlag::kEXPLICIT_BATCH flag. Creating a network without NetworkDefinitionCreationFlag::kEXPLICIT_BATCH flag has been deprecated. \param flags Bitset
| 10093 | //! \see INetworkDefinition, NetworkDefinitionCreationFlags |
| 10094 | //! |
| 10095 | nvinfer1::INetworkDefinition* createNetworkV2(NetworkDefinitionCreationFlags flags) noexcept |
| 10096 | { |
| 10097 | return mImpl->createNetworkV2(flags); |
| 10098 | } |
| 10099 | |
| 10100 | //! \brief Create a new optimization profile. |
| 10101 | //! |
no outgoing calls
no test coverage detected