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
/* 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
#include "../executor_for_test.h"
E
eclipsess 已提交
16
#include "../test_include.h"
E
eclipsess 已提交
17
#include "operators/relu_op.h"
E
eclipsess 已提交
18 19 20

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

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

E
eclipsess 已提交
29 30 31 32 33 34 35 36 37 38 39
  // 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 已提交
40

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

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

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

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

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