tensor_meta.cc 2.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

15
#include "paddle/phi/core/tensor_meta.h"
16

17
namespace phi {
18

19 20
DenseTensorMeta::DenseTensorMeta() { use_cudnn = true; }

21
DenseTensorMeta::DenseTensorMeta(DataType dtype, const DDim& dims)
22 23 24
    : dims(dims), dtype(dtype) {
  use_cudnn = true;
}
25

26
DenseTensorMeta::DenseTensorMeta(DataType dtype,
27
                                 const DDim& dims,
28 29
                                 DataLayout layout,
                                 size_t offset)
30 31 32
    : dims(dims), dtype(dtype), layout(layout), offset(offset) {
  use_cudnn = true;
}
33

34
DenseTensorMeta::DenseTensorMeta(DataType dtype,
35 36
                                 const DDim& dims,
                                 DataLayout layout,
37 38
                                 const LoD& lod,
                                 size_t offset)
39 40 41
    : dims(dims), dtype(dtype), layout(layout), lod(lod), offset(offset) {
  use_cudnn = true;
}
42 43 44

bool DenseTensorMeta::valid() const noexcept {
  bool valid{true};
45
  valid = valid && (dtype != DataType::UNDEFINED);
46 47 48 49 50
  valid = valid && (layout != DataLayout::UNDEFINED);
  valid = valid && (is_scalar || product(dims) >= 0);
  return valid;
}

J
Jack Zhou 已提交
51 52 53 54 55 56 57 58
StringTensorMeta::StringTensorMeta(const DDim& dims) : dims(dims) {}

bool StringTensorMeta::valid() const noexcept {
  bool valid{true};
  valid = valid && (is_scalar || product(dims) >= 0);
  return valid;
}

Z
zhangkaihuo 已提交
59 60 61 62 63 64 65 66 67 68 69 70
SparseTensorMeta::SparseTensorMeta(const DDim& dims) : dims(dims) {}

SparseTensorMeta::SparseTensorMeta(const DDim& dims, const DataLayout& layout)
    : dims(dims), layout(layout) {}

bool SparseTensorMeta::valid() const noexcept {
  bool valid{true};
  valid = valid && (layout != DataLayout::UNDEFINED);
  valid = valid && (product(dims) >= 0);
  return valid;
}

71
}  // namespace phi