// Copyright (c) 2022 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 #include #include "paddle/fluid/eager/type_defs.h" #include "paddle/phi/api/include/tensor.h" #include "paddle/utils/small_vector.h" namespace egr { using paddle::experimental::Tensor; using TupleOfTwoTensors = std::tuple; using TupleOfThreeTensors = std::tuple; using TupleOfFourTensors = std::tuple; using TupleOfFiveTensors = std::tuple; using TupleOfSixTensors = std::tuple; using TupleOfTensorAndVector = std::tuple, std::vector>; void CheckTensorHasNanOrInf(const std::string& api_name, const Tensor& tensor); void CheckTensorHasNanOrInf(const std::string& api_name, const TupleOfTwoTensors& tensors); void CheckTensorHasNanOrInf(const std::string& api_name, const TupleOfThreeTensors& tensors); void CheckTensorHasNanOrInf(const std::string& api_name, const TupleOfFourTensors& tensors); void CheckTensorHasNanOrInf(const std::string& api_name, const TupleOfFiveTensors& tensors); void CheckTensorHasNanOrInf(const std::string& api_name, const TupleOfSixTensors& tensors); void CheckTensorHasNanOrInf(const std::string& api_name, const std::vector& tensors); void CheckTensorHasNanOrInf(const std::string& api_name, const TupleOfTensorAndVector& tensors); void CheckTensorHasNanOrInf( const std::string& api_name, const paddle::small_vector, egr::kSlotSmallVectorSize>& tensors); template struct NanInfChecker { void operator()(const std::string& api_name, const TupleT& tensors) { CheckTensorHasNanOrInf(api_name, std::get(tensors)); NanInfChecker()(api_name, tensors); } }; template struct NanInfChecker { void operator()(const std::string& api_name, const TupleT& tensors) { CheckTensorHasNanOrInf(api_name, std::get(tensors)); } }; template void CheckTensorHasNanOrInf(const std::string& api_name, const TupleT& tensors) { constexpr size_t size = std::tuple_size::value; NanInfChecker()(api_name, tensors); } } // namespace egr