/cmsis-nn-latest/ |
D | ARM.CMSIS-NN.pdsc | 4 <name>CMSIS-NN</name> 10 <license name="LICENSE" title="Apache 2.0 open-source license" spdx="Apache-2.0"/> 36 <file category="doc" name="Documentation/html/index.html"/> 37 <file category="header" name="Include/arm_nn_types.h"/> 38 <file category="header" name="Include/arm_nnfunctions.h"/> 39 <file category="header" name="Include/arm_nnsupportfunctions.h"/> 40 <file category="header" name="Include/arm_nn_tables.h"/> 41 <file category="header" name="Include/arm_nn_math_types.h"/> 43 <file category="source" name="Source/ConvolutionFunctions/arm_convolve_1_x_n_s4.c"/> 44 <file category="source" name="Source/ConvolutionFunctions/arm_convolve_1_x_n_s8.c"/> [all …]
|
/cmsis-nn-latest/Tests/UnitTest/RefactoredTestGen/ |
D | test_plan.json | 17 {"name" : "basic_int4", string 26 {"name" : "basic_2_int4", string 35 {"name" : "stride2pad1_int4", string 46 {"name" : "kernel1x1_int4", string 55 {"name" : "kernel1x1_int4_2", string 64 {"name" : "kernel1x1_int4_3", string 75 {"name" : "kernel1x1_stride_x_int4", string 88 {"name" : "kernel1x1_stride_x_y_int4", string 101 {"name" : "kernel1x1_stride_x_y_1_int4", string 114 {"name" : "kernel1x1_stride_x_y_2_int4", string [all …]
|
/cmsis-nn-latest/.github/workflows/ |
D | microspeech.yaml | 17 name: TFL Microspeech Example on Arm Virtual Hardware 40 - name: Set a pending status to the PR 57 name: Build and run projects on AVH 73 - name: Set up Python 3.10 78 - name: Install AVH Client for Python 82 - name: Download pack from upstream workflow 91 …gh api "$artifacts_url" -q '.artifacts[] | select(.name=="artifact") | [.name, .archive_download_u… 93 IFS=$'\t' read name url <<< "$artifact" 94 gh api $url > "$name.zip" 95 unzip -d "$name" "$name.zip" [all …]
|
D | gh-pages.yml | 2 name: Deploy static content to GitHub Pages 28 name: github-pages 32 - name: Checkout 35 - name: Setup Pages 38 - name: Upload artifact 44 - name: Deploy to GitHub Pages
|
D | pdsc.yml | 18 name: Verify that PDSC file is up to date 32 name: Check PDSC file 35 - name: Checkout 38 - name: Check
|
D | pack.yml | 1 name: Build documentation and pack 16 name: Generate pack 23 - name: Fetch tags
|
/cmsis-nn-latest/Tests/UnitTest/RefactoredTestGen/JsonTemplates/ |
D | lstm_s16.json | 21 "name": "serving_default_input:0", string 41 "name": "arith.constant4", string 61 "name": "arith.constant5", string 81 "name": "arith.constant6", string 101 "name": "arith.constant7", string 122 "name": "arith.constant", string 143 "name": "arith.constant1", string 164 "name": "arith.constant2", string 185 "name": "arith.constant3", string 206 "name": "arith.constant8", string [all …]
|
D | lstm_s16_tm.json | 21 "name": "serving_default_input:0", string 41 "name": "arith.constant4", string 61 "name": "arith.constant5", string 81 "name": "arith.constant6", string 101 "name": "arith.constant7", string 122 "name": "arith.constant", string 143 "name": "arith.constant1", string 164 "name": "arith.constant2", string 185 "name": "arith.constant3", string 206 "name": "arith.constant8", string [all …]
|
D | conv.json | 22 "name": "tensor_input", string 43 "name": "tensor_weight", string 58 "name": "tensor_bias", string 75 "name": "tensor_output", string
|
D | fully_connected.json | 20 "name" : "tensor_input", string 40 "name" : "tensor_weight", string 60 "name": "tensor_weight", string 80 "name": "tensor_output", string
|
D | conv_null_bias.json | 22 "name": "tensor_input", string 43 "name": "tensor_weight", string 60 "name": "tensor_output", string
|
D | fully_connected_null_bias.json | 20 "name" : "tensor_input", string 40 "name" : "tensor_weight", string 61 "name": "tensor_output", string
|
/cmsis-nn-latest/Tests/UnitTest/RefactoredTestGen/Lib/ |
D | test.py | 69 fpaths["data_folder"] = pathlib.Path("TestCases") / "TestData" / params["name"] 70 fpaths["tflite"] = fpaths["data_folder"] / f"{params['name']}.tflite" 102 json_output_fpath = fpaths["data_folder"] / f"{params['name']}.json" 107 raise ValueError(f"Invalid tflite generator in {params['name']}") 114 for name, scale in data.effective_scales.items(): 116 params[name + "_multiplier"] = mult 117 params[name + "_shift"] = shift 148 raise ValueError(f"Invalid interpreter in {params['name']}") 160 … "suite_name", "name", "input_data_type", "op_type", "input_data_type", "weights_data_type", 167 write_config(fpaths["config_data"], config_params, params["name"], fpaths["test_data"], header) [all …]
|
D | op_utils.py | 79 def get_dtype(name, params): argument 80 if "bias" in name: 82 elif "weight" in name or "kernel" in name: 86 elif "multiplier" in name or "shift" in name: 88 elif "input" in name or "output" in name or "transpose" in name: 91 raise Exception(f"Unable to deduce dtype from name '{name}'")
|
D | op_lstm.py | 50 name='input') 65 model = keras.Model(input_layer, lstm_layer, name="LSTM") 108 def calc_scale(name, input_scale, tensor_index): argument 110 tensors[name + "_weights"] = interpreter.get_tensor(detail["index"]).flatten() 111 scales[name + "_scale"] = detail['quantization_parameters']['scales'][0] 112 effective_scales[name] = input_scale * scales[name + "_scale"] / pow(2, -12) 157 def create_scales(name, input_scale1): argument 158 scales[name + "_scale"] = np.round(np.random.rand(1) * (maxval - minval) + minval, 6)[0] 159 effective_scales[name] = input_scale1 * scales[name + "_scale"] / pow(2, -12)
|
D | test_plan.py | 33 print(f"- {test['name']}") 44 … test_names = [test["name"] for test in test_suite_params["tests"] if test["name"] in args.tests]
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/Common/ |
D | svdf_s8_weights_template.json | 19 "name": "tensor_input", string 38 "name": "tensor_weight_1", string 57 "name": "tensor_weight_2", string 75 "name": "tensor_bias", string 94 "name": "tensor_state", string 113 "name": "tensor_output", string
|
D | svdf_template.json | 19 "name": "tensor_input", string 38 "name": "tensor_weight_1", string 57 "name": "tensor_weight_2", string 75 "name": "tensor_bias", string 94 "name": "tensor_state", string 113 "name": "tensor_output", string
|
D | conv2d_s4_weights_template.json | 22 "name": "tensor_input", string 43 "name": "tensor_weight", string 58 "name": "tensor_bias", string 75 "name": "tensor_output", string
|
D | fc_weights_template.json | 20 "name" : "tensor_input", string 40 "name" : "tensor_weight", string 60 "name": "tensor_weight", string 80 "name": "tensor_output", string
|
D | fc_weights_template_unpacked.json | 20 "name" : "tensor_input", string 40 "name" : "tensor_weight", string 60 "name": "tensor_weight", string 80 "name": "tensor_output", string
|
D | fc_weights_template_null_bias.json | 20 "name" : "tensor_input", string 40 "name" : "tensor_weight", string 61 "name": "tensor_output", string
|
D | fc_weights_template_null_bias_unpacked.json | 20 "name" : "tensor_input", string 40 "name" : "tensor_weight", string 61 "name": "tensor_output", string
|
/cmsis-nn-latest/Tests/UnitTest/TestCases/Common/Softmax/ |
D | softmax_int8_to_int16_template.json | 20 "name": "softmax_input", string 37 "name": "softmax_output", string 68 "name": "main" string 86 "name": "min_runtime_version", string
|
/cmsis-nn-latest/Tests/UnitTest/Corstone-300/ |
D | retarget.c | 90 __attribute__((weak)) FILEHANDLE _sys_open(const char *name, int openmode) in _sys_open() argument 94 if (name == NULL) in _sys_open() 99 if (name[0] == ':') in _sys_open() 101 if (strcmp(name, ":STDIN") == 0) in _sys_open() 105 if (strcmp(name, ":STDOUT") == 0) in _sys_open() 109 if (strcmp(name, ":STDERR") == 0) in _sys_open()
|