/AliOS-Things-master/components/py_engine/engine/py/ |
A D | bc.h | 167 size_t n_info, n_cell; \ 168 MP_BC_PRELUDE_SIZE_DECODE_INTO(ip, n_info, n_cell); \ 169 (void)n_info; (void)n_cell
|
A D | bc.c | 284 for (; n_cell; --n_cell) { in mp_setup_code_state()
|
A D | showbc.c | 100 size_t prelude_size = ip - mp_showbc_code_start + n_info + n_cell; in mp_bytecode_print() 125 for (size_t i = 0; i < n_cell; ++i) { in mp_bytecode_print()
|
A D | emitbc.c | 68 size_t n_cell; member 347 MP_BC_PRELUDE_SIZE_ENCODE(emit->n_info, emit->n_cell, emit_write_code_info_byte, emit); in mp_emit_bc_start_pass() 405 emit->n_cell = 0; in mp_emit_bc_end_pass() 411 ++emit->n_cell; in mp_emit_bc_end_pass()
|
A D | persistentcode.c | 140 *ip += n_cell; in extract_prelude()
|
A D | profile.c | 54 prelude->opcodes = ip + n_info + n_cell; in mp_prof_extract_prelude()
|
A D | emitnative.c | 233 uint16_t n_cell; member 670 MP_BC_PRELUDE_SIZE_ENCODE(n_info, emit->n_cell, emit_native_write_code_info_byte, emit); in emit_native_end_pass() 690 emit->n_cell = mp_asm_base_get_code_pos(&emit->as->base) - cell_start; in emit_native_end_pass()
|
A D | vm.c | 1469 const byte *bytecode_start = ip + n_info + n_cell; in mp_execute_bytecode()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/optimized/ |
A D | neon_tensor_utils.h | 114 int32_t n_batch, int32_t n_input, int32_t n_cell, in MatrixBatchVectorMultiply() argument 119 n_input, n_cell, gate_output, gate_output_zp); in MatrixBatchVectorMultiply() 306 int32_t n_cell, int16_t* output) { in TwoGateSaturatingAdd() argument 310 recurrent_effective_scale_b, n_batch, n_cell, output); in TwoGateSaturatingAdd()
|
A D | sse_tensor_utils.h | 123 int32_t n_batch, int32_t n_input, int32_t n_cell, in MatrixBatchVectorMultiply() argument 128 n_input, n_cell, gate_output, gate_output_zp); in MatrixBatchVectorMultiply() 315 int32_t n_cell, int16_t* output) { in TwoGateSaturatingAdd() argument 319 recurrent_effective_scale_b, n_batch, n_cell, output); in TwoGateSaturatingAdd()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/reference/ |
A D | portable_tensor_utils.h | 153 int32_t n_batch, int32_t n_input, int32_t n_cell, in MatrixBatchVectorMultiply() argument 158 n_input, n_cell, gate_output, gate_output_zp); in MatrixBatchVectorMultiply() 309 int32_t n_cell, int16_t* output) { in TwoGateSaturatingAdd() argument 313 recurrent_effective_scale_b, n_batch, n_cell, output); in TwoGateSaturatingAdd()
|
A D | portable_tensor_utils_impl.h | 126 int32_t n_cell, int8_t* gate_output, 228 int32_t n_batch, int32_t n_cell,
|
A D | portable_tensor_utils.cc | 348 int32_t n_cell, int8_t* gate_output, in PortableMatrixBatchVectorMultiply() argument 353 for (int row = 0; row < n_cell; ++row) { in PortableMatrixBatchVectorMultiply() 369 gate_output[batch * n_cell + row] = static_cast<int8_t>(acc); in PortableMatrixBatchVectorMultiply() 750 int32_t n_batch, int32_t n_cell, in PortableTwoGateSaturatingAdd() argument 754 for (int i = 0; i < n_batch * n_cell; ++i) { in PortableTwoGateSaturatingAdd()
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/tensorflow/lite/kernels/internal/ |
A D | tensor_utils_common.h | 163 int32_t n_batch, int32_t n_input, int32_t n_cell, 461 int32_t n_cell, int16_t* output);
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | mpy-tool.py | 212 n_info, n_cell = read_prelude_size(local_read_byte) 216 ip = ip2 + n_info + n_cell 697 n_info, n_cell = read_prelude_size(lambda: read_byte(f, bytecode)) 700 for _ in range(n_info - 4 + n_cell):
|