api_gen_utils.h 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/* Copyright (c) 2022 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/api/include/tensor.h"
#include "paddle/phi/core/compat/convert_utils.h"
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/meta_tensor.h"
#include "paddle/phi/core/selected_rows.h"
#include "paddle/phi/core/sparse_coo_tensor.h"
#include "paddle/phi/core/sparse_csr_tensor.h"
J
Jack Zhou 已提交
24
#include "paddle/phi/core/string_tensor.h"
25 26 27 28

namespace paddle {
namespace experimental {

J
Jack Zhou 已提交
29
enum class TensorType { DENSE_TENSOR, SPARSE_CSR, SPARSE_COO, STRING_TENSOR };
30 31 32 33 34

/* ------------------ for input ----------------------- */

std::shared_ptr<phi::DenseTensor> TensorToDenseTensor(const Tensor& tensor);

35
paddle::optional<phi::DenseTensor> TensorToDenseTensor(
36 37
    const paddle::optional<Tensor>& tensor);

38
std::unique_ptr<std::vector<phi::DenseTensor*>> TensorToDenseTensor(
39 40
    const std::vector<Tensor>& tensors);

41 42 43 44 45 46 47
std::vector<const phi::DenseTensor*> TensorToConstDenseTensorPtr(
    const std::vector<Tensor>& tensors);

paddle::optional<std::vector<const phi::DenseTensor*>>
TensorToConstDenseTensorPtr(
    const paddle::optional<std::vector<Tensor>>& tensors);

48 49
std::shared_ptr<phi::SelectedRows> TensorToSelectedRows(const Tensor& tensor);

50 51
paddle::optional<phi::SelectedRows> TensorToSelectedRows(
    const paddle::optional<Tensor>& tensor);
52

J
Jack Zhou 已提交
53 54
std::shared_ptr<phi::StringTensor> TensorToStringTensor(const Tensor& tensor);

55 56
/* ----------------- for infer_meta --------------------- */

57
phi::MetaTensor MakeMetaTensor(const phi::TensorBase& tensor);
58

59 60
phi::MetaTensor MakeMetaTensor(
    const paddle::optional<phi::DenseTensor>& tensor);
Z
zyfncg 已提交
61

62
std::vector<phi::MetaTensor> MakeMetaTensor(
63
    const std::vector<const phi::DenseTensor*>& tensors);
64

65 66 67
std::vector<phi::MetaTensor> MakeMetaTensor(
    const std::vector<phi::DenseTensor*>& tensors);

68 69
phi::MetaTensor MakeMetaTensor(
    const paddle::optional<phi::SelectedRows>& tensor);
Z
zyfncg 已提交
70

71 72 73
std::vector<phi::MetaTensor> MakeMetaTensor(
    const paddle::optional<std::vector<const phi::DenseTensor*>>& tensors);

74 75 76 77 78 79 80 81
/* ------------------ for output ----------------------- */

phi::DenseTensor* SetKernelOutput(Backend backend, Tensor* out);

std::vector<phi::DenseTensor*> SetKernelOutput(size_t out_size,
                                               Backend backend,
                                               std::vector<Tensor>* out);

82 83 84 85 86 87 88 89
std::vector<phi::DenseTensor*> SetInplaceVectorKernelOutput(
    size_t out_size, Backend backend, std::vector<Tensor>* out);

std::vector<phi::DenseTensor*> SetInplaceOptionalVectorKernelOutput(
    size_t out_size,
    Backend backend,
    const paddle::optional<std::vector<Tensor>>& out);

90 91 92
// For backward api
std::vector<phi::DenseTensor*> SetKernelOutput(std::vector<Tensor*>* out);

93 94 95 96
phi::SelectedRows* SetSelectedRowsKernelOutput(Backend backend, Tensor* out);

phi::TensorBase* SetSparseKernelOutput(Tensor* out, TensorType type);

J
Jack Zhou 已提交
97 98 99 100
phi::TensorBase* SetStringsKernelOutput(Backend backend,
                                        Tensor* out,
                                        TensorType type);

101 102
}  // namespace experimental
}  // namespace paddle