/third_party/ffmpeg/tools/python/ |
D | convert_from_tensorflow.py | 198 output_operand_index = self.add_operand(anode.name, Operand.IOTYPE_OUTPUT) 200 … output_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) 249 … output_operand_index = self.add_operand(self.edges[bnode.name][0].name, Operand.IOTYPE_OUTPUT) 251 …output_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/ |
D | dnn_backend_native_layer_maximum.c | 41 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()
|
D | dnn_backend_native_layer_conv2d.c | 32 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()
|
D | dnn_backend_native_layer_depth2space.c | 40 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()
|
D | dnn_backend_native_layer_avgpool.c | 49 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()
|
D | dnn_backend_native_layer_dense.c | 75 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()
|
D | dnn_backend_native_layer_mathunary.c | 43 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()
|
D | dnn_backend_native_layer_mathbinary.c | 135 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()
|
D | dnn_backend_native_layer_pad.c | 41 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()
|
D | dnn_backend_native_layer_depth2space.h | 70 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layer_maximum.h | 42 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layer_avgpool.h | 67 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layers.h | 28 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layer_pad.h | 41 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layer_dense.h | 64 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layer_mathbinary.h | 52 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layer_conv2d.h | 67 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native_layer_mathunary.h | 90 … int32_t output_operand_index, const void *parameters, NativeContext *ctx);
|
D | dnn_backend_native.h | 65 int32_t output_operand_index; member
|
D | dnn_backend_native.c | 387 native_model->layers[layer].output_operand_index, in execute_model_native()
|