uva_utils.h 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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.

#pragma once

#include <Python.h>
18 19 20 21
// Avoid a problem with copysign defined in pyconfig.h on Windows.
#ifdef copysign
#undef copysign
#endif
22

23 24 25 26 27 28 29 30
#include "paddle/fluid/operators/utils.h"
#include "paddle/phi/common/data_type.h"
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/dense_tensor.h"

namespace paddle {
namespace pybind {

31
static void tensor_uva(phi::DenseTensor *self_tensor, int device_id) {
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
  VLOG(4) << "Running in _uva interface.";
#if defined(PADDLE_WITH_CUDA)
  platform::DeviceContextPool &pool = platform::DeviceContextPool::Instance();
  auto *dev_ctx = pool.Get(platform::CUDAPlace(device_id));
  VLOG(4) << "Init the DeviceContext, and the place is " << dev_ctx->GetPlace();
  // Register the cpu memory as the cuda host memory
  const auto &data_numel = self_tensor->numel();
  const size_t &need_allocate_size =
      data_numel * framework::SizeOfType(
                       framework::TransToProtoVarType(self_tensor->dtype()));
  void *data_ptr = self_tensor->data();
  auto result =
      cudaHostRegister(data_ptr, need_allocate_size, cudaHostRegisterDefault);
  if (cudaSuccess != result) {
    VLOG(4) << "UVA(unified virtual addressing) failed allocate:"
            << need_allocate_size << ", the error code:" << result;
  }
  // Get device pointer from the function of cudaHostGetDevicePointer
  void *cuda_device_pointer = nullptr;
  cudaHostGetDevicePointer(reinterpret_cast<void **>(&cuda_device_pointer),
52 53
                           reinterpret_cast<void *>(data_ptr),
                           0);
54 55 56 57

  // Reset the memory with device pointer
  std::shared_ptr<memory::allocation::Allocation> holder =
      std::make_shared<memory::allocation::Allocation>(
58 59
          cuda_device_pointer,
          need_allocate_size,
60 61 62 63 64 65 66
          platform::CUDAPlace(device_id));
  self_tensor->ResetHolderWithType(holder, self_tensor->dtype());
#endif
}

}  // namespace pybind
}  // namespace paddle