scale_op_test.cc 4.0 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// Copyright (c) 2019 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 "lite/operators/scale_op.h"
#include <gtest/gtest.h>
#include <random>
#include "lite/core/op_registry.h"
Z
zhupengyang 已提交
19 20
#include "lite/kernels/npu/bridges/registry.h"
#include "lite/kernels/npu/bridges/test_helper.h"
Y
Yan Chunwei 已提交
21 22 23

namespace paddle {
namespace lite {
Z
zhupengyang 已提交
24
namespace kernels {
Y
Yan Chunwei 已提交
25
namespace npu {
Z
zhupengyang 已提交
26
namespace bridges {
Y
Yan Chunwei 已提交
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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117

void scale_ref(const std::shared_ptr<operators::ScaleOp> op) {
  Scope* scope = op->scope();
  const OpInfo* op_info = op->op_info();
  auto x = scope->FindVar(op_info->Input("X").front())->GetMutable<Tensor>();
  auto out =
      scope->FindVar(op_info->Output("Out").front())->GetMutable<Tensor>();
  float scale = op_info->GetAttr<float>("scale");
  float bias = op_info->GetAttr<float>("bias");
  bool bias_after_scale = op_info->GetAttr<bool>("bias_after_scale");
  if (!bias_after_scale) {
    bias *= scale;
  }
  auto x_data = x->data<float>();
  auto out_data = out->mutable_data<float>();
  DDim x_dims = x->dims();
  DDim out_dims = out->dims();
  CHECK_EQ(x_dims.production(), out_dims.production());
  for (int i = 0; i < out_dims.production(); i++) {
    out_data[i] = x_data[i] * scale + bias;
  }
}

void test_scale(int bs,
                int ic,
                int ih,
                int iw,
                bool bias_after_scale,
                float scale,
                float bias) {
  // prepare input&output variables
  Scope scope;
  std::string x_var_name("x");
  std::string out_var_name("out");
  std::string out_ref_var_name("out_ref");
  auto* x = scope.Var(x_var_name)->GetMutable<Tensor>();
  auto* out = scope.Var(out_var_name)->GetMutable<Tensor>();
  auto* out_ref = scope.Var(out_ref_var_name)->GetMutable<Tensor>();
  x->Resize({bs, ic, ih, iw});

  // initialize input&output data
  FillTensor<float, int>(x);

  // initialize op desc
  cpp::OpDesc opdesc;
  opdesc.SetType("scale");
  opdesc.SetInput("X", {x_var_name});
  opdesc.SetOutput("Out", {out_var_name});
  opdesc.SetAttr("bias_after_scale", bias_after_scale);
  opdesc.SetAttr("scale", scale);
  opdesc.SetAttr("bias", bias);

  // create and convert op to NPU model, then run it on NPU
  auto op = CreateOp<operators::ScaleOp>(opdesc, &scope);
  LauchOp(op, {x_var_name}, {out_var_name});
  out_ref->CopyDataFrom(*out);

  // execute reference implementation and save to output tensor('out')
  scale_ref(op);

  // compare results
  auto* out_data = out->mutable_data<float>();
  auto* out_ref_data = out_ref->mutable_data<float>();
  for (int i = 0; i < out->dims().production(); i++) {
    VLOG(5) << i;
    EXPECT_NEAR(out_data[i], out_ref_data[i], 1e-5);
  }
}

TEST(NPUBridges, scale) {
  for (auto bs : {1, 3}) {
    for (auto ic : {1, 3}) {
      for (auto ih : {3, 4}) {
        for (auto iw : {4, 3}) {
          for (auto bias_after_scale : {true, false}) {
            for (auto scale : {-1.0f, 5.0f}) {
              for (auto bias : {-2.0f, 30.0f}) {
                VLOG(3) << "bs: " << bs << " ic: " << ic << " ih: " << ih
                        << " iw: " << iw
                        << " bias_after_scale: " << bias_after_scale
                        << " scale: " << scale << " bias: " << bias;
                test_scale(bs, ic, ih, iw, bias_after_scale, scale, bias);
              }
            }
          }
        }
      }
    }
  }
}

Z
zhupengyang 已提交
118
}  // namespace bridges
Y
Yan Chunwei 已提交
119
}  // namespace npu
Z
zhupengyang 已提交
120
}  // namespace kernels
Y
Yan Chunwei 已提交
121 122 123 124 125
}  // namespace lite
}  // namespace paddle

USE_LITE_OP(scale);
USE_NPU_BRIDGE(scale);