/third_party/ffmpeg/libavfilter/dnn/ |
D | dnn_backend_native_layer_mathbinary.c | 56 … DnnOperand *input, DnnOperand *output, DnnOperand *operands, const int32_t *input_operand_indexes) in math_binary_commutative() argument 69 const DnnOperand *input1 = &operands[input_operand_indexes[1]]; in math_binary_commutative() 76 … DnnOperand *input, DnnOperand *output, DnnOperand *operands, const int32_t *input_operand_indexes) in math_binary_not_commutative() argument 93 const DnnOperand *input1 = &operands[input_operand_indexes[1]]; in math_binary_not_commutative() 114 layer->input_operand_indexes[input_index] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_math_binary() 115 if (layer->input_operand_indexes[input_index] >= operands_num) { in ff_dnn_load_layer_math_binary() 127 layer->input_operand_indexes[input_index] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_math_binary() 128 if (layer->input_operand_indexes[input_index] >= operands_num) { in ff_dnn_load_layer_math_binary() 148 int ff_dnn_execute_layer_math_binary(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_math_binary() argument 151 const DnnOperand *input = &operands[input_operand_indexes[0]]; in ff_dnn_execute_layer_math_binary() [all …]
|
D | dnn_backend_native_layer_conv2d.c | 31 const int32_t *input_operand_indexes; member 100 layer->input_operand_indexes[0] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_conv2d() 104 …if (layer->input_operand_indexes[0] >= operands_num || layer->output_operand_index >= operands_num… in ff_dnn_load_layer_conv2d() 117 int32_t input_operand_index = thread_common_param->input_operand_indexes[0]; in dnn_execute_layer_conv2d_thread() 187 int ff_dnn_execute_layer_conv2d(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_conv2d() argument 200 int height = operands[input_operand_indexes[0]].dims[1]; in ff_dnn_execute_layer_conv2d() 201 int width = operands[input_operand_indexes[0]].dims[2]; in ff_dnn_execute_layer_conv2d() 206 output_operand->dims[0] = operands[input_operand_indexes[0]].dims[0]; in ff_dnn_execute_layer_conv2d() 210 output_operand->data_type = operands[input_operand_indexes[0]].data_type; in ff_dnn_execute_layer_conv2d() 224 thread_common_param.input_operand_indexes = input_operand_indexes; in ff_dnn_execute_layer_conv2d()
|
D | dnn_backend_native_layer_maximum.c | 40 layer->input_operand_indexes[0] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_maximum() 44 …if (layer->input_operand_indexes[0] >= operands_num || layer->output_operand_index >= operands_num… in ff_dnn_load_layer_maximum() 51 int ff_dnn_execute_layer_maximum(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_maximum() argument 54 const DnnOperand *input = &operands[input_operand_indexes[0]]; in ff_dnn_execute_layer_maximum()
|
D | dnn_backend_native_layer_depth2space.c | 39 layer->input_operand_indexes[0] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_depth2space() 44 …if (layer->input_operand_indexes[0] >= operands_num || layer->output_operand_index >= operands_num… in ff_dnn_load_layer_depth2space() 51 int ff_dnn_execute_layer_depth2space(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_depth2space() argument 57 int32_t input_operand_index = input_operand_indexes[0]; in ff_dnn_execute_layer_depth2space()
|
D | dnn_backend_native_layer_avgpool.c | 48 layer->input_operand_indexes[0] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_avg_pool() 52 …if (layer->input_operand_indexes[0] >= operands_num || layer->output_operand_index >= operands_num… in ff_dnn_load_layer_avg_pool() 58 int ff_dnn_execute_layer_avg_pool(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_avg_pool() argument 63 int32_t input_operand_index = input_operand_indexes[0]; in ff_dnn_execute_layer_avg_pool()
|
D | dnn_backend_native_layer_dense.c | 74 layer->input_operand_indexes[0] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_dense() 78 …if (layer->input_operand_indexes[0] >= operands_num || layer->output_operand_index >= operands_num… in ff_dnn_load_layer_dense() 85 int ff_dnn_execute_layer_dense(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_dense() argument 89 int32_t input_operand_index = input_operand_indexes[0]; in ff_dnn_execute_layer_dense()
|
D | dnn_backend_native_layer_mathunary.c | 42 layer->input_operand_indexes[0] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_math_unary() 46 …if (layer->input_operand_indexes[0] >= operands_num || layer->output_operand_index >= operands_num… in ff_dnn_load_layer_math_unary() 54 int ff_dnn_execute_layer_math_unary(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_math_unary() argument 57 const DnnOperand *input = &operands[input_operand_indexes[0]]; in ff_dnn_execute_layer_math_unary()
|
D | dnn_backend_native_layer_pad.c | 40 layer->input_operand_indexes[0] = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_pad() 45 …if (layer->input_operand_indexes[0] >= operands_num || layer->output_operand_index >= operands_num… in ff_dnn_load_layer_pad() 78 int ff_dnn_execute_layer_pad(DnnOperand *operands, const int32_t *input_operand_indexes, in ff_dnn_execute_layer_pad() argument 87 int32_t input_operand_index = input_operand_indexes[0]; in ff_dnn_execute_layer_pad()
|
D | dnn_backend_native_layer_depth2space.h | 69 int ff_dnn_execute_layer_depth2space(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layer_maximum.h | 41 int ff_dnn_execute_layer_maximum(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layer_avgpool.h | 66 int ff_dnn_execute_layer_avg_pool(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layers.h | 27 typedef int (*LAYER_EXEC_FUNC)(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layer_pad.h | 40 int ff_dnn_execute_layer_pad(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layer_dense.h | 63 int ff_dnn_execute_layer_dense(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layer_mathbinary.h | 51 int ff_dnn_execute_layer_math_binary(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layer_conv2d.h | 66 int ff_dnn_execute_layer_conv2d(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native_layer_mathunary.h | 89 int ff_dnn_execute_layer_math_unary(DnnOperand *operands, const int32_t *input_operand_indexes,
|
D | dnn_backend_native.h | 64 int32_t input_operand_indexes[4]; member
|
D | dnn_backend_native.c | 386 native_model->layers[layer].input_operand_indexes, in execute_model_native()
|