From 1df69f7c9dc53e317babc32d0d91842a11fedd97 Mon Sep 17 00:00:00 2001 From: Jacek Czaja Date: Fri, 28 Sep 2018 09:42:13 +0200 Subject: [PATCH] - Fix to comment test=develop --- paddle/fluid/framework/ir/embedding_fc_lstm_fuse_pass.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/fluid/framework/ir/embedding_fc_lstm_fuse_pass.cc b/paddle/fluid/framework/ir/embedding_fc_lstm_fuse_pass.cc index af3f23cbf9..b155da375f 100644 --- a/paddle/fluid/framework/ir/embedding_fc_lstm_fuse_pass.cc +++ b/paddle/fluid/framework/ir/embedding_fc_lstm_fuse_pass.cc @@ -199,7 +199,7 @@ static int BuildFusion(Graph* graph, const std::string& name_scope, embedding_lstm_creator(lookup_table, W, lstm, subgraph.at(x), w, Weight, Bias, Hidden, Cell, fc_out, fc_bias); // Remove unneeded nodes. - // TODO(jczaja): Proper removing of loopup table + // TODO(jczaja): Proper removing of lookup table std::unordered_set marked_nodes( //{lookup_table, mul, lstm, elementwise_add, fc_bias, W}); {mul, lstm, elementwise_add, fc_bias}); @@ -209,7 +209,7 @@ static int BuildFusion(Graph* graph, const std::string& name_scope, embedding_lstm_creator(lookup_table, W, lstm, subgraph.at(x), w, Weight, Bias, Hidden, Cell, fc_out, nullptr); // Remove unneeded nodes. - // TODO(jczaja): Proper removing of loopup table + // TODO(jczaja): Proper removing of lookup table // std::unordered_set marked_nodes({lookup_table, W, mul, // lstm}); std::unordered_set marked_nodes({mul, lstm}); -- GitLab