From 2497fd986cb6bd36620cd5a9136f8ff23ab6ded2 Mon Sep 17 00:00:00 2001 From: Wilber Date: Fri, 3 Jan 2020 12:07:19 +0800 Subject: [PATCH] temporarily remove cuda fc fuse because we don't support cuda fc now. test=develop (#2715) temporarily remove cuda fc fuse because we don't support cuda fc now --- lite/core/mir/fusion/fc_fuse_pass.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/lite/core/mir/fusion/fc_fuse_pass.cc b/lite/core/mir/fusion/fc_fuse_pass.cc index 120b312aeb..041d896790 100644 --- a/lite/core/mir/fusion/fc_fuse_pass.cc +++ b/lite/core/mir/fusion/fc_fuse_pass.cc @@ -39,4 +39,5 @@ void FcFusePass::Apply(const std::unique_ptr& graph) { REGISTER_MIR_PASS(lite_fc_fuse_pass, paddle::lite::mir::FcFusePass) .BindTargets({TARGET(kAny)}) .ExcludeTargets({TARGET(kXPU)}) + .ExcludeTargets({TARGET(kCUDA)}) .BindKernel("fc"); -- GitLab