Home
last modified time | relevance | path

Searched refs:output_operand_index (Results 1 – 20 of 20) sorted by relevance

/third_party/ffmpeg/tools/python/
Dconvert_from_tensorflow.py198 output_operand_index = self.add_operand(anode.name, Operand.IOTYPE_OUTPUT)
200output_operand_index = self.add_operand(self.edges[bnode.name][0].name, Operand.IOTYPE_OUTPUT)
201 np.array([input_operand_index, output_operand_index], dtype=np.uint32).tofile(f)
246 output_operand_index = self.add_operand(anode.name, Operand.IOTYPE_OUTPUT)
249output_operand_index = self.add_operand(self.edges[bnode.name][0].name, Operand.IOTYPE_OUTPUT)
251output_operand_index = self.add_operand(self.edges[scope_name+'/concat_1'][0].name, Operand.IOTYPE…
252 np.array([input_operand_index, output_operand_index], dtype=np.uint32).tofile(f)
289 output_operand_index = self.add_operand(node.name, Operand.IOTYPE_OUTPUT)
290 np.array([input_operand_index, output_operand_index], dtype=np.uint32).tofile(f)
300 output_operand_index = self.add_operand(node.name, Operand.IOTYPE_OUTPUT)
[all …]
/third_party/ffmpeg/libavfilter/dnn/
Ddnn_backend_native_layer_maximum.c41 layer->output_operand_index = (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()
52 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_maximum() argument
55 DnnOperand *output = &operands[output_operand_index]; in ff_dnn_execute_layer_maximum()
Ddnn_backend_native_layer_conv2d.c32 int32_t output_operand_index; member
101 layer->output_operand_index = (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()
188 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_conv2d() argument
203 DnnOperand *output_operand = &operands[output_operand_index]; in ff_dnn_execute_layer_conv2d()
225 thread_common_param.output_operand_index = output_operand_index; in ff_dnn_execute_layer_conv2d()
Ddnn_backend_native_layer_depth2space.c40 layer->output_operand_index = (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()
52 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_depth2space() argument
70 DnnOperand *output_operand = &operands[output_operand_index]; in ff_dnn_execute_layer_depth2space()
Ddnn_backend_native_layer_avgpool.c49 layer->output_operand_index = (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()
59 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_avg_pool() argument
73 DnnOperand *output_operand = &operands[output_operand_index]; in ff_dnn_execute_layer_avg_pool()
Ddnn_backend_native_layer_dense.c75 layer->output_operand_index = (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()
86 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_dense() argument
98 DnnOperand *output_operand = &operands[output_operand_index]; in ff_dnn_execute_layer_dense()
Ddnn_backend_native_layer_mathunary.c43 layer->output_operand_index = (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()
55 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_math_unary() argument
58 DnnOperand *output = &operands[output_operand_index]; in ff_dnn_execute_layer_math_unary()
Ddnn_backend_native_layer_mathbinary.c135 layer->output_operand_index = (int32_t)avio_rl32(model_file_context); in ff_dnn_load_layer_math_binary()
138 if (layer->output_operand_index >= operands_num) { in ff_dnn_load_layer_math_binary()
149 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_math_binary() argument
152 DnnOperand *output = &operands[output_operand_index]; in ff_dnn_execute_layer_math_binary()
Ddnn_backend_native_layer_pad.c41 layer->output_operand_index = (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()
79 … int32_t output_operand_index, const void *parameters, NativeContext *ctx) in ff_dnn_execute_layer_pad() argument
107 DnnOperand *output_operand = &operands[output_operand_index]; in ff_dnn_execute_layer_pad()
Ddnn_backend_native_layer_depth2space.h70 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layer_maximum.h42 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layer_avgpool.h67 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layers.h28 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layer_pad.h41 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layer_dense.h64 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layer_mathbinary.h52 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layer_conv2d.h67 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native_layer_mathunary.h90 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
Ddnn_backend_native.h65 int32_t output_operand_index; member
Ddnn_backend_native.c387 native_model->layers[layer].output_operand_index, in execute_model_native()