test_relu_op.cpp 1.8 KB
Newer Older
E
eclipsess 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* 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 "../test_include.h"
E
eclipsess 已提交
16
#include "operators/relu_op.h"
E
eclipsess 已提交
17 18 19

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

E
eclipsess 已提交
24 25 26 27
  Executor4Test<paddle_mobile::CPU,
                paddle_mobile::operators::ReluOp<paddle_mobile::CPU, float>>
      executor(program, "relu");

E
eclipsess 已提交
28 29 30 31 32 33 34 35 36 37 38
  // 1. input_tensors;
  vector<Tensor> input_tensors;

  Tensor input1;
  auto input1_data = CreateInput<float>(&input1, {1, 2, 3, 4}, -1, 1);
  input_tensors.push_back(input1);

  // 2. input_names
  vector<string> input_names({
      "batch_norm_0.tmp_2",
  });
E
eclipsess 已提交
39

E
eclipsess 已提交
40 41 42 43 44
  // 3. output_names
  vector<string> output_names({"batch_norm_0.tmp_3"});

  // 4. out_dims;
  vector<DDim> out_ddims;
E
eclipsess 已提交
45
  auto out_ddim = paddle_mobile::framework::make_ddim({1, 2, 3, 4});
E
eclipsess 已提交
46 47
  out_ddims.push_back(out_ddim);

L
liuruilong 已提交
48
  auto output = executor.Predict<LoDTensor>(input_tensors, input_names,
E
eclipsess 已提交
49 50 51
                                            output_names, out_ddims);

  auto output0_data = output[0]->data<float>();
E
eclipsess 已提交
52

E
eclipsess 已提交
53 54
  for (int j = 0; j < output[0]->numel(); ++j) {
    DLOG << " value of output: " << output0_data[j];
E
eclipsess 已提交
55 56 57
  }
  return 0;
}