test_logical_xor_op.cpp 2.9 KB
Newer Older
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 42 43 44 45 46 47 48 49 50 51 52 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 83 84 85 86
/* 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"
#include "operators/logical_op.h"

namespace paddle_mobile {

void LogicalXor(const framework::Tensor *inputX,
                const framework::Tensor *inputY, framework::Tensor *output) {
  auto x_data = inputX->data<bool>();
  auto y_data = inputY->data<bool>();
  auto output_data = output->data<bool>();
  for (int i = 0; i < inputX->numel(); ++i) {
    bool x = *x_data;
    bool y = *y_data;
    *output_data = (x || y) && !(x && y);
    x_data++;
    y_data++;
    output_data++;
  }
}

int TestLogicalXorOp(const std::vector<int> input_shape) {
  framework::DDim input_dims = framework::make_ddim(input_shape);
  VariableNameMap inputs;
  VariableNameMap outputs;
  auto scope = std::make_shared<framework::Scope>();
  inputs["X"] = std::vector<std::string>({"inputX"});
  inputs["Y"] = std::vector<std::string>({"inputY"});
  outputs["Out"] = std::vector<std::string>({"output"});

  auto x_var = scope.get()->Var("inputX");
  auto x = x_var->template GetMutable<framework::LoDTensor>();
  SetupTensor<bool>(x, input_dims, 0, 1);

  auto y_var = scope.get()->Var("inputY");
  auto y = y_var->template GetMutable<framework::LoDTensor>();
  SetupTensor<bool>(y, input_dims, 0, 1);

  auto output_var = scope.get()->Var("output");
  framework::AttributeMap attrs;

  auto *op = new operators::LogicalXorOp<CPU, float>("logical_xor", inputs,
                                                     outputs, attrs, scope);

  op->InferShape();
  op->Init();
  op->Run();

  auto output = output_var->template Get<framework::LoDTensor>();
  framework::Tensor output_cmp;
  bool *output_cmp_data = output_cmp.mutable_data<bool>(output->dims());
  LogicalXor(x, y, &output_cmp);

  const bool *output_data = output->data<bool>();
  for (int i = 0; i < output->numel(); ++i) {
    if (output_data[i] != output_cmp_data[i]) {
      LOG(kLOG_INFO) << "output_data[" << i << "] = " << output_data[i]
                     << ", output_cmp_data[" << i
                     << "] = " << output_cmp_data[i];
      delete op;
      exit(1);
    }
  }
}
}  // namespace paddle_mobile

int main() {
  paddle_mobile::TestLogicalXorOp({1, 1, 2, 3});
  paddle_mobile::TestLogicalXorOp({1, 3, 11, 12});
  paddle_mobile::TestLogicalXorOp({1, 16, 32, 32});
  std::cout << "test logical_xor op pass." << std::endl;
  return 0;
}