1 /** 2 * Copyright 2020-2023 Huawei Technologies Co., Ltd 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 #ifndef NNACL_TENSOR_C_H_ 17 #define NNACL_TENSOR_C_H_ 18 #include "nnacl/op_base.h" 19 20 typedef struct TensorC { 21 bool shape_changed_; 22 int data_type_; 23 int format_; 24 int category_; 25 void *data_; 26 size_t shape_size_; 27 int shape_[MAX_SHAPE_SIZE]; 28 char *name_; // only used in micro now. 29 } TensorC; 30 31 #endif // NNACL_TENSOR_C_H_ 32