@@ -199,7 +199,7 @@ static int BuildFusion(Graph* graph, const std::string& name_scope,
199
199
embedding_lstm_creator (lookup_table, W, lstm, subgraph.at (x), w, Weight,
200
200
Bias, Hidden, Cell, fc_out, fc_bias);
201
201
// Remove unneeded nodes.
202
- // TODO(jczaja): Proper removing of loopup table
202
+ // TODO(jczaja): Proper removing of lookup table
203
203
std::unordered_set<const Node*> marked_nodes (
204
204
// {lookup_table, mul, lstm, elementwise_add, fc_bias, W});
205
205
{mul, lstm, elementwise_add, fc_bias});
@@ -209,7 +209,7 @@ static int BuildFusion(Graph* graph, const std::string& name_scope,
209
209
embedding_lstm_creator (lookup_table, W, lstm, subgraph.at (x), w, Weight,
210
210
Bias, Hidden, Cell, fc_out, nullptr );
211
211
// Remove unneeded nodes.
212
- // TODO(jczaja): Proper removing of loopup table
212
+ // TODO(jczaja): Proper removing of lookup table
213
213
// std::unordered_set<const Node*> marked_nodes({lookup_table, W, mul,
214
214
// lstm});
215
215
std::unordered_set<const Node*> marked_nodes ({mul, lstm});
0 commit comments