executor_test.cc 2.6 KB
Newer Older
Q
qijun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

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 "paddle/framework/executor.h"
Y
Yang Yang 已提交
16
#include "gtest/gtest.h"
Y
Yang Yang 已提交
17
#include "paddle/framework/attribute.h"
Y
Yang Yang 已提交
18 19 20 21 22
#include "paddle/framework/grad_op_builder.h"
#include "paddle/framework/op_registry.h"
#include "paddle/framework/operator.h"

USE_OP(elementwise_add);
Q
qijun 已提交
23

Q
qijun 已提交
24 25 26
using namespace paddle::platform;
using namespace paddle::framework;

Q
qijun 已提交
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
class ExecutorTester : public ::testing::Test {
 public:
  virtual void SetUp() override {
    auto root_block = pdesc_.add_blocks();
    root_block->set_idx(0);
    root_block->set_parent_idx(-1);

    auto a = root_block->add_vars();
    a->set_name("a");
    auto a_lt = a->mutable_lod_tensor();
    a_lt->set_data_type(paddle::framework::DataType::FP32);
    a_lt->add_dims(640);
    a_lt->add_dims(640);

    auto b = root_block->add_vars();
    b->set_name("b");
    auto b_lt = b->mutable_lod_tensor();
    b_lt->set_data_type(paddle::framework::DataType::FP32);
    b_lt->add_dims(640);
    b_lt->add_dims(640);

    auto c = root_block->add_vars();
    c->set_name("c");
    auto c_lt = c->mutable_lod_tensor();
    c_lt->set_data_type(paddle::framework::DataType::FP32);
    c_lt->add_dims(640);
    c_lt->add_dims(640);

    auto op1 = root_block->add_ops();
    op1->set_type("elementwise_add");
    auto X = op1->add_inputs();
    X->set_parameter("X");
    X->add_arguments("a");
    auto Y = op1->add_inputs();
    Y->set_parameter("Y");
    Y->add_arguments("b");
  }

 protected:
  std::vector<Tensor>* outputs_{nullptr};
  ProgramDesc pdesc_;
  Scope scope_;
};

TEST_F(ExecutorTester, InitCPU) {
Q
qijun 已提交
72
  std::vector<Place> places;
Q
qijun 已提交
73
  CPUPlace cpu_place1, cpu_place2;
Q
qijun 已提交
74 75 76
  places.push_back(cpu_place1);
  places.push_back(cpu_place2);

Y
Yang Yang 已提交
77
  Executor* executor = new Executor(places);
Q
qijun 已提交
78 79 80 81 82 83 84 85 86 87 88
  executor->Run(pdesc_, &scope_, outputs_);
  delete executor;
}

#ifndef PADDLE_ONLY_CPU
TEST_F(ExecutorTester, InitGPU) {
  std::vector<Place> places;
  GPUPlace gpu_place0(0);
  GPUPlace gpu_place1(1);
  places.push_back(gpu_place0);
  places.push_back(gpu_place1);
Y
Yang Yang 已提交
89

Q
qijun 已提交
90 91
  Executor* executor = new Executor(places);
  executor->Run(pdesc_, &scope_, outputs_);
Q
qijun 已提交
92
  delete executor;
Y
Yang Yang 已提交
93
}
Q
qijun 已提交
94
#endif