Home
last modified time | relevance | path

Searched defs:AvgPoolDynamicModel (Results 1 – 1 of 1) sorted by relevance

/test/xts/acts/ai/neural_network_runtime/common/
Dmodel.h44 struct AvgPoolDynamicModel { struct
46 float inputValue[9] = {0, 1, 2, 3, 4, 5, 6, 7, 8};
47 uint64_t kernelValue[2] = {2, 2};
48 uint64_t strideValue[2] = {1, 1};
49 int8_t padValue = 1;
50 int8_t activationValue = OH_NN_FUSED_NONE;
51 float outputValue[4] = {0};
52 float expectValue[4] = {2, 3, 5, 6};
54 …dTest dynamicInput = {OH_NN_FLOAT32, OH_NN_TENSOR, {-1, -1, -1, -1}, inputValue, AVG_INPUT_LENGTH};
55 …randTest kernel = {OH_NN_INT64, OH_NN_AVG_POOL_KERNEL_SIZE, {2}, kernelValue, sizeof(kernelValue)};
[all …]