model_parser.h 1.7 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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.

// This file contains model format related operations, such as load a model,
// parse an operator definitions and so on.

S
update  
superjomn 已提交
18
#include <memory>
S
superjomn 已提交
19 20
#include <string>
#include <vector>
S
update  
superjomn 已提交
21
#include "paddle/fluid/framework/framework.pb.h"
S
superjomn 已提交
22
#include "paddle/fluid/lite/core/scope.h"
C
update  
Chunwei 已提交
23 24
#include "paddle/fluid/lite/core/tensor.h"
#include "paddle/fluid/lite/core/variable.h"
S
superjomn 已提交
25 26 27 28

namespace paddle {
namespace lite {

S
update  
superjomn 已提交
29 30 31 32 33
// Read a __model__ file.
std::unique_ptr<framework::proto::ProgramDesc> LoadProgram(
    const std::string& path);

// Read a single file containing all the parameters.
S
superjomn 已提交
34 35
void LoadParams(const std::string& path);

C
update  
Chunwei 已提交
36 37 38
// Load a single parameter to an output tensor.
void LoadParam(const std::string& path, Variable* out);

S
update  
superjomn 已提交
39
// Read a model and files of parameters.
S
superjomn 已提交
40 41
void LoadModel(const std::string& model_dir, Scope* scope,
               framework::proto::ProgramDesc* prog);
S
superjomn 已提交
42

S
Superjomn 已提交
43 44 45 46 47 48 49
// Serialize tensors to ostream.
void SerializeTensors(std::ostream& os, const lite::Scope& scope,
                      const std::vector<std::string>& vars);

// LoDTensor to ostream
void TensorToStream(std::ostream& os, const lite::Tensor& tensor);

S
superjomn 已提交
50 51
}  // namespace lite
}  // namespace paddle