Home
last modified time | relevance | path

Searched refs:input_operand_indexes (Results 1 – 19 of 19) sorted by relevance

/third_party/ffmpeg/libavfilter/dnn/
Ddnn_backend_native_layer_mathbinary.c56 … 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 …]
Ddnn_backend_native_layer_conv2d.c31 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()
Ddnn_backend_native_layer_maximum.c40 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()
Ddnn_backend_native_layer_depth2space.c39 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()
Ddnn_backend_native_layer_avgpool.c48 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()
Ddnn_backend_native_layer_dense.c74 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()
Ddnn_backend_native_layer_mathunary.c42 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()
Ddnn_backend_native_layer_pad.c40 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()
Ddnn_backend_native_layer_depth2space.h69 int ff_dnn_execute_layer_depth2space(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layer_maximum.h41 int ff_dnn_execute_layer_maximum(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layer_avgpool.h66 int ff_dnn_execute_layer_avg_pool(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layers.h27 typedef int (*LAYER_EXEC_FUNC)(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layer_pad.h40 int ff_dnn_execute_layer_pad(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layer_dense.h63 int ff_dnn_execute_layer_dense(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layer_mathbinary.h51 int ff_dnn_execute_layer_math_binary(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layer_conv2d.h66 int ff_dnn_execute_layer_conv2d(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native_layer_mathunary.h89 int ff_dnn_execute_layer_math_unary(DnnOperand *operands, const int32_t *input_operand_indexes,
Ddnn_backend_native.h64 int32_t input_operand_indexes[4]; member
Ddnn_backend_native.c386 native_model->layers[layer].input_operand_indexes, in execute_model_native()