// Copyright (c) 2018 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 "paddle/fluid/framework/dlpack_tensor.h" #include #include namespace paddle { namespace platform { struct float16; } // namespace platform } // namespace paddle namespace paddle { namespace framework { namespace { // NOLINT template constexpr uint8_t GetDLDataTypeCode() { if (std::is_same>::value || std::is_same>::value) { return static_cast(kDLComplex); } if (std::is_same::value) { return static_cast(kDLBfloat); } return std::is_same::value || std::is_floating_point::value ? static_cast(kDLFloat) : (std::is_unsigned::value ? static_cast(kDLUInt) : (std::is_integral::value ? static_cast(kDLInt) : static_cast(-1))); } } // NOLINT template void TestMain(const platform::Place &place, uint16_t lanes) { DDim dims{4, 5, 6, 7}; Tensor tensor; tensor.Resize(dims); void *p = tensor.mutable_data(place); DLPackTensor dlpack_tensor(tensor, lanes); ::DLTensor &dl_tensor = dlpack_tensor; CHECK_EQ(p, dl_tensor.data); if (platform::is_cpu_place(place)) { CHECK_EQ(kDLCPU, dl_tensor.device.device_type); CHECK_EQ(0, dl_tensor.device.device_id); } else if (platform::is_gpu_place(place)) { CHECK_EQ(kDLGPU, dl_tensor.device.device_type); CHECK_EQ(BOOST_GET_CONST(platform::CUDAPlace, place).device, dl_tensor.device.device_id); } else if (platform::is_cuda_pinned_place(place)) { CHECK_EQ(kDLCPUPinned, dl_tensor.device.device_type); CHECK_EQ(0, dl_tensor.device.device_id); } else { CHECK_EQ(false, true); } CHECK_EQ(dims.size(), dl_tensor.ndim); for (auto i = 0; i < dims.size(); ++i) { CHECK_EQ(dims[i], dl_tensor.shape[i]); } CHECK_EQ(dl_tensor.strides == nullptr, true); CHECK_EQ(static_cast(0), dl_tensor.byte_offset); CHECK_EQ(lanes, dl_tensor.dtype.lanes); CHECK_EQ(sizeof(T) * 8, dl_tensor.dtype.bits); CHECK_EQ(GetDLDataTypeCode(), dl_tensor.dtype.code); } template void TestToDLManagedTensor(const platform::Place &place, uint16_t lanes) { DDim dims{6, 7}; Tensor tensor; tensor.Resize(dims); tensor.mutable_data(place); DLPackTensor dlpack_tensor(tensor, lanes); ::DLManagedTensor *dl_managed_tensor = dlpack_tensor.ToDLManagedTensor(); CHECK_EQ(dl_managed_tensor->manager_ctx == nullptr, true); for (auto i = 0; i < dims.size(); ++i) { CHECK_EQ(dims[i], dl_managed_tensor->dl_tensor.shape[i]); } CHECK_EQ(dl_managed_tensor->dl_tensor.strides[0] == 7, true); CHECK_EQ(dl_managed_tensor->dl_tensor.strides[1] == 1, true); dl_managed_tensor->deleter(dl_managed_tensor); } template void TestMainLoop() { #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) std::vector places{platform::CPUPlace(), platform::CUDAPlace(0), platform::CUDAPinnedPlace()}; if (platform::GetCUDADeviceCount() > 1) { places.emplace_back(platform::CUDAPlace(1)); } #else std::vector places{platform::CPUPlace()}; #endif std::vector lanes{1, 2}; for (auto &p : places) { for (auto &l : lanes) { TestMain(p, l); TestToDLManagedTensor(p, l); } } } TEST(dlpack, test_all) { #define TestCallback(cpp_type, proto_type) TestMainLoop() _ForEachDataType_(TestCallback); } } // namespace framework } // namespace paddle