67 lines
2.1 KiB
C++
67 lines
2.1 KiB
C++
// Copyright (c) 2021 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.
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "paddle/fluid/framework/infershape_utils.h"
|
|
#include "paddle/fluid/framework/op_registry.h"
|
|
#include "paddle/fluid/framework/operator.h"
|
|
#include "paddle/fluid/platform/enforce.h"
|
|
#include "paddle/phi/core/generator.h"
|
|
#include "paddle/phi/core/infermeta_utils.h"
|
|
#include "paddle/phi/infermeta/nullary.h"
|
|
|
|
namespace paddle::operators {
|
|
|
|
class ReadFileOp : public framework::OperatorWithKernel {
|
|
public:
|
|
using framework::OperatorWithKernel::OperatorWithKernel;
|
|
|
|
protected:
|
|
phi::KernelKey GetExpectedKernelType(
|
|
const framework::ExecutionContext& ctx) const override {
|
|
return phi::KernelKey(framework::proto::VarType::UINT8, phi::CPUPlace());
|
|
}
|
|
};
|
|
|
|
class ReadFileOpMaker : public framework::OpProtoAndCheckerMaker {
|
|
public:
|
|
void Make() override {
|
|
AddOutput("Out", "The output tensor of ReadFile op");
|
|
AddComment(R"DOC(
|
|
This operator read a file.
|
|
)DOC");
|
|
AddAttr<std::string>("filename", "Path of the file to be read.")
|
|
.SetDefault({});
|
|
}
|
|
};
|
|
|
|
} // namespace paddle::operators
|
|
|
|
namespace ops = paddle::operators;
|
|
|
|
DECLARE_INFER_SHAPE_FUNCTOR(read_file,
|
|
ReadFileInferShapeFunctor,
|
|
PD_INFER_META(phi::ReadFileInferMeta));
|
|
|
|
REGISTER_OPERATOR(
|
|
read_file,
|
|
ops::ReadFileOp,
|
|
ops::ReadFileOpMaker,
|
|
paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
|
|
paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>,
|
|
ReadFileInferShapeFunctor)
|