From 08ea3cf01811c2efa2328bcc1572ead37d33cc7f Mon Sep 17 00:00:00 2001
From: Nathan Thoumine <nathan.thoumine@cea.fr>
Date: Thu, 18 Jul 2024 08:31:38 +0000
Subject: [PATCH] Update Graph.cpp by explaining initialize function

---
 aidge_export_tensorrt/static/tensorrt_8.6/src/Graph.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/aidge_export_tensorrt/static/tensorrt_8.6/src/Graph.cpp b/aidge_export_tensorrt/static/tensorrt_8.6/src/Graph.cpp
index 17dd1d6..2508aee 100644
--- a/aidge_export_tensorrt/static/tensorrt_8.6/src/Graph.cpp
+++ b/aidge_export_tensorrt/static/tensorrt_8.6/src/Graph.cpp
@@ -284,7 +284,7 @@ void Graph::save(std::string const& fileName)
         throw std::runtime_error("Could not save cuda engine file in " + fileName + ".trt");
 }
 /**
- * @brief Initialize the graph.
+ * @brief Initializes the TensorRT engine and execution context for the Graph class. This involves building a serialized network, deserializing it into a CUDA engine, and setting up the necessary execution context and I/O descriptors.
  */
 void Graph::initialize()
 {
-- 
GitLab