136 lines
4.6 KiB
C++
136 lines
4.6 KiB
C++
/* Copyright (c) 2016 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 <string>
|
|
#include <vector>
|
|
|
|
#include "paddle/common/ddim.h"
|
|
#include "paddle/fluid/framework/attribute.h"
|
|
#include "paddle/fluid/framework/var_desc.h"
|
|
#include "paddle/fluid/framework/variable.h"
|
|
#include "paddle/phi/core/type_defs.h"
|
|
#include "paddle/utils/small_vector.h"
|
|
|
|
namespace paddle {
|
|
namespace framework {
|
|
namespace proto {
|
|
|
|
class BlockDesc;
|
|
class OpDesc;
|
|
class OpDesc_Attr;
|
|
class OpDesc_Var;
|
|
class OpProto;
|
|
class OpProto_Attr;
|
|
class OpProto_Var;
|
|
class OpVersion;
|
|
class OpVersionMap;
|
|
class OpVersionMap_OpVersionPair;
|
|
class ProgramDesc;
|
|
class VarDesc;
|
|
class VarType;
|
|
class VarType_DenseTensorArrayDesc;
|
|
class VarType_DenseTensorDesc;
|
|
class VarType_ReaderDesc;
|
|
class VarType_TensorDesc;
|
|
class VarType_Tuple;
|
|
class Version;
|
|
} // namespace proto
|
|
} // namespace framework
|
|
} // namespace paddle
|
|
|
|
namespace paddle {
|
|
namespace framework {
|
|
|
|
class OperatorBase;
|
|
|
|
using InferShapeVarPtr = paddle::variant<VarDesc *, Variable *>;
|
|
|
|
class InferShapeContext {
|
|
public:
|
|
virtual ~InferShapeContext() = default;
|
|
virtual bool HasInput(const std::string &name) const = 0;
|
|
virtual bool HasOutput(const std::string &name) const = 0;
|
|
virtual bool HasAttr(const std::string &name) const = 0;
|
|
|
|
virtual proto::VarType::Type GetInputVarType(
|
|
const std::string &name) const = 0;
|
|
virtual std::vector<proto::VarType::Type> GetInputsVarType(
|
|
const std::string &name) const = 0;
|
|
virtual std::vector<proto::VarType::Type> GetOutputsVarType(
|
|
const std::string &name) const = 0;
|
|
|
|
virtual bool HasInputs(const std::string &name) const = 0;
|
|
virtual bool HasOutputs(const std::string &name,
|
|
bool allow_null = false) const = 0;
|
|
|
|
virtual DDim GetInputDim(const std::string &name) const = 0;
|
|
virtual std::vector<DDim> GetInputsDim(const std::string &name) const = 0;
|
|
TEST_API virtual std::vector<DDim> GetReaderDims(
|
|
const std::string &name) const;
|
|
|
|
virtual void SetOutputDim(const std::string &name, const DDim &dim) = 0;
|
|
virtual void SetOutputsDim(const std::string &name,
|
|
const std::vector<DDim> &dims) = 0;
|
|
TEST_API virtual void SetReaderDims(const std::string &name,
|
|
const std::vector<DDim> &dims);
|
|
virtual std::string GetInputNameByIdx(size_t idx) const = 0;
|
|
virtual std::string GetOutputNameByIdx(size_t idx) const = 0;
|
|
virtual AttrReader Attrs() const = 0;
|
|
virtual std::vector<std::string> Inputs(const std::string &name) const = 0;
|
|
virtual std::vector<std::string> Outputs(const std::string &name) const = 0;
|
|
|
|
virtual void ShareDim(const std::string &in,
|
|
const std::string &out,
|
|
size_t i = 0,
|
|
size_t j = 0) = 0;
|
|
|
|
virtual void ShareLoD(const std::string &in,
|
|
const std::string &out,
|
|
size_t i = 0,
|
|
size_t j = 0) const = 0;
|
|
// share the lod information of all the tensor from in to out.
|
|
// out_vars[i].lod = in_vars[i].lod
|
|
virtual void ShareAllLoD(const std::string &in,
|
|
const std::string &out) const = 0;
|
|
|
|
virtual int32_t GetLoDLevel(const std::string &in, size_t i = 0) const = 0;
|
|
|
|
virtual void SetLoDLevel(const std::string &out,
|
|
int32_t lod_level,
|
|
size_t j = 0) const = 0;
|
|
|
|
virtual bool IsRuntime() const = 0;
|
|
|
|
virtual bool IsRunONEDNNKernel() const = 0;
|
|
|
|
virtual paddle::small_vector<InferShapeVarPtr, phi::kInputSmallVectorSize>
|
|
GetInputVarPtrs(const std::string &name) const = 0;
|
|
virtual paddle::small_vector<InferShapeVarPtr, phi::kOutputSmallVectorSize>
|
|
GetOutputVarPtrs(const std::string &name) const = 0;
|
|
|
|
virtual const phi::ArgumentMappingFn *GetPhiArgumentMappingFn() const = 0;
|
|
|
|
virtual const phi::KernelSignature *GetPhiDefaultKernelSignature() const = 0;
|
|
|
|
protected:
|
|
virtual std::vector<DDim> GetRepeatedDims(const std::string &name) const = 0;
|
|
virtual void SetRepeatedDims(const std::string &name,
|
|
const std::vector<DDim> &dims) = 0;
|
|
};
|
|
|
|
} // namespace framework
|
|
} // namespace paddle
|