.. Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited. === GXE === This section covers about Graph Execution Engine(GXE) which is used to launch and run the graph GXE accepts an application file which has the GXF components listed and a manifest file that has dependent extensions. GXE loads the graph and the dependent extensions and activates all the entities that are defined in the application file. Below are the steps that describes the functionality of GXE. * Create GXF context * Load the manifest file containing the GXF extensions * Load the application file containing the GXF entities and their connections * Activate the entities * Wait for the graph to complete * Destroy GXF context Using the GXE ------------- Below example provides the usage of GXE .. .code:: bash ./gxe --app "path to app.yaml" --manifest "path to manifest.yaml"