From 358c743c6f51cdea858b71e18ed2790683f3f6e5 Mon Sep 17 00:00:00 2001 From: Dheeraj Peri Date: Thu, 1 Aug 2024 14:12:50 -0700 Subject: [PATCH] chore: bug fix in runtime (#3054) --- core/runtime/execute_engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/runtime/execute_engine.cpp b/core/runtime/execute_engine.cpp index 17a735bb12..82b868d131 100644 --- a/core/runtime/execute_engine.cpp +++ b/core/runtime/execute_engine.cpp @@ -115,7 +115,7 @@ std::vector execute_engine(std::vector inputs, c10::intr bool need_cudagraphs_record = (CUDAGRAPHS_MODE && !_cudagraphs_validate_shapes(inputs, compiled_engine)); // this is a buffer to store shape tensor input addresses throughout the runtime scope - std::list> inputShapeTensorValues; + std::list> inputShapeTensorValues; // Intialize outputs to be available throughout the succeeding scopes std::vector outputs(compiled_engine->num_io.second);