// 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 #include #include #include #include "lite/backends/mlu/mlu_utils.h" #include "lite/core/op_lite.h" #include "lite/core/tensor.h" #include "lite/fluid/data_type.h" namespace paddle { namespace lite { namespace subgraph { namespace mlu { void transpose(float* input_data, float* output_data, std::vector input_shape, std::vector axis); int scale2position(float scale); void dequant(float* dst, int8_t* src, size_t size, float scale); void dequant(float* dst, int8_t* src, size_t size_o, size_t size, size_t size_in, std::vector scales); template std::vector recip(std::vector x); // Type/tensor converters for converting Paddle type/tensor to MLU type/tensor bool HasInputArg(const OpInfo* op_info, const Scope* scope, const std::string& argname); cnmlActiveFunction_t OpTypeToCNMLActType(std::string op_type); inline const ::paddle::lite::DDimLite DimNHWC2NCHW( const ::paddle::lite::DDimLite& dim) { return ::paddle::lite::DDimLite( std::vector({dim[0], dim[3], dim[1], dim[2]})); } inline const ::paddle::lite::DDimLite DimNCHW2NHWC( const ::paddle::lite::DDimLite& dim) { return ::paddle::lite::DDimLite( std::vector({dim[0], dim[2], dim[3], dim[1]})); } inline const std::vector DimNHWC2NCHW( const std::vector& dim) { return std::vector({dim[0], dim[3], dim[1], dim[2]}); } inline const std::vector DimNCHW2NHWC( const std::vector& dim) { return std::vector({dim[0], dim[2], dim[3], dim[1]}); } template struct FPTypeTraits {}; template <> struct FPTypeTraits { typedef float T; }; template <> struct FPTypeTraits { typedef ::paddle::lite::fluid::float16 T; }; } // namespace mlu } // namespace subgraph } // namespace lite } // namespace paddle