!12178 [MSLITE]add example/test dir for micro
From: @wangchengyuan Reviewed-by: Signed-off-by:pull/12178/MERGE
commit
ab0010acfc
@ -0,0 +1,104 @@
|
||||
#### classify all .h .c .cc files to FILE_SET
|
||||
set(CODER_SRC
|
||||
${MICRO_DIR}/coder/coder.cc
|
||||
${MICRO_DIR}/coder/coder_context.cc
|
||||
${MICRO_DIR}/coder/coder_graph.cc
|
||||
${MICRO_DIR}/coder/debug.cc
|
||||
${MICRO_DIR}/coder/session_coder.cc
|
||||
)
|
||||
|
||||
set(CODER_ALLOC_SRC
|
||||
${MICRO_DIR}/coder/allocator/allocator.cc
|
||||
${MICRO_DIR}/coder/allocator/memory_manager.cc
|
||||
)
|
||||
|
||||
set(CODER_GENERATOR_SRC
|
||||
${MICRO_DIR}/coder/generator/generator.cc
|
||||
${MICRO_DIR}/coder/generator/inference/inference_generator.cc
|
||||
${MICRO_DIR}/coder/generator/utils/generator_utils.cc
|
||||
)
|
||||
|
||||
set(CODER_OPCODERS_SRC
|
||||
${MICRO_DIR}/coder/opcoders/file_collector.cc
|
||||
${MICRO_DIR}/coder/opcoders/op_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/op_coder_builder.cc
|
||||
${MICRO_DIR}/coder/opcoders/op_coder_register.cc
|
||||
#### serializer
|
||||
${MICRO_DIR}/coder/opcoders/serializers/nnacl_serializer/nnacl_fp32_serializer.cc
|
||||
${MICRO_DIR}/coder/opcoders/serializers/nnacl_serializer/nnacl_int8_serializer.cc
|
||||
#### base coder
|
||||
${MICRO_DIR}/coder/opcoders/base/conv2d_base_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/base/dtype_cast_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/base/full_connection_base_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/base/quant_dtype_cast_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/base/reduce_base_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/base/softmax_base_coder.cc
|
||||
#### cmsis int8 coder
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/add_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/conv2d_base_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/conv2d_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/dwconv_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/fullconnection_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/mul_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/pooling_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/reshape_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/cmsis-nn/int8/softmax_int8_coder.cc
|
||||
#### nnacl fp32 coder
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/activation_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/addn_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/arithmetic_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/arithmetic_self_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/assign_add_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/batchnorm_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/concat_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/expand_dims_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/gather_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/nchw2nhwc_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/nhwc2nchw_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/pad_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/pooling_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/power_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/reshape_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/scale_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/slice_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/squeeze_dims_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/tile_fp32_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/fp32/transpose_fp32_coder.cc
|
||||
#### nnacl int8 coder
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/int8/concat_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/int8/pooling_int8_coder.cc
|
||||
${MICRO_DIR}/coder/opcoders/nnacl/int8/reshape_int8_coder.cc
|
||||
)
|
||||
|
||||
set(CODER_UTILS_SRC
|
||||
${MICRO_DIR}/coder/utils/coder_utils.cc
|
||||
${MICRO_DIR}/coder/utils/dir_utils.cc
|
||||
${MICRO_DIR}/coder/utils/print_utils.cc
|
||||
)
|
||||
|
||||
set(PRIMITIVE_OP_SRC
|
||||
${LITE_DIR}/src/ops/batch_norm.cc
|
||||
${LITE_DIR}/src/ops/primitive_c.cc
|
||||
${LITE_DIR}/src/ops/slice.cc
|
||||
${LITE_DIR}/src/ops/while.cc
|
||||
)
|
||||
|
||||
set(LITE_SRC
|
||||
${PRIMITIVE_OP_SRC}
|
||||
${LITE_DIR}/tools/common/flag_parser.cc
|
||||
${LITE_DIR}/src/common/file_utils.cc
|
||||
${LITE_DIR}/src/common/graph_util.cc
|
||||
${LITE_DIR}/src/common/string_util.cc
|
||||
${LITE_DIR}/src/runtime/allocator.cc
|
||||
${LITE_DIR}/src/lite_model.cc
|
||||
${LITE_DIR}/src/tensorlist.cc
|
||||
${LITE_DIR}/src/tensor.cc
|
||||
${LITE_DIR}/src/common/log_adapter.cc
|
||||
${LITE_DIR}/nnacl/int8/quantize.c
|
||||
${LITE_DIR}/nnacl/int8/pack_int8.c
|
||||
${LITE_DIR}/nnacl/int8/matmul_int8.c
|
||||
${LITE_DIR}/nnacl/int8/fixed_point.c
|
||||
)
|
||||
|
||||
list(APPEND FILE_SET ${CODER_SRC} ${CODER_UTILS_SRC} ${CODER_OPCODERS_SRC} ${CODER_GENERATOR_SRC}
|
||||
${CODER_ALLOC_SRC} ${LITE_SRC})
|
@ -0,0 +1,17 @@
|
||||
option(MICRO_BUILD_ARM64 "build android arm64" OFF)
|
||||
option(MICRO_BUILD_ARM32A "build android arm32" OFF)
|
||||
|
||||
if(MICRO_BUILD_ARM64 OR MICRO_BUILD_ARM32A)
|
||||
add_compile_definitions(ENABLE_NEON)
|
||||
add_compile_definitions(ENABLE_ARM)
|
||||
endif()
|
||||
|
||||
if(MICRO_BUILD_ARM64)
|
||||
add_compile_definitions(ENABLE_ARM64)
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -march=armv8.2-a+dotprod")
|
||||
endif()
|
||||
|
||||
if(MICRO_BUILD_ARM32A)
|
||||
add_compile_definitions(ENABLE_ARM32)
|
||||
add_definitions(-mfloat-abi=softfp -mfpu=neon)
|
||||
endif()
|
@ -0,0 +1,32 @@
|
||||
include_directories(${NNACL_DIR}/..)
|
||||
|
||||
set(CMSIS_SRC ${NNACL_DIR}/../micro/build/cmsis)
|
||||
if(MICRO_CMSIS_X86)
|
||||
message("*****build cmsis x86 codes****")
|
||||
include_directories(${CMSIS_SRC}/CMSIS/Core/Include)
|
||||
include_directories(${CMSIS_SRC}/CMSIS/DSP/Include)
|
||||
include_directories(${CMSIS_SRC}/CMSIS/NN/Include)
|
||||
file(GLOB RUNTIME_KERNEL_CMSIS_SRC
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/BasicMathFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/ActivationFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/ConcatenationFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/ConvolutionFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/FullyConnectedFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/NNSupportFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/PoolingFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/ReshapeFunctions/*.c
|
||||
${CMSIS_SRC}/CMSIS/NN/Source/SoftmaxFunctions/*.c
|
||||
)
|
||||
endif()
|
||||
|
||||
########################### files ###########################
|
||||
file(GLOB RUNTIME_KERNEL_SRC
|
||||
${NNACL_DIR}/kernel/fp32/*.c
|
||||
${NNACL_DIR}/kernel/int8/*.c
|
||||
)
|
||||
if(MICRO_CMSIS_X86)
|
||||
set(RUNTIME_OPS ${RUNTIME_KERNEL_SRC} ${RUNTIME_TRAIN_SRC} ${RUNTIME_KERNEL_CMSIS_SRC})
|
||||
else()
|
||||
set(RUNTIME_OPS ${RUNTIME_KERNEL_SRC} ${RUNTIME_TRAIN_SRC})
|
||||
endif()
|
||||
|
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
Node:Softmax-3
|
||||
input Tensor:micro_speech_B+0
|
||||
input 1, 4,
|
||||
input type:DT_INT8, format:NHWC, elementSize: 4
|
||||
input Data:
|
||||
-50, -5, 121, -4
|
||||
output Tensor:micro_speech_B+8
|
||||
output 1, 4,
|
||||
output type:DT_INT8, format:NHWC, elementSize: 4
|
||||
output Data:
|
||||
-128, -128, 127, -128
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
Node:Softmax-6
|
||||
input Tensor:mnist_B+80
|
||||
input 1, 10,
|
||||
input type:DT_FLOAT, format:NHWC, elementSize: 10
|
||||
input Data:
|
||||
-10.730524063110352, -13.112776756286621, 32.735519409179688, 47.881549835205078, -16.125642776489258, 37.780338287353516, -19.876976013183594, -9.985114097595215, 23.401361465454102, 2.130389
|
||||
output Tensor:mnist_B+0
|
||||
output 1, 10,
|
||||
output type:DT_FLOAT, format:NHWC, elementSize: 10
|
||||
output Data:
|
||||
0.000000000000000, 0.000000000000000, 0.000000264328889, 0.999958753585815, 0.000000000000000, 0.000041028124542, 0.000000000000000, 0.000000000000000, 0.000000000023355, 0.000000
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
Node:Softmax-9
|
||||
input Tensor:mobilenet_B+2304
|
||||
input 1, 10,
|
||||
input type:DT_FLOAT, format:NHWC, elementSize: 10
|
||||
input Data:
|
||||
-29.386697769165039, -21.845693588256836, -2.055268287658691, -3.034832000732422, -35.736465454101562, -7.437396526336670, -28.077632904052734, -9.304884910583496, -3.867517471313477, -24.168812
|
||||
output Tensor:mobilenet_B+0
|
||||
output 1, 10,
|
||||
output type:DT_FLOAT, format:NHWC, elementSize: 10
|
||||
output Data:
|
||||
0.000000000000874, 0.000000001646118, 0.647639095783234, 0.243172198534012, 0.000000000000002, 0.002977861091495, 0.000000000003236, 0.000460113020381, 0.105750694870949, 0.000000
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,55 @@
|
||||
Node:Softmax-30
|
||||
input Tensor:mobilenetv1_quant_B+1008
|
||||
input 1, 1001,
|
||||
input type:DT_INT8, format:NHWC, elementSize: 1001
|
||||
input Data:
|
||||
-69, -65, -60, -67, -74, -63, -61, -72, -64, -63, -56, -60, -65, -67, -64, -68, -59, -60, -62, -63, -68, -65, -46, -47, -58, -62, -63, -64, -64, -57, -68, -66, -68, -70, -70, -62, -79, -63, -69, -55, -71, -67, -64, -62, -62,
|
||||
-66, -68, -61, -68, -76, -72, -65, -60, -59, -64, -71, -71, -63, -67, -72, -60, -67, -70, -70, -60, -58, -66, -64, -71, -66, -66, -63, -53, -67, -57, -69, -57, -69, -63, -47, -58, -61, -60, -61, -63, -69, -67, -64, -67, -59,
|
||||
-58, -59, -56, -54, -62, -64, -64, -57, -68, -63, -62, -71, -70, -69, -58, -69, -73, -71, -64, -61, -70, -66, -52, -61, -59, -65, -70, -65, -60, -68, -69, -69, -69, -68, -71, -70, -73, -59, -58, -52, -58, -69, -71, -68, -58,
|
||||
-69, -62, -67, -68, -62, -70, -72, -67, -70, -64, -66, -60, -57, -66, -68, -63, -65, -63, -59, -62, -74, -65, -68, -61, -65, -66, -61, -63, -64, -62, -61, -61, -70, -65, -63, -75, -69, -65, -67, -65, -64, -62, -66, -65, -61,
|
||||
-65, -60, -60, -66, -62, -67, -54, -58, -59, -61, -61, -58, -64, -72, -63, -60, -59, -64, -63, -64, -63, -71, -66, -62, -65, -71, -65, -63, -63, -65, -66, -64, -63, -65, -68, -63, -67, -64, -67, -67, -64, -63, -65, -63, -58,
|
||||
-69, -67, -62, -62, -66, -62, -66, -60, -63, -62, -63, -59, -63, -65, -63, -60, -64, -61, -71, -64, -68, -64, -65, -59, -64, -65, -64, -64, -62, -63, -64, -71, -61, -66, -63, -64, -61, -59, -59, -66, -64, -65, -66, -65, -66,
|
||||
-67, -64, -71, -62, -72, -64, -65, -64, -62, -65, -58, -69, -53, -60, -53, -62, -64, -64, -67, -67, -65, -69, -69, -64, -60, -66, -68, -65, -62, -66, -60, -65, -57, -58, -59, -67, -69, -50, -62, -59, -70, -49, -63, -64, -67,
|
||||
-51, -62, -69, -69, -55, -61, -67, -69, -75, -66, -69, -71, -70, -62, -67, -69, -61, -60, -61, -66, -67, -69, -66, -63, -66, -68, -67, -68, -68, -73, -72, -67, -69, -62, -68, -64, -53, -63, -70, -65, -57, -64, -59, -57, -63,
|
||||
-60, -60, -64, -62, -67, -65, -62, -65, -64, -61, -61, -64, -63, -76, -63, -68, -65, -62, -66, -59, -65, -66, -69, -64, -67, -69, -68, -72, -67, -68, -66, -65, -64, -61, -73, -65, -65, -72, -73, -58, -45, -57, -62, -56, -63,
|
||||
-62, -55, -74, -68, -70, -51, -74, -61, -60, -51, -58, -75, -52, -63, -45, -55, -63, -64, -58, -54, -65, -64, -60, -58, -68, -56, -63, -67, -52, -58, -62, -58, -61, -60, -56, -63, -57, -60, -54, -54, -64, -53, -51, -55, -58,
|
||||
-66, -70, -46, -70, -61, -73, -60, -57, -58, -65, -62, -61, -60, -48, -57, -50, -53, -71, -72, -64, -60, -58, -63, -67, -42, -67, -64, -72, -56, -57, -58, -62, -51, -52, -70, -65, -55, -62, -54, -47, -72, -59, -54, -59, -60,
|
||||
-55, -60, -59, -70, -65, -44, -66, -67, -58, -52, -56, -54, -62, -44, -62, -68, -61, -66, -42, -53, -56, -58, -55, -53, -62, -60, -61, -67, -58, -58, -62, -70, -65, -55, -59, -60, -51, -56, -62, -60, -49, -60, -72, -62, -63,
|
||||
-48, -61, -62, -54, -51, -69, -54, -51, -68, -66, -41, -56, -43, -53, -55, -69, -66, -59, -57, -58, -56, -64, -61, -68, -50, -72, -67, -61, -49, -61, -66, -55, -69, -51, -64, -53, -73, -61, -60, -64, -61, -67, -68, -72, -50,
|
||||
-43, -53, -60, -49, -49, -56, -54, -58, -55, -48, -63, -61, -47, -54, -61, -57, -45, -58, -58, -64, -50, -58, -53, -61, -54, -64, -53, -59, -67, -49, -59, -54, -53, -63, -46, -62, -63, -57, -56, -42, -70, -65, -50, -65, -68,
|
||||
-45, -59, -46, -54, -46, -71, -47, -60, -68, -60, -60, -71, -44, -63, -64, -45, -62, -60, -54, -53, -63, -45, -56, -66, -60, -66, -57, -70, -58, -60, -61, -60, -71, -49, -67, -60, -64, -54, -57, -62, -70, -64, -63, -57, -52,
|
||||
-49, -64, -53, -45, -59, -52, -49, -48, -61, -51, -56, -70, -51, -67, -62, -66, -70, -64, -61, -56, -68, -54, -46, -65, -65, -47, -58, -48, -61, -66, -64, -69, -67, -68, -55, -61, -50, -44, -59, -55, -48, -58, -56, -66, -65,
|
||||
-51, -44, -68, -54, -50, -64, -57, -54, -64, -58, -56, -59, -49, -53, -59, -69, -67, -62, -59, -64, -63, -51, -59, -56, -66, -55, -58, -50, -53, -56, -47, -68, -65, -60, -57, -47, -64, -62, -71, -48, -49, -57, -50, -70, -50,
|
||||
-56, -57, -59, -44, -61, -41, -59, -53, -46, -57, -54, -64, -55, -54, -52, -64, -68, -60, -58, -41, -49, -67, -64, -66, -71, -59, -54, -61, -49, -56, -65, -53, -59, -58, -56, -65, -64, -53, -60, -59, -50, -58, -57, -65, -61,
|
||||
-64, -60, -56, -62, -45, -65, -70, -57, -65, -50, -65, -60, -61, -59, -48, -58, -61, -48, -61, -48, -72, -55, -51, -59, -61, -64, -64, -50, -52, -47, -66, -52, -59, -61, -60, -49, -46, -50, -64, -59, -60, -59, -60, -53, -62,
|
||||
-49, -47, -61, -63, -60, -58, -60, -54, -59, -59, -65, -75, -64, -65, -62, -63, -59, -62, -51, -67, -73, -57, -59, -56, -62, -59, -59, -62, -56, -58, -73, -53, -66, -68, -59, -65, -67, -53, -54, -54, -54, -56, -53, -51, -49,
|
||||
-59, -62, -55, -42, -61, -60, -61, -51, -54, -59, -58, -54, -63, -71, -62, -61, -69, -48, -71, -63, -57, -55, -58, -65, -67, -71, -60, -68, -68, -64, -62, -63, -60, -60, -71, -64, -68, -60, -56, -59, -62, -60, -65, -65, -61,
|
||||
-59, -58, -66, -74, -54, -45, -58, -52, -53, -59, -56, -67, -63, -54, -64, -69, -56, -73, -65, -74, -66, -64, -48, -60, -49, -59, -70, -63, -62, -77, -58, -63, -59, -61, -60, -65, -64, -66, -63, -64, -60, -56, -71, -60, -58,
|
||||
-64, -54, -74, -72, -76, -74, -72, -68, -76, -58, -58
|
||||
output Tensor:mobilenetv1_quant_B+0
|
||||
output 1, 1001,
|
||||
output type:DT_INT8, format:NHWC, elementSize: 1001
|
||||
output Data:
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -126, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -127, -128, -128, -128,
|
||||
-127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -126, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -127, -128, -128, -128, -127, -128, -128, -127, -128, -126, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128,
|
||||
-128, -128, -126, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -125, -128, -128, -128, -128, -128, -128, -128, -127, -127, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -126, -128, -128, -128, -127, -128, -128, -128, -126, -128, -128, -128, -128, -125, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -127, -128, -128, -128, -128,
|
||||
-127, -128, -128, -128, -127, -128, -128, -127, -128, -128, -124, -128, -125, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -127, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127,
|
||||
-125, -128, -128, -127, -127, -128, -128, -128, -128, -127, -128, -128, -127, -128, -128, -128, -126, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -126, -128, -128, -128, -128, -125, -128, -128, -127, -128, -128,
|
||||
-126, -128, -126, -128, -126, -128, -127, -128, -128, -128, -128, -128, -126, -128, -128, -126, -128, -128, -128, -128, -128, -126, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127,
|
||||
-127, -128, -128, -126, -128, -127, -127, -127, -128, -127, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -126, -128, -128, -127, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -127, -126, -128, -128, -127, -128, -128, -128, -128,
|
||||
-127, -126, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -127, -128, -128, -127, -128, -128, -128, -128, -127, -128, -128, -128, -127, -127, -128, -127, -128, -127,
|
||||
-128, -128, -128, -126, -128, -124, -128, -128, -126, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -124, -127, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -126, -128, -128, -128, -128, -127, -128, -128, -128, -128, -127, -128, -128, -127, -128, -127, -128, -128, -127, -128, -128, -128, -128, -127, -127, -127, -128, -127, -128, -128, -128, -127, -126, -127, -128, -128, -128, -128, -128, -128, -128,
|
||||
-127, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -127,
|
||||
-128, -128, -128, -125, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -126, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -127, -128, -127, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128,
|
||||
-128, -128, -128, -128, -128, -128, -128, -128, -128, -128, -128
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue