device_context_test.cc 2.3 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;

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

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

36
  int count = paddle::platform::GetCUDADeviceCount();
Q
qijun 已提交
37
  for (int i = 0; i < count; i++) {
Y
Yi Wang 已提交
38
    CUDADeviceContext* device_context = new CUDADeviceContext(GPUPlace(i));
Q
qijun 已提交
39 40
    Eigen::GpuDevice* gpu_device = device_context->eigen_device();
    ASSERT_NE(nullptr, gpu_device);
Q
qijun 已提交
41 42 43 44
    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 已提交
45
    ASSERT_NE(nullptr, device_context->stream());
Q
qijun 已提交
46 47 48
    delete device_context;
  }
}
D
dzhwinter 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

TEST(Device, CudnnDeviceContext) {
  using paddle::platform::CudnnDeviceContext;
  using paddle::platform::CudnnPlace;
  if (paddle::platform::dynload::HasCUDNN()) {
    int count = paddle::platform::GetCUDADeviceCount();
    for (int i = 0; i < count; ++i) {
      CudnnDeviceContext* device_context =
          new CudnnDeviceContext(CudnnPlace(i));
      cudnnHandle_t cudnn_handle = device_context->cudnn_handle();
      ASSERT_NE(nullptr, cudnn_handle);
      ASSERT_NE(nullptr, device_context->stream());
      delete device_context;
    }
  }
}