From a6c6c43eb7419806298cffc2ea2b244be59f045e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=AE=87=E6=89=AC?= Date: Thu, 26 Sep 2024 17:33:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dgraphllm=E7=9A=84=E5=86=85?= =?UTF-8?q?=E5=AD=98=E6=B3=84=E6=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/graph.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/graph.cpp b/src/graph.cpp index 22946f6..7b9420b 100644 --- a/src/graph.cpp +++ b/src/graph.cpp @@ -112,6 +112,7 @@ namespace fastllm { for (auto &node : graph.nodes) { if (allDatas.find(node.name) == allDatas.end()) { allDatas[node.name] = new Data(); + tempDatas[node.name] = allDatas[node.name]; } } Data emptyData;