1 # Copyright (c) 2019-2020 NVIDIA CORPORATION. All rights reserved.
3 @page dwx_dnn_plugin_sample DNN Plugin Sample
6 @note SW Release Applicability: This sample is available in both **NVIDIA DriveWorks** and **NVIDIA DRIVE Software** releases.
8 @section dwx_dnn_plugin_description Description
10 The DNN Plugin sample loads and runs an MNIST network with a custom implementation of the max pooling layer.
12 **PoolPlugin.cpp** implements this layer and defines the functions that are required by DriveWorks to load
13 a plugin. This file is then compiled as a shared library, which is then loaded by **sample_dnn_plugin** executable
16 @section dwx_dnn_plugin_running Running the Sample
18 The command line for the sample is:
22 @note This sample loads mnist digit recognition network from:
24 - data/samples/dnn/volta if the detected GPU has VOLTA architecture.
25 - data/samples/dnn/turing if the detected GPU has TURING architecture.
27 @section dwx_dnn_plugin_output Output
29 The sample creates a window, displays a white screen where a hand-drawn digit will be recognized via aforementioned MNIST network model.
31 
33 @section dwx_dnn_plugin_more Additional Information
35 For more information, see @ref dwx_dnn_plugins.