apis_test.cc 2.7 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 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
// 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"
#include "paddle/fluid/lite/core/mir/pass_registry.h"
#include "paddle/fluid/lite/core/mir/use_passes.h"
#include "paddle/fluid/lite/kernels/use_kernels.h"
#include "paddle/fluid/lite/operators/use_ops.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 49 50
                    const LightPredictor& light_api) {
  const auto* a = cxx_api.GetTensor(name);
  const auto* b = light_api.GetTensor(name);
  return TensorCompareWith(*a, *b);
}

#ifndef LITE_WITH_LIGHT_WEIGHT_FRAMEWORK
TEST(CXXApi_LightApi, save_and_load_model) {
C
Chunwei 已提交
51 52
  lite::Predictor cxx_api;
  lite::LightPredictor light_api(FLAGS_optimized_model);
C
Chunwei 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

  // CXXAPi
  {
    std::vector<Place> valid_places({Place{TARGET(kHost), PRECISION(kFloat)},
                                     Place{TARGET(kX86), PRECISION(kFloat)}});
    cxx_api.Build(FLAGS_model_dir, Place{TARGET(kCUDA), PRECISION(kFloat)},
                  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 已提交
83
      "a", "fc_0.w_0", "scale_0.tmp_0",
C
Chunwei 已提交
84 85 86 87 88 89 90 91 92 93
  });

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

}  // namespace lite
}  // namespace paddle