device_context_test.cc 1.8 KB
Newer Older
Q
QI JUN 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

Q
qijun 已提交
15
#include "paddle/platform/device_context.h"
Q
QI JUN 已提交
16 17
#include "gtest/gtest.h"

Q
qijun 已提交
18
TEST(Device, Init) {
Y
Yi Wang 已提交
19 20 21 22
  using paddle::platform::DeviceContext;
  using paddle::platform::CUDADeviceContext;
  using paddle::platform::GPUPlace;

Q
QI JUN 已提交
23 24
  int count = paddle::platform::GetDeviceCount();
  for (int i = 0; i < count; i++) {
Y
Yi Wang 已提交
25
    DeviceContext* device_context = new CUDADeviceContext(GPUPlace(i));
Q
qijun 已提交
26
    Eigen::GpuDevice* gpu_device =
Y
Yi Wang 已提交
27
        device_context->template get_eigen_device<Eigen::GpuDevice>();
Q
qijun 已提交
28
    ASSERT_NE(nullptr, gpu_device);
Q
qijun 已提交
29
    delete device_context;
Q
QI JUN 已提交
30
  }
Q
qijun 已提交
31 32 33
}

TEST(Device, CUDADeviceContext) {
Y
Yi Wang 已提交
34 35 36
  using paddle::platform::CUDADeviceContext;
  using paddle::platform::GPUPlace;

Q
qijun 已提交
37 38
  int count = paddle::platform::GetDeviceCount();
  for (int i = 0; i < count; i++) {
Y
Yi Wang 已提交
39
    CUDADeviceContext* device_context = new CUDADeviceContext(GPUPlace(i));
Q
qijun 已提交
40 41
    Eigen::GpuDevice* gpu_device = device_context->eigen_device();
    ASSERT_NE(nullptr, gpu_device);
Q
qijun 已提交
42 43 44 45
    cudnnHandle_t cudnn_handle = device_context->cudnn_handle();
    ASSERT_NE(nullptr, cudnn_handle);
    cublasHandle_t cublas_handle = device_context->cublas_handle();
    ASSERT_NE(nullptr, cublas_handle);
Q
qijun 已提交
46
    ASSERT_NE(nullptr, device_context->stream());
Q
qijun 已提交
47 48 49
    delete device_context;
  }
}