c_tensor.h 2.9 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 24 25 26
// 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

#if !defined(_WIN32) && !defined(__APPLE__)

#include "paddle/phi/capi/include/c_data_type.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef struct PD_Tensor PD_Tensor;

27
PD_DataType PD_TensorGetPDDataType(const PD_Tensor *tensor, PD_Status *status);
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84

PD_DataLayout PD_TensorGetDataLayout(const PD_Tensor *tensor,
                                     PD_Status *status);

int64_t PD_TensorGetByteSize(const PD_Tensor *tensor, PD_Status *status);

void *PD_TensorGetDataPointer(const PD_Tensor *tensor, PD_Status *status);

int64_t PD_TensorGetElementCount(const PD_Tensor *tensor, PD_Status *status);

int64_t PD_TensorGetNumDims(const PD_Tensor *tensor, PD_Status *status);

int64_t PD_TensorGetDim(const PD_Tensor *tensor,
                        size_t index,
                        PD_Status *status);

void PD_TensorGetLoD(const PD_Tensor *tensor,
                     PD_List *data,
                     PD_List *offset,
                     PD_Status *status);

bool PD_TensorIsInitialized(const PD_Tensor *tensor, PD_Status *status);

bool PD_TensorIsValid(const PD_Tensor *tensor, PD_Status *status);

void *PD_TensorGetHolder(const PD_Tensor *tensor, PD_Status *status);

void PD_TensorSetDims(PD_Tensor *tensor,
                      int64_t ndims,
                      const int64_t *dims,
                      PD_Status *status);

void PD_TensorSetDataType(PD_Tensor *tensor,
                          PD_DataType dtype,
                          PD_Status *status);

void PD_TensorSetDataLayout(PD_Tensor *tensor,
                            PD_DataLayout layout,
                            PD_Status *status);

void PD_TensorResetLoD(PD_Tensor *tensor,
                       PD_List data,
                       PD_List offset,
                       PD_Status *status);

PD_Tensor *PD_NewTensor();

void PD_DeleteTensor(PD_Tensor *tensor);

void PD_TensorShareDataWith(PD_Tensor *dst,
                            const PD_Tensor *src,
                            PD_Status *status);

void PD_TensorShareLoDWith(PD_Tensor *dst,
                           const PD_Tensor *src,
                           PD_Status *status);

85 86 87 88
PD_Tensor *PD_OptionalTensorGetPointer(PD_Tensor *tensor);

PD_List PD_TensorVectorToList(PD_Tensor *tensor);

89 90 91 92
#ifdef __cplusplus
}  // extern "C"
#endif
#endif