FFmpeg
Data Fields
DnnOperand Struct Reference

#include <dnn_backend_native.h>

Data Fields

int32_t dims [4]
 there are two memory layouts, NHWC or NCHW, so we use dims, dims[0] is Number. More...
 
DNNOperandType type
 input/output/intermediate operand of the network More...
 
DNNDataType data_type
 support different kinds of data type such as float, half float, int8 etc, first support float now. More...
 
int8_t isNHWC
 NHWC if 1, otherwise NCHW. More...
 
char name [128]
 to avoid possible memory leak, do not use char *name More...
 
void * data
 data pointer with data length in bytes. More...
 
int32_t length
 
int32_t usedNumbersLeft
 

Detailed Description

Definition at line 69 of file dnn_backend_native.h.

Field Documentation

◆ dims

int32_t DnnOperand::dims[4]

◆ type

DNNOperandType DnnOperand::type

input/output/intermediate operand of the network

Definition at line 79 of file dnn_backend_native.h.

Referenced by execute_model_native(), ff_dnn_load_model_native(), and get_input_native().

◆ data_type

DNNDataType DnnOperand::data_type

support different kinds of data type such as float, half float, int8 etc, first support float now.

Definition at line 85 of file dnn_backend_native.h.

Referenced by execute_model_native(), ff_dnn_execute_layer_avg_pool(), ff_dnn_execute_layer_conv2d(), ff_dnn_execute_layer_dense(), ff_dnn_execute_layer_depth2space(), ff_dnn_execute_layer_pad(), ff_dnn_load_model_native(), and get_input_native().

◆ isNHWC

int8_t DnnOperand::isNHWC

NHWC if 1, otherwise NCHW.

let's first support NHWC only, this flag is for extensive usage.

Definition at line 91 of file dnn_backend_native.h.

Referenced by ff_dnn_load_model_native().

◆ name

char DnnOperand::name[128]

to avoid possible memory leak, do not use char *name

Definition at line 96 of file dnn_backend_native.h.

Referenced by convert_from_tensorflow.Operand::__str__(), execute_model_native(), ff_dnn_load_model_native(), and get_input_native().

◆ data

void* DnnOperand::data

◆ length

int32_t DnnOperand::length

◆ usedNumbersLeft

int32_t DnnOperand::usedNumbersLeft

Definition at line 106 of file dnn_backend_native.h.


The documentation for this struct was generated from the following file: