apis_test.cc 3.3 KB
Newer Older
C
Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// 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.

/*
 * We test multiple apis here.
 */
#include <gtest/gtest.h>
#include <sstream>
#include <vector>
#include "paddle/fluid/lite/api/cxx_api.h"
#include "paddle/fluid/lite/api/light_api.h"
C
Chunwei 已提交
23 24 25
#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 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
#include "paddle/fluid/lite/core/mir/pass_registry.h"

DEFINE_string(model_dir, "", "");
DEFINE_string(optimized_model, "", "");

namespace paddle {
namespace lite {

void SetConstInput(lite::Tensor* x) {
  x->Resize(DDim(std::vector<DDim::value_type>({100, 100})));
  auto* data = x->mutable_data<float>();
  for (int i = 0; i < 100 * 100; i++) {
    data[i] = i;
  }
}

C
Chunwei 已提交
42
bool CompareTensors(const std::string& name, const Predictor& cxx_api,
C
Chunwei 已提交
43 44 45 46 47 48
                    const LightPredictor& light_api) {
  const auto* a = cxx_api.GetTensor(name);
  const auto* b = light_api.GetTensor(name);
  return TensorCompareWith(*a, *b);
}

S
superjomn 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62
TEST(CXXApi_LightApi, optim_model) {
  lite::Predictor cxx_api;
  std::vector<Place> valid_places({
      Place{TARGET(kHost), PRECISION(kFloat)},
      Place{TARGET(kX86), PRECISION(kFloat)},
      Place{TARGET(kARM), PRECISION(kFloat)},  // Both works on X86 and ARM
  });
  // On ARM devices, the preferred X86 target not works, but it can still
  // select ARM kernels.
  cxx_api.Build(FLAGS_model_dir, Place{TARGET(kX86), PRECISION(kFloat)},
                valid_places);
  cxx_api.SaveModel(FLAGS_optimized_model);
}

C
Chunwei 已提交
63
TEST(CXXApi_LightApi, save_and_load_model) {
C
Chunwei 已提交
64 65
  lite::Predictor cxx_api;
  lite::LightPredictor light_api(FLAGS_optimized_model);
C
Chunwei 已提交
66 67 68

  // CXXAPi
  {
S
superjomn 已提交
69 70 71 72 73 74 75 76
    std::vector<Place> valid_places({
        Place{TARGET(kHost), PRECISION(kFloat)},
        Place{TARGET(kX86), PRECISION(kFloat)},
        Place{TARGET(kARM), PRECISION(kFloat)},  // Both works on X86 and ARM
    });
    // On ARM devices, the preferred X86 target not works, but it can still
    // select ARM kernels.
    cxx_api.Build(FLAGS_model_dir, Place{TARGET(kX86), PRECISION(kFloat)},
C
Chunwei 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
                  valid_places);

    auto* x = cxx_api.GetInput(0);
    SetConstInput(x);

    cxx_api.Run();

    LOG(INFO) << "Save optimized model to " << FLAGS_optimized_model;
    cxx_api.SaveModel(FLAGS_optimized_model);
  }

  // LightApi
  {
    auto* x = light_api.GetInput(0);
    SetConstInput(x);

    light_api.Run();
  }

  const auto* cxx_out = cxx_api.GetOutput(0);
  const auto* light_out = light_api.GetOutput(0);
  ASSERT_TRUE(TensorCompareWith(*cxx_out, *light_out));

  std::vector<std::string> tensors_with_order({
C
Chunwei 已提交
101
      "a", "fc_0.w_0", "scale_0.tmp_0",
C
Chunwei 已提交
102 103 104 105 106 107 108 109 110
  });

  for (const auto& tensor_name : tensors_with_order) {
    ASSERT_TRUE(CompareTensors(tensor_name, cxx_api, light_api));
  }
}

}  // namespace lite
}  // namespace paddle