tensor_utils.h 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2021 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

17 18
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/tensor_meta.h"
19

20
namespace phi {
21

22
class DenseTensorUtils {
23 24 25 26 27
 public:
  static DenseTensorMeta* GetMutableMeta(DenseTensor* tensor) {
    return &(tensor->meta_);
  }

28
  static DenseTensor Slice(const DenseTensor& tensor,
29 30
                           int64_t begin_idx,
                           int64_t end_idx) {
31 32
    size_t bytes = tensor.numel() * SizeOf(tensor.dtype());
    PADDLE_ENFORCE_GE(tensor.capacity(),
33 34 35 36
                      bytes,
                      paddle::platform::errors::InvalidArgument(
                          "The memory size %d should be enough to meet the "
                          "volume required by metadata %d.",
37
                          tensor.capacity(),
38
                          bytes));
39 40 41 42 43 44 45
    PADDLE_ENFORCE_GE(begin_idx,
                      0,
                      paddle::platform::errors::OutOfRange(
                          "The start row index must be greater than 0."
                          "But received the start index is d%.",
                          begin_idx));
    PADDLE_ENFORCE_LE(end_idx,
46
                      tensor.dims()[0],
47 48 49 50 51 52 53 54 55 56
                      paddle::platform::errors::OutOfRange(
                          "The end row index is out of bound."));
    PADDLE_ENFORCE_LT(
        begin_idx,
        end_idx,
        paddle::platform::errors::InvalidArgument(
            "The start row index must be less than the end row index."
            "But received the start index = %d, the end index = %d.",
            begin_idx,
            end_idx));
57 58
    DenseTensor ret(tensor);
    if (tensor.dims()[0] != 1) {
59
      ret.meta_.dims[0] = end_idx - begin_idx;
60 61 62
      ret.meta_.offset = tensor.meta_.offset +
                         begin_idx * (tensor.numel() / tensor.dims()[0]) *
                             paddle::experimental::SizeOf(tensor.dtype());
63 64 65
    }
    return ret;
  }
66 67
};

68
}  // namespace phi