From 11b3b0319f2c9ef80890e242ed02f769679bee30 Mon Sep 17 00:00:00 2001 From: BrilliantYuKaimin <91609464+BrilliantYuKaimin@users.noreply.github.com> Date: Mon, 18 Apr 2022 14:27:36 +0800 Subject: [PATCH] Update channel_shuffle_sig.cc --- paddle/phi/ops/compat/channel_shuffle_sig.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paddle/phi/ops/compat/channel_shuffle_sig.cc b/paddle/phi/ops/compat/channel_shuffle_sig.cc index 179098ab06d17..28544f5d1e812 100644 --- a/paddle/phi/ops/compat/channel_shuffle_sig.cc +++ b/paddle/phi/ops/compat/channel_shuffle_sig.cc @@ -25,9 +25,9 @@ KernelSignature ChannelShuffleOpArgumentMapping( KernelSignature ChannelShuffleGradOpArgumentMapping( const ArgumentMappingContext& ctx) { return KernelSignature("channel_shuffle_grad", - {GradVarName("Out")}, + {"Out@GRAD"}, {"groups", "data_format"}, - {GradVarName("X")}); + {"X@GRAD"}); } } // namespace phi