ptrendx commented on a change in pull request #15167: [WIP] Pointwise fusion for GPU URL: https://github.com/apache/incubator-mxnet/pull/15167#discussion_r297795244
########## File path: src/executor/exec_pass.h ########## @@ -170,6 +190,16 @@ void AttachOpResources(const Graph& g, */ Graph DetectInplaceAddTo(Graph g); +using NodeEntryMapCounter = + std::unordered_map<nnvm::NodeEntry, uint32_t, nnvm::NodeEntryHash, nnvm::NodeEntryEqual>; +/*!\brief + * This is to count how many time each output is used by another node (or the output of the graph) Review comment: This is not needed for this fusion, will remove it. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
