From 6b2f680d88b7fc63ac79b412c3d38765c5e3d2c8 Mon Sep 17 00:00:00 2001 From: superjomn Date: Mon, 10 Sep 2018 07:06:52 +0000 Subject: [PATCH] simple fix --- paddle/fluid/framework/ir/graph_pattern_detector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/framework/ir/graph_pattern_detector.h b/paddle/fluid/framework/ir/graph_pattern_detector.h index 57482a07b..a127d992a 100644 --- a/paddle/fluid/framework/ir/graph_pattern_detector.h +++ b/paddle/fluid/framework/ir/graph_pattern_detector.h @@ -407,7 +407,7 @@ struct LSTM : public PatternBase { struct GRU : public PatternBase { GRU(PDPattern* pattern, const std::string& name_scope) - : PatternBase(pattern, name_scope, "lstm") {} + : PatternBase(pattern, name_scope, "gru") {} PDNode* operator()(PDNode* x); -- GitLab