Skip to content
Snippets Groups Projects
Commit 7328d872 authored by Akash Kothari's avatar Akash Kothari :speech_balloon:
Browse files

Adding description for BuildDFG pass in BuildDFG.cpp

parent e6a348d1
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,15 @@
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// BuildDFG pass is responsible for constructing dataflow graph from a textual
// representation of HPVM IR with HPVM intrinsics from GenHPVM pass. This pass
// makes use of three crutial abstractions: graph itself, dataflow nodes repre-
// -senting functions and data edges representing tranfer of data between
// the functions (or nodes in the graph). This pass is part of HPVM frontend
// and does not make any changes to the textual representation of the IR.
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "buildDFG"
#include "BuildDFG/BuildDFG.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment