NVIDIA DriveOS Linux NSR SDK API Reference

7.0.3.0 Release
DNNPluginConfig.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: Copyright (c) 2018-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3  * SPDX-License-Identifier: LicenseRef-NvidiaProprietary
4  *
5  * NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
6  * property and proprietary rights in and to this material, related
7  * documentation and any modifications thereto. Any use, reproduction,
8  * disclosure or distribution of this material and related documentation
9  * without an express license agreement from NVIDIA CORPORATION or
10  * its affiliates is strictly prohibited.
11  */
12 
20 #ifndef DW_DNN_PLUGIN_CONFIG_H_
21 #define DW_DNN_PLUGIN_CONFIG_H_
22 
23 #include <dw/core/base/Types.h>
24 
27 typedef struct
28 {
30  const char8_t* layerName;
32 
35 typedef struct
36 {
38  size_t numCustomLayers;
42 
43 #endif // DW_DNN_PLUGIN_CONFIG_H_
dwDNNCustomLayer::layerName
const char8_t * layerName
Name of the custom layer.
Definition: DNNPluginConfig.h:30
dwDNNPluginConfiguration::numCustomLayers
size_t numCustomLayers
Number of custom layers.
Definition: DNNPluginConfig.h:38
dwDNNPluginConfiguration
Specified plugin configuration.
Definition: DNNPluginConfig.h:35
dwDNNPluginConfiguration::customLayers
const dwDNNCustomLayer * customLayers
Array of custom layers.
Definition: DNNPluginConfig.h:37
char8_t
char char8_t
Definition: BasicTypes.h:47
dwDNNPluginConfiguration::numCustomLayersNew
size_t numCustomLayersNew
Number of custom layers that use TensorRT native plugin interface.
Definition: DNNPluginConfig.h:40
dwDNNCustomLayer::pluginLibraryPath
const char8_t * pluginLibraryPath
Path to a plugin shared object.
Definition: DNNPluginConfig.h:29
dwDNNPluginConfiguration::customLayersNew
const dwDNNCustomLayer * customLayersNew
Array of custom layers that use TensorRT native plugin interface.
Definition: DNNPluginConfig.h:39
dwDNNCustomLayer
Specifies plugin configuration.
Definition: DNNPluginConfig.h:27