Skip to content
Snippets Groups Projects
Commit 4dbdd978 authored by kotsifa2's avatar kotsifa2
Browse files

Added required passes for CUDNN backend

parent 838e528e
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,14 @@ struct DFG2LLVM_CUDNN : public DFG2LLVM {
private:
public:
void getAnalysisUsage(AnalysisUsage &AU) const {
AU.addRequired<BuildDFG>();
AU.addRequired<InPlaceDFGAnalysisWrapper>();
AU.addPreserved<BuildDFG>();
AU.addPreserved<InPlaceDFGAnalysisWrapper>();
}
bool runOnModule(Module &M);
};
......
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