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

#include "paddle/fluid/lite/api/cxx_api.h"
16
#include <gflags/gflags.h>
S
superjomn 已提交
17
#include <gtest/gtest.h>
S
superjomn 已提交
18
#include <vector>
C
Chunwei 已提交
19
#include "paddle/fluid/lite/api/lite_api_test_helper.h"
C
Chunwei 已提交
20 21 22
#include "paddle/fluid/lite/api/paddle_use_kernels.h"
#include "paddle/fluid/lite/api/paddle_use_ops.h"
#include "paddle/fluid/lite/api/paddle_use_passes.h"
C
Chunwei 已提交
23
#include "paddle/fluid/lite/core/compatible_tensor.h"
S
superjomn 已提交
24
#include "paddle/fluid/lite/core/op_registry.h"
25

Y
Yan Chunwei 已提交
26 27 28 29
// For training.
DEFINE_string(startup_program_path, "", "");
DEFINE_string(main_program_path, "", "");

S
superjomn 已提交
30 31 32
namespace paddle {
namespace lite {

S
sangoly 已提交
33
#ifndef LITE_WITH_LIGHT_WEIGHT_FRAMEWORK
S
superjomn 已提交
34
TEST(CXXApi, test) {
C
Chunwei 已提交
35
  const lite::Tensor* out = RunHvyModel();
36
  LOG(INFO) << out << " memory size " << out->data_size();
C
Chunwei 已提交
37 38 39
  for (int i = 0; i < 10; i++) {
    LOG(INFO) << "out " << out->data<float>()[i];
  }
40
  LOG(INFO) << "dims " << out->dims();
S
superjomn 已提交
41
  // LOG(INFO) << "out " << *out;
S
superjomn 已提交
42 43
}

S
Superjomn 已提交
44
TEST(CXXApi, save_model) {
C
Chunwei 已提交
45
  lite::Predictor predictor;
46 47
  std::vector<Place> valid_places({Place{TARGET(kHost), PRECISION(kFloat)},
                                   Place{TARGET(kX86), PRECISION(kFloat)}});
48 49
  predictor.Build(FLAGS_model_dir, Place{TARGET(kCUDA), PRECISION(kFloat)},
                  valid_places);
S
Superjomn 已提交
50

51
  LOG(INFO) << "Save optimized model to " << FLAGS_optimized_model;
S
superjomn 已提交
52
  predictor.SaveModel(FLAGS_optimized_model);
S
Superjomn 已提交
53
}
Y
Yan Chunwei 已提交
54

55
/*TEST(CXXTrainer, train) {
Y
Yan Chunwei 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68
  Place prefer_place({TARGET(kHost), PRECISION(kFloat), DATALAYOUT(kNCHW)});
  std::vector<Place> valid_places({prefer_place});
  auto scope = std::make_shared<lite::Scope>();

  CXXTrainer trainer(scope, prefer_place, valid_places);

  std::string main_program_pb, startup_program_pb;
  ReadBinaryFile(FLAGS_main_program_path, &main_program_pb);
  ReadBinaryFile(FLAGS_startup_program_path, &startup_program_pb);
  framework::proto::ProgramDesc main_program_desc, startup_program_desc;
  main_program_desc.ParseFromString(main_program_pb);
  startup_program_desc.ParseFromString(startup_program_pb);

L
liuwei1031 已提交
69
  // LOG(INFO) << main_program_desc.DebugString();
Y
Yan Chunwei 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84

  for (const auto& op : main_program_desc.blocks(0).ops()) {
    LOG(INFO) << "get op " << op.type();
  }

  return;

  trainer.RunStartupProgram(startup_program_desc);
  auto& exe = trainer.BuildMainProgramExecutor(main_program_desc);
  auto* tensor0 = exe.GetInput(0);
  tensor0->Resize(std::vector<int64_t>({100, 100}));
  auto* data0 = tensor0->mutable_data<float>();
  data0[0] = 0;

  exe.Run();
85
}*/
Y
Yan Chunwei 已提交
86
#endif  // LITE_WITH_LIGHT_WEIGHT_FRAMEWORK
S
Superjomn 已提交
87

S
superjomn 已提交
88 89
}  // namespace lite
}  // namespace paddle