data_device_transform.cc 1.7 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13
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. */

Y
Yi Wang 已提交
14
#include "paddle/fluid/framework/data_device_transform.h"
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

namespace paddle {
namespace framework {

static const platform::DeviceContext* GetDeviceContext(
    const platform::Place& src_place, const platform::Place& dst_place) {
  platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance();

  if (platform::is_gpu_place(src_place) && platform::is_cpu_place(dst_place)) {
    return pool.Get(src_place);
  } else if (platform::is_cpu_place(src_place) &&
             platform::is_gpu_place(dst_place)) {
    return pool.Get(dst_place);
  } else {
    PADDLE_THROW(
        "Currently, model parallelism is only supported between CPU and CUDA");
  }
}

Q
Qiao Longfei 已提交
34
void TransDataDevice(const Tensor& in, const platform::Place& dst_place,
35
                     Tensor* out) {
36 37 38
  VLOG(3) << "DeviceTransform in, src_place " << in.place()
          << " dst_place: " << dst_place;
  auto* dev_ctx = GetDeviceContext(in.place(), dst_place);
C
chengduo 已提交
39

Y
Yi Wang 已提交
40
  TensorCopy(in, dst_place, *dev_ctx, out);
C
chengduoZH 已提交
41 42

  if (in.place().which() != dst_place.which()) {
C
chengduo 已提交
43 44
    dev_ctx->Wait();
  }
45 46 47 48
}

}  // namespace framework
}  // namespace paddle