test_device_context.cc 2.0 KB
Newer Older
W
Wilber 已提交
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
/* Copyright (c) 2022 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 "gtest/gtest.h"

// TODO(wilber): will remove after the cpu, gpu context megre.
#include "paddle/pten/backends/cpu/cpu_context.h"
// #include "paddle/pten/backends/all_context.h"

// NOTE: The paddle framework should add WITH_EIGEN option to support compile
// without eigen.
#include "unsupported/Eigen/CXX11/Tensor"

namespace pten {
namespace tests {

TEST(DeviceContext, cpu_context) {
  std::cout << "test training scenarios" << std::endl;
  {
    pten::CPUContext ctx;
32
    EXPECT_TRUE(ctx.eigen_device() != nullptr);
W
Wilber 已提交
33 34 35 36 37 38 39
  }

  std::cout << "test inference scenarios" << std::endl;
  Eigen::DefaultDevice* device = new Eigen::DefaultDevice();
  {
    pten::CPUContextResource ctx_res{device};
    pten::CPUContext ctx(ctx_res);
40
    EXPECT_TRUE(ctx.eigen_device() != nullptr);
W
Wilber 已提交
41 42 43 44 45
  }
  {
    pten::CPUContextResource ctx_res{nullptr};
    pten::CPUContext ctx(ctx_res);
    ctx.SetEigenDevice(device);
46
    EXPECT_TRUE(ctx.eigen_device() != nullptr);
W
Wilber 已提交
47 48 49 50 51 52 53
  }
  delete device;

  std::cout << "test copy constructor" << std::endl;
  {
    pten::CPUContext ctx1;
    pten::CPUContext ctx2(ctx1);
54
    EXPECT_EQ(ctx1.eigen_device(), ctx2.eigen_device());
W
Wilber 已提交
55 56 57 58 59 60 61 62
  }

  std::cout << "test move constructor" << std::endl;
  {
    pten::CPUContext ctx1 = pten::CPUContext();
    auto* eigen_device1 = ctx1.eigen_device();
    pten::CPUContext ctx2(std::move(ctx1));
    auto* eigen_device2 = ctx2.eigen_device();
63
    EXPECT_EQ(eigen_device1, eigen_device2);
W
Wilber 已提交
64 65 66 67 68
  }
}

}  // namespace tests
}  // namespace pten