model_parser.h 1.2 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 23 24 25

namespace paddle {
namespace lite {

S
update  
superjomn 已提交
26 27 28 29 30
// 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 已提交
31 32
void LoadParams(const std::string& path);

S
update  
superjomn 已提交
33
// Read a model and files of parameters.
S
superjomn 已提交
34 35 36 37
void LoadModel(const std::string& model_dir);

}  // namespace lite
}  // namespace paddle