meta_tensor.h 3.7 KB
Newer Older
1
/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

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 19 20 21 22
#include "paddle/phi/common/data_type.h"
#include "paddle/phi/common/layout.h"
#include "paddle/phi/core/ddim.h"
#include "paddle/phi/core/macros.h"
#include "paddle/phi/core/tensor_base.h"
#include "paddle/phi/core/tensor_meta.h"
23

24
namespace phi {
25

26 27 28
// TODO(chenweihang): add other flags if needed
struct MetaConfig {
  bool is_runtime{true};
F
From00 已提交
29
  bool is_run_mkldnn_kernel{false};
30 31 32
  MetaConfig() = default;

  // supporting implicit construction is easier to use
F
From00 已提交
33 34 35
  MetaConfig(bool is_runtime, bool is_run_mkldnn_kernel)
      : is_runtime(is_runtime),
        is_run_mkldnn_kernel(is_run_mkldnn_kernel) {}  // NOLINT
36 37
};

38 39
class MetaTensor {
 public:
40 41 42
  typedef void (*unspecified_bool_type)();

  MetaTensor() : tensor_(nullptr) {}
43 44

  // supporting implicit construction is easier to use
W
wanghuancoder 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57
  MetaTensor(TensorBase* tensor, bool strided_kernel_used = false)  // NOLINT
      : tensor_(tensor), strided_kernel_used_(strided_kernel_used) {}
  MetaTensor(const TensorBase& tensor,
             bool strided_kernel_used = false)
      : tensor_(const_cast<TensorBase*>(&tensor)),  // NOLINT
        strided_kernel_used_(strided_kernel_used) {}
  MetaTensor(const TensorBase* tensor,
             bool strided_kernel_used = false)     // NOLINT
      : tensor_(const_cast<TensorBase*>(tensor)),  // NOLINT
        strided_kernel_used_(strided_kernel_used) {}
  MetaTensor(TensorBase& tensor, bool strided_kernel_used = false)  // NOLINT
      : tensor_(&tensor),                                           // NOLINT
        strided_kernel_used_(strided_kernel_used) {}
58

59
  MetaTensor(MetaTensor&&) = default;
60 61 62
  MetaTensor& operator=(MetaTensor&&) = default;
  MetaTensor(const MetaTensor&) = default;
  MetaTensor& operator=(const MetaTensor&) = default;
63 64 65 66 67 68 69

  virtual ~MetaTensor() = default;

  virtual int64_t numel() const;
  virtual DDim dims() const;
  virtual DataType dtype() const;
  virtual DataLayout layout() const;
W
wanghuancoder 已提交
70
  virtual DDim strides() const;
71 72 73
  virtual void set_dims(const DDim& dims);
  virtual void set_dtype(DataType dtype);
  virtual void set_layout(DataLayout layout);
W
wanghuancoder 已提交
74
  virtual void set_strides(const DDim& strides);
75

76
  virtual void share_lod(const MetaTensor& meta_tensor);
77
  virtual void share_meta(const MetaTensor& meta_tensor);
Y
YuanRisheng 已提交
78
  virtual void share_dims(const MetaTensor& meta_tensor);
W
wanghuancoder 已提交
79
  virtual void share_strides(const MetaTensor& meta_tensor);
80

81 82
  virtual bool initialized() const;

Y
YuanRisheng 已提交
83 84 85 86 87 88
  virtual bool is_selected_rows() const;
  virtual bool is_dense() const;
  // TODO(YuanRisheng) This API is for compatible with Fluid
  //  and it will be deleted in the future.
  virtual bool is_tensor_array() const;

89 90
  virtual bool is_same_tensor(const MetaTensor& meta_tensor) const;

91 92 93 94 95 96 97 98 99
  virtual operator unspecified_bool_type() const {
    return tensor_ == nullptr ? 0 : unspecified_bool_true;
  }

  virtual bool operator!() const { return tensor_ == nullptr; }

 protected:
  static void unspecified_bool_true() {}

100
 private:
101 102
  // Because the lod in compiletime and runtime is different,
  // so `LoD` cannot in public methods
103
  const LoD& lod() const;
C
Chen Weihang 已提交
104
  TensorBase* tensor() const;
105 106

  TensorBase* tensor_ = nullptr;
W
wanghuancoder 已提交
107
  bool strided_kernel_used_ = false;
108 109
};

110
}  // namespace phi