test_elementwise_add_op.cpp 2.1 KB
Newer Older
E
eclipsess 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

E
eclipsess 已提交
15 16
#include "../test_include.h"

E
eclipsess 已提交
17 18 19 20 21
int main() {
  paddle_mobile::Loader<paddle_mobile::CPU> loader;
  auto program = loader.Load(g_resnet);
  PADDLE_MOBILE_ENFORCE(program.originProgram != nullptr,
                        "program file read fail");
22

E
eclipsess 已提交
23 24 25
  Executor4Test<paddle_mobile::CPU, paddle_mobile::operators::ElementwiseAddOp<
                                        paddle_mobile::CPU, float>>
      executor(program, "elementwise_add");
26

E
eclipsess 已提交
27 28
  // 1. input_tensors;
  vector<Tensor> input_tensors;
29

E
eclipsess 已提交
30 31 32
  Tensor input1;
  auto input1_data = CreateInput<float>(&input1, {1, 3, 224, 224}, 0, 1);
  input_tensors.push_back(input1);
33

E
eclipsess 已提交
34 35 36
  Tensor input2;
  auto input2_data = CreateInput<float>(&input2, {224}, 0, 1);
  input_tensors.push_back(input2);
E
eclipsess 已提交
37

E
eclipsess 已提交
38 39 40 41 42
  // 2. input_names
  vector<string> input_names({
      "batch_norm_2.tmp_2",
      "batch_norm_0.tmp_3",
  });
43

E
eclipsess 已提交
44 45
  // 3. output_names
  vector<string> output_names({"elementwise_add_0.tmp_0"});
46

E
eclipsess 已提交
47 48 49 50
  // 4. out_dims;
  vector<DDim> out_ddims;
  auto out_ddim = paddle_mobile::framework::make_ddim({1, 3, 224, 224});
  out_ddims.push_back(out_ddim);
51

L
liuruilong 已提交
52
  auto output = executor.Predict<LoDTensor>(input_tensors, input_names,
E
eclipsess 已提交
53
                                            output_names, out_ddims);
54

E
eclipsess 已提交
55
  auto output0_data = output[0]->data<float>();
56
  /// output (1,3,224,224)
E
eclipsess 已提交
57 58
  DLOG << "output memory size : " << output[0]->memory_size();
  DLOG << "output numel : " << output[0]->numel();
59

E
eclipsess 已提交
60 61
  DLOG << input1_data[226] << " + " << input2_data[2] << " = "
       << output0_data[226];
E
eclipsess 已提交
62
}