forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…addlePaddle#38275) * Replaced pten::LoD with paddle::framework::LoD * Overrided CPUVector with CUDAVector * Refactored paddle::framework::Vector
- Loading branch information
1 parent
6ff3596
commit bbe879f
Showing
12 changed files
with
124 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* Copyright (c) 2016 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/mixed_vector.h" | ||
|
||
#include <algorithm> | ||
#include <initializer_list> | ||
#include <memory> | ||
#include <mutex> // NOLINT | ||
#include <utility> | ||
#include <vector> | ||
|
||
#include "glog/logging.h" | ||
#include "paddle/fluid/framework/details/cow_ptr.h" | ||
#include "paddle/fluid/memory/malloc.h" | ||
#include "paddle/fluid/memory/memcpy.h" | ||
#include "paddle/fluid/platform/device_context.h" | ||
#include "paddle/utils/none.h" | ||
#include "paddle/utils/optional.h" | ||
|
||
namespace paddle { | ||
namespace framework { | ||
|
||
template <typename T> | ||
void CopyToCPUHelper(std::vector<T> *cpu_, paddle::memory::AllocationPtr *gpu_, | ||
size_t *gpu_memory_size_) { | ||
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) | ||
// COPY GPU Data To CPU | ||
auto *dev_ctx = static_cast<platform::CUDADeviceContext *>( | ||
platform::DeviceContextPool::Instance().Get((*gpu_)->place())); | ||
auto stream = dev_ctx->stream(); | ||
void *src = (*gpu_)->ptr(); | ||
void *dst = cpu_->data(); | ||
paddle::memory::Copy(platform::CPUPlace(), dst, | ||
OptionalCUDAPlace(*gpu_).get(), src, *gpu_memory_size_, | ||
stream); | ||
dev_ctx->Wait(); | ||
#endif | ||
} | ||
|
||
template <typename T> | ||
void CopyCPUDataToCUDAHelper(std::vector<T> *cpu_, | ||
paddle::memory::AllocationPtr *gpu_, | ||
size_t *gpu_memory_size_, | ||
const platform::Place &place) { | ||
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) | ||
void *src = cpu_->data(); | ||
*gpu_memory_size_ = cpu_->size() * sizeof(T); // sizeof(T) | ||
(*gpu_) = memory::Alloc(place, *gpu_memory_size_); | ||
void *dst = (*gpu_)->ptr(); | ||
auto *dev_ctx = static_cast<platform::CUDADeviceContext *>( | ||
platform::DeviceContextPool::Instance().Get(place)); | ||
auto stream = dev_ctx->stream(); | ||
paddle::memory::Copy(OptionalCUDAPlace(*gpu_).get(), dst, | ||
platform::CPUPlace(), src, *gpu_memory_size_, stream); | ||
#endif | ||
} | ||
|
||
#define INSTANTIATE_VECTOR_FOR_TYPE(__TYPE__) \ | ||
template <> \ | ||
void Vector<__TYPE__>::VectorData::CopyToCPU() const { \ | ||
CopyToCPUHelper<__TYPE__>(&cpu_, &gpu_, &gpu_memory_size_); \ | ||
} \ | ||
\ | ||
template <> \ | ||
void Vector<__TYPE__>::VectorData::CopyCPUDataToCUDA( \ | ||
const platform::Place &place) const { \ | ||
CopyCPUDataToCUDAHelper<__TYPE__>(&cpu_, &gpu_, &gpu_memory_size_, place); \ | ||
} | ||
|
||
INSTANTIATE_VECTOR_FOR_TYPE(size_t) | ||
INSTANTIATE_VECTOR_FOR_TYPE(int) | ||
INSTANTIATE_VECTOR_FOR_TYPE(int64_t) | ||
|
||
}; // namespace framework | ||
} // namespace paddle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.