cast_op_test.cc 3.8 KB
Newer Older
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/cast_op.h"
#include <gtest/gtest.h>
#include "lite/core/op_lite.h"
#include "lite/core/op_registry.h"
19
#include "lite/core/subgraph_bridge_registry.h"
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 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 118 119 120 121 122
#include "lite/kernels/mlu/bridges/test_helper.h"
#include "lite/kernels/mlu/bridges/utility.h"

namespace paddle {
namespace lite {
namespace subgraph {
namespace mlu {

void test_cast_FP16_to_FP32(std::vector<int64_t> shape) {
  // prepare input&output variables
  std::string x_var_name = "x";
  std::string out_var_name = "out";

  Scope scope;
  auto* x = scope.Var(x_var_name)->GetMutable<Tensor>();
  auto* out = scope.Var(out_var_name)->GetMutable<Tensor>();
  x->Resize(DDim(shape));
  auto* x_data = x->mutable_data<paddle::lite::fluid::float16>();

  // initialize input&output data
  for (int i = 0; i < x->dims().production(); i++) {
    x_data[i] = static_cast<paddle::lite::fluid::float16>(i);
  }
  // initialize op desc
  int in_dtype = 4, out_dtype = 5;
  cpp::OpDesc opdesc;
  opdesc.SetType("cast");
  opdesc.SetInput("X", {x_var_name});
  opdesc.SetOutput("Out", {out_var_name});
  opdesc.SetAttr("in_dtype", in_dtype);
  opdesc.SetAttr("out_dtype", out_dtype);

  auto op = CreateOp<operators::CastOp>(opdesc, &scope);

  Tensor data;
  data.Resize(DDim(shape));
  auto* copy_data = data.mutable_data<paddle::lite::fluid::float16>();
  data.CopyDataFrom(*x);
  x->set_precision(paddle::lite_api::PrecisionType::kFP16);
  LaunchOp(op, {x_var_name}, {out_var_name});

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

void test_cast_FP32_to_FP16(std::vector<int64_t> shape) {
  // prepare input&output variables
  std::string x_var_name = "x";
  std::string out_var_name = "out";

  Scope scope;
  auto* x = scope.Var(x_var_name)->GetMutable<Tensor>();
  auto* out = scope.Var(out_var_name)->GetMutable<Tensor>();
  x->Resize(DDim(shape));
  auto* x_data = x->mutable_data<float>();

  // initialize input&output data
  for (int i = 0; i < x->dims().production(); i++) {
    x_data[i] = static_cast<float>(i);
  }
  // initialize op desc
  int in_dtype = 5, out_dtype = 4;
  cpp::OpDesc opdesc;
  opdesc.SetType("cast");
  opdesc.SetInput("X", {x_var_name});
  opdesc.SetOutput("Out", {out_var_name});
  opdesc.SetAttr("in_dtype", in_dtype);
  opdesc.SetAttr("out_dtype", out_dtype);

  auto op = CreateOp<operators::CastOp>(opdesc, &scope);

  Tensor data;
  data.Resize(DDim(shape));
  auto* copy_data = data.mutable_data<float>();
  data.CopyDataFrom(*x);
  x->set_precision(paddle::lite_api::PrecisionType::kFloat);
  LaunchOp(op, {x_var_name}, {out_var_name});

  // compare results
  auto* out_data = out->mutable_data<paddle::lite::fluid::float16>();
  for (int i = 0; i < out->dims().production(); i++) {
    VLOG(5) << i;
    EXPECT_NEAR(static_cast<double>(out_data[i]), copy_data[i], 5e-4);
  }
}

TEST(MLUBridges, cast) {
  test_cast_FP16_to_FP32({2, 3, 4, 5});
  test_cast_FP16_to_FP32({6, 3, 2, 5});
  test_cast_FP32_to_FP16({2, 3, 4, 5});
  test_cast_FP32_to_FP16({6, 3, 2, 5});
}

}  // namespace mlu
}  // namespace subgraph
}  // namespace lite
}  // namespace paddle

USE_SUBGRAPH_BRIDGE(cast, kMLU);