119 lines
3.8 KiB
C++
119 lines
3.8 KiB
C++
// Copyright (c) 2023 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 "paddle/phi/core/dense_tensor.h"
|
|
#include "paddle/phi/core/tensor_utils.h"
|
|
#include "paddle/phi/kernels/funcs/tensor_formatter.h"
|
|
|
|
namespace phi {
|
|
|
|
const char kForward[] = "FORWARD";
|
|
const char kBackward[] = "BACKWARD";
|
|
|
|
template <typename Context>
|
|
void ShadowFeedKernel(const Context& dev_ctx,
|
|
const DenseTensor& x,
|
|
int dst_place_type,
|
|
DenseTensor* out) {
|
|
Place target_place;
|
|
switch (dst_place_type) {
|
|
case 0: // CPUPlace
|
|
target_place = CPUPlace();
|
|
break;
|
|
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
|
|
case 1: // CUDAPlace
|
|
target_place = GPUPlace(backends::gpu::GetCurrentDeviceId());
|
|
break;
|
|
#elif defined(PADDLE_WITH_XPU)
|
|
case 1: // XPUPlace
|
|
target_place = XPUPlace(backends::xpu::GetXPUCurrentDeviceId());
|
|
break;
|
|
#elif defined(PADDLE_WITH_CUSTOM_DEVICE)
|
|
case 1: // CustomPlace
|
|
target_place = dev_ctx.GetPlace();
|
|
break;
|
|
#endif
|
|
default:
|
|
PADDLE_THROW(errors::Unimplemented("dst_place_type: %d is not supported.",
|
|
dst_place_type));
|
|
break;
|
|
}
|
|
|
|
if (!(x.has_allocation())) {
|
|
if (target_place == CPUPlace()) {
|
|
dev_ctx.HostAlloc(out, out->dtype());
|
|
} else {
|
|
dev_ctx.Alloc(out, out->dtype());
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (x.place() == target_place) {
|
|
out->ShareDataWith(x);
|
|
out->set_lod(x.lod());
|
|
} else {
|
|
Copy<Context>(dev_ctx, x, target_place, true, out);
|
|
}
|
|
}
|
|
|
|
template <typename Context>
|
|
void ShadowFeedTensorsKernel(const Context& dev_ctx,
|
|
const std::vector<const DenseTensor*>& xs,
|
|
int dst_place_type,
|
|
std::vector<DenseTensor*> outs) {
|
|
for (size_t i = 0; i < xs.size(); ++i) {
|
|
ShadowFeedKernel<Context>(dev_ctx, *(xs[i]), dst_place_type, outs[i]);
|
|
}
|
|
}
|
|
|
|
template <typename Context>
|
|
void PrintKernel(const Context& dev_ctx,
|
|
const DenseTensor& x,
|
|
int first_n,
|
|
const std::string& message,
|
|
int summarize,
|
|
bool print_tensor_name,
|
|
bool print_tensor_type,
|
|
bool print_tensor_shape,
|
|
bool print_tensor_layout,
|
|
bool print_tensor_lod,
|
|
const std::string& print_phase,
|
|
bool is_forward,
|
|
DenseTensor* out) {
|
|
Copy<Context>(dev_ctx, x, dev_ctx.GetPlace(), true, out);
|
|
out->set_lod(x.lod());
|
|
|
|
if ((is_forward && print_phase == kBackward) ||
|
|
(!is_forward && print_phase == kForward)) {
|
|
return;
|
|
}
|
|
|
|
// TODO(phlrain): support first_n using a input tensor
|
|
// if (first_n > 0 && ++times_ > first_n) return;
|
|
|
|
// TODO(phlrain): support printed_var_name
|
|
funcs::TensorFormatter formatter;
|
|
const std::string& name = print_tensor_name ? "var" : "";
|
|
formatter.SetPrintTensorType(print_tensor_type);
|
|
formatter.SetPrintTensorShape(print_tensor_shape);
|
|
formatter.SetPrintTensorLod(print_tensor_lod);
|
|
formatter.SetPrintTensorLayout(print_tensor_layout);
|
|
formatter.SetSummarize(summarize);
|
|
formatter.Print(x, name, message);
|
|
}
|
|
|
|
} // namespace phi
|