analyzer_capi_int_tester.cc 3.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/* Copyright (c) 2018 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 <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
F
flame 已提交
22
#include "paddle/fluid/inference/capi/paddle_c_api.h"
23 24 25 26 27 28 29 30 31 32 33 34 35 36
#include "paddle/fluid/inference/tests/api/tester_helper.h"

namespace paddle {
namespace inference {
namespace analysis {

void zero_copy_run() {
  std::string model_dir = FLAGS_infer_model;
  PD_AnalysisConfig *config = PD_NewAnalysisConfig();
  PD_DisableGpu(config);
  PD_SetCpuMathLibraryNumThreads(config, 10);
  PD_SwitchUseFeedFetchOps(config, false);
  PD_SwitchSpecifyInputNames(config, true);
  PD_SwitchIrDebug(config, true);
F
flame 已提交
37
  PD_SetModel(config, model_dir.c_str(), nullptr);
38 39 40 41 42 43 44 45 46
  bool use_feed_fetch = PD_UseFeedFetchOpsEnabled(config);
  CHECK(!use_feed_fetch) << "NO";
  bool specify_input_names = PD_SpecifyInputName(config);
  CHECK(specify_input_names) << "NO";

  const int batch_size = 1;
  const int channels = 3;
  const int height = 224;
  const int width = 224;
47
  float input[batch_size * channels * height * width] = {0};
48 49 50
  int shape[4] = {batch_size, channels, height, width};
  int shape_size = 4;
  int in_size = 2;
51
  int out_size;
52
  PD_ZeroCopyData *inputs = new PD_ZeroCopyData[2];
53
  PD_ZeroCopyData *outputs = nullptr;
54
  inputs[0].data = static_cast<void *>(input);
55
  inputs[0].dtype = PD_FLOAT32;
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
  inputs[0].name = new char[6];
  inputs[0].name[0] = 'i';
  inputs[0].name[1] = 'm';
  inputs[0].name[2] = 'a';
  inputs[0].name[3] = 'g';
  inputs[0].name[4] = 'e';
  inputs[0].name[5] = '\0';
  inputs[0].shape = shape;
  inputs[0].shape_size = shape_size;

  int *label = new int[1];
  label[0] = 0;
  inputs[1].data = static_cast<void *>(label);
  inputs[1].dtype = PD_INT64;
  inputs[1].name = new char[6];
  inputs[1].name[0] = 'l';
  inputs[1].name[1] = 'a';
  inputs[1].name[2] = 'b';
  inputs[1].name[3] = 'e';
  inputs[1].name[4] = 'l';
  inputs[1].name[5] = '\0';
  int label_shape[2] = {1, 1};
  int label_shape_size = 2;
  inputs[1].shape = label_shape;
  inputs[1].shape_size = label_shape_size;

82 83
  PD_PredictorZeroCopyRun(config, inputs, in_size, &outputs, &out_size);

84
  LOG(INFO) << "output size is: " << out_size;
85
  LOG(INFO) << outputs[0].name;
86 87 88 89 90 91 92 93 94 95 96
  for (int j = 0; j < out_size; ++j) {
    LOG(INFO) << "output[" << j
              << "]'s shape_size is: " << outputs[j].shape_size;
    for (int i = 0; i < outputs[0].shape_size; ++i) {
      LOG(INFO) << "output[" << j << "]'s shape is: " << outputs[j].shape[i];
    }
    LOG(INFO) << "output[" << j
              << "]'s DATA is: " << *(static_cast<float *>(outputs[j].data));
  }
  delete[] outputs;
  delete[] inputs;
97 98
}

99 100 101
#ifdef PADDLE_WITH_MKLDNN
TEST(PD_ZeroCopyRun, zero_copy_run) { zero_copy_run(); }
#endif
102 103 104 105

}  // namespace analysis
}  // namespace inference
}  // namespace paddle