copy_cross_scope_test.cc 4.5 KB
Newer Older
B
Baibaifan 已提交
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 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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
/* Copyright (c) 2021 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. */

#ifndef _WIN32
#include <unistd.h>
#endif

#include <iostream>
#include <list>
#include <string>
#include <thread>  // NOLINT
#include <vector>

#include "gtest/gtest.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/operator.h"
#include "paddle/fluid/framework/program_desc.h"
#include "paddle/fluid/operators/copy_cross_scope_op.cc"
#include "paddle/fluid/string/printf.h"

#define Conn(x, y) x##y

namespace f = paddle::framework;
namespace p = paddle::platform;

USE_NO_KERNEL_OP(copy_cross_scope);

template <typename T>
void Compare1(f::Scope* scope, const p::DeviceContext& ctx,
              std::string op_type) {
  // init
  auto var_x = scope->Var("tmp");
  auto x = var_x->GetMutable<f::LoDTensor>();
  std::vector<T> main_x = {1.0};
  TensorFromVector(main_x, ctx, x);

  auto var_id = scope->Var("Id");
  auto id = var_id->GetMutable<f::LoDTensor>();
  std::vector<int64_t> main_id = {1};
  TensorFromVector(main_id, ctx, id);
  for (int i = 0; i < 3; i++) {
    auto& child_scope = scope->NewScope();
    auto child_var = child_scope.Var("tmp");
    auto tensor_x = child_var->GetMutable<f::LoDTensor>();
    std::vector<T> init_x = {static_cast<T>(i)};
    TensorFromVector(init_x, ctx, tensor_x);
  }

  ctx.Wait();

  // run
  f::AttributeMap attrs = {{"to_main_scope", false}, {"num_micro_batches", 3}};
  std::map<std::string, std::vector<std::string>> output;
  auto op = f::OpRegistry::CreateOp(op_type, {{"X", {"tmp"}}, {"Id", {"Id"}}},
                                    output, attrs);

  auto place = ctx.GetPlace();
  op->Run(*scope, place);
  ctx.Wait();

  std::list<f::Scope*>::const_iterator iter = scope->kids().begin();
  iter++;
  iter++;

  auto* kid_scope = *iter;
  auto* dst_var = kid_scope->FindVar("tmp");
  auto* tensor_out = dst_var->GetMutable<f::LoDTensor>();

  std::vector<T> out_vec;
  TensorToVector(*tensor_out, ctx, &out_vec);

  int expected = 1;
  EXPECT_EQ(static_cast<int>(out_vec[0]), expected);
}

template <typename T>
void Compare2(f::Scope* scope, const p::DeviceContext& ctx,
              std::string op_type) {
  // init
  auto var_x = scope->Var("tmp");
  auto x = var_x->GetMutable<f::LoDTensor>();
  std::vector<T> main_x = {1.0};
  TensorFromVector(main_x, ctx, x);

  auto var_id = scope->Var("Id");
  auto id = var_id->GetMutable<f::LoDTensor>();
  std::vector<int64_t> main_id = {0};
  TensorFromVector(main_id, ctx, id);
  for (int i = 0; i < 3; i++) {
    auto& child_scope = scope->NewScope();
    auto child_var = child_scope.Var("tmp");
    auto tensor_x = child_var->GetMutable<f::LoDTensor>();
    std::vector<T> init_x = {static_cast<T>(i)};
    TensorFromVector(init_x, ctx, tensor_x);
  }

  ctx.Wait();

  // run
  f::AttributeMap attrs = {{"to_main_scope", true}, {"num_micro_batches", 3}};
  std::map<std::string, std::vector<std::string>> output;
  auto op = f::OpRegistry::CreateOp(op_type, {{"X", {"tmp"}}, {"Id", {"Id"}}},
                                    output, attrs);

  auto place = ctx.GetPlace();
  op->Run(*scope, place);
  ctx.Wait();

  auto* dst_var = scope->FindVar("tmp");
  auto* tensor_out = dst_var->GetMutable<f::LoDTensor>();

  std::vector<T> out_vec;
  TensorToVector(*tensor_out, ctx, &out_vec);

  int expected = 0;
  EXPECT_EQ(static_cast<int>(out_vec[0]), expected);
}

#ifdef PADDLE_WITH_CUDA
TEST(copy_cross_scope, CUDA_fp32) {
  f::Scope scope;
  p::CUDADeviceContext ctx(p::CUDAPlace(0));
  Compare1<float>(&scope, ctx, "copy_cross_scope");
}

TEST(copy_cross_scope_to_main_scope, CUDA_fp32) {
  f::Scope scope;
  p::CUDADeviceContext ctx(p::CUDAPlace(0));
  Compare2<float>(&scope, ctx, "copy_cross_scope");
}
#elif PADDLE_WITH_ASCEND_CL
TEST(copy_cross_scope, NPU_fp32) {
  f::Scope scope;
  p::NPUDeviceContext ctx(p::NPUPlace(0));
  Compare1<float>(&scope, ctx, "copy_cross_scope");
}

TEST(copy_cross_scope_to_main_scope, NPU_fp32) {
  f::Scope scope;
  p::NPUDeviceContext ctx(p::NPUPlace(0));
  Compare2<float>(&scope, ctx, "copy_cross_scope");
}
#endif