/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #pragma once #include #include "paddle/fluid/framework/op_registry.h" #include "paddle/fluid/platform/device_context.h" // Functions used in SelectInputOp and SelectOutputOp namespace paddle { namespace operators { // Returns the integer in mask whose numel must be 1. The integer means the // selected branch number. inline int GetBranchNumber(const framework::LoDTensor &mask) { PADDLE_ENFORCE_EQ(mask.numel(), 1, "Mask in SelectOutputOp must have numel 1."); if (platform::is_cpu_place(mask.place())) { return mask.data()[0]; } // when platform::is_gpu_place(mask.place()) is ture std::unique_ptr cpu_mask{new framework::LoDTensor()}; #ifdef PADDLE_WITH_CUDA framework::TensorCopySync(mask, platform::CPUPlace(), cpu_mask.get()); #else PADDLE_THROW( "This version of PaddlePaddle doen NOT support GPU but got GPU tensor " "Mask in SelectOutputOp. Please compile WITH_GPU option"); #endif return cpu_mask->data()[0]; } } // namespace operators } // namespace paddle