Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
BUILD | D | 03-May-2024 | 2.6 KiB | 94 | 89 | |
README.md | D | 03-May-2024 | 698 | 20 | 14 | |
activations_test.cc | D | 03-May-2024 | 12.2 KiB | 327 | 245 | |
arg_min_max_test.cc | D | 03-May-2024 | 4.6 KiB | 143 | 104 | |
arithmetic_test.cc | D | 03-May-2024 | 7.2 KiB | 189 | 154 | |
batch_seq_config_test.cc | D | 03-May-2024 | 8.1 KiB | 220 | 179 | |
concat_test.cc | D | 03-May-2024 | 10.2 KiB | 241 | 181 | |
conv_test.cc | D | 03-May-2024 | 25.5 KiB | 723 | 571 | |
hexagon_delegate_op_model.h | D | 03-May-2024 | 3.3 KiB | 86 | 53 | |
l2_norm_test.cc | D | 03-May-2024 | 4.2 KiB | 123 | 90 | |
matmul_test.cc | D | 03-May-2024 | 10 KiB | 313 | 234 | |
min_max_builder_test.cc | D | 03-May-2024 | 6.9 KiB | 172 | 134 | |
mirror_pad_test.cc | D | 03-May-2024 | 5.4 KiB | 128 | 99 | |
mul_test.cc | D | 03-May-2024 | 4.4 KiB | 122 | 85 | |
neg_test.cc | D | 03-May-2024 | 2.5 KiB | 70 | 47 | |
pack_test.cc | D | 03-May-2024 | 5.2 KiB | 126 | 98 | |
pad_test.cc | D | 03-May-2024 | 3.9 KiB | 107 | 75 | |
pool_test.cc | D | 03-May-2024 | 3.9 KiB | 117 | 88 | |
quantize_test.cc | D | 03-May-2024 | 6.2 KiB | 171 | 104 | |
reduce_test.cc | D | 03-May-2024 | 4.9 KiB | 129 | 97 | |
reshape_test.cc | D | 03-May-2024 | 2.3 KiB | 60 | 37 | |
resize_test.cc | D | 03-May-2024 | 11.2 KiB | 281 | 245 | |
rsqrt_test.cc | D | 03-May-2024 | 3.6 KiB | 114 | 90 | |
run_tests.sh | D | 03-May-2024 | 2.1 KiB | 60 | 34 | |
slice_test.cc | D | 03-May-2024 | 6.6 KiB | 164 | 135 | |
softmax_test.cc | D | 03-May-2024 | 4.3 KiB | 129 | 103 | |
space_to_depth_test.cc | D | 03-May-2024 | 3.5 KiB | 95 | 69 | |
split_test.cc | D | 03-May-2024 | 5.7 KiB | 161 | 130 | |
squared_difference_test.cc | D | 03-May-2024 | 4.3 KiB | 107 | 80 | |
strided_slice_test.cc | D | 03-May-2024 | 8.8 KiB | 236 | 205 | |
tests.bzl | D | 03-May-2024 | 1.1 KiB | 42 | 36 | |
transpose_conv_test.cc | D | 03-May-2024 | 11.6 KiB | 274 | 221 | |
transpose_test.cc | D | 03-May-2024 | 6.1 KiB | 170 | 128 |
README.md
1# Hexagon Delegate Testing 2 3This directory contains unit-tests for Op Builders for the hexagon delegate. 4To Run the all the tests use the run_tests.sh under directory and pass 5the path to the directory containing libhexagon_nn_skel*.so files. 6The script will copy all files to the device and build all tests and execute 7them. 8 9The test should stop if one of the tests failed. 10 11Example: 12 13Follow the [Instructions](https://www.tensorflow.org/lite/performance/hexagon_delegate) 14and download the hexagon_nn_skel and extract the files. 15For example if files are extracted in /tmp/hexagon_skel, the sample command. 16 17` 18bash tensorflow/lite/delegates/hexagon/builders/tests/run_tests.sh /tmp/hexagon_skel 19` 20