Home
last modified time | relevance | path

Searched refs:inputValue (Results 1 - 25 of 53) sorted by relevance

123

/test/xts/hats/ai/nnrt/hdi/v1_0/nnrtFunctionTest/src/
H A Dhdi_model_run_test.cpp63 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in AddModelTest() local
64 for (uint32_t i = 0; i < inputValue.size(); i++) { in AddModelTest()
65 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in AddModelTest()
217 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in HWTEST_F() local
218 for (uint32_t i = 0; i < inputValue.size(); i++) { in HWTEST_F()
219 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in HWTEST_F()
387 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in HWTEST_F() local
388 for (uint32_t i = 0; i < inputValue.size(); i++) { in HWTEST_F()
389 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in HWTEST_F()
/test/xts/hats/ai/nnrt/hdi/v2_0/nnrtFunctionTest/src/
H A Dhdi_model_run_test.cpp62 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in AddModelTest() local
63 for (uint32_t i = 0; i < inputValue.size(); i++) { in AddModelTest()
64 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in AddModelTest()
215 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in HWTEST_F() local
216 for (uint32_t i = 0; i < inputValue.size(); i++) { in HWTEST_F()
217 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in HWTEST_F()
387 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in HWTEST_F() local
388 for (uint32_t i = 0; i < inputValue.size(); i++) { in HWTEST_F()
389 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in HWTEST_F()
/test/xts/acts/ai/nncore/opstest/src/
H A Dlogical_not_test.cpp27 int64_t inputValue[3] = {1, 0, 1}; member
30 OHNNOperandTest input = {OH_NN_INT64, OH_NN_TENSOR, tensor_shape, inputValue, 3*sizeof(int64_t)};
41 bool inputValue[1] = {true}; member
44 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, inputValue, sizeof(bool)};
55 bool inputValue[1] = {false}; member
58 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, inputValue, sizeof(bool)};
69 bool inputValue[2] = {true, false}; member
72 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, inputValue, 2*sizeof(bool)};
83 bool inputValue[3] = {0, 0, 1}; member
86 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, inputValue,
[all...]
H A Dunstack_test.cpp29 float inputValue[3][2] = {{1, 2}, {3, 4}, {5, 6}}; member
32 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
46 float inputValue[3] = {1, 5, 6}; member
49 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 3*sizeof(float)};
63 float inputValue[3][2] = {{1, 2}, {3, 4}, {5, 6}}; member
66 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
80 float inputValue[3][2] = {{1, 2}, {3, 4}, {5, 6}}; member
83 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
96 float* inputValue = {}; member
99 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue,
[all...]
H A Dspace_to_depth_test.cpp29 float inputValue[1][1][4][4] = {1}; member
32 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 16*sizeof(float)};
46 float inputValue[2][3][8][8] = {1}; member
49 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 384*sizeof(float)};
63 float inputValue[1][2][6][6] = {1}; member
66 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 72*sizeof(float)};
80 float inputValue[1][4][2][2] = {1}; member
83 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 16*sizeof(float)};
H A Dleaky_relu_test.cpp29 float inputValue[3] = {0.5, 1.0, 1.5}; member
32 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 3*sizeof(float)};
47 float inputValue[3] = {-0.5, -1.0, -1.5}; member
50 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 3*sizeof(float)};
65 float inputValue[3] = {-0.5, -1.0, -1.5}; member
68 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 3*sizeof(float)};
82 float* inputValue = {}; member
85 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 0*sizeof(float)};
H A Dexp_test.cpp30 float inputValue[3][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; member
33 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 9*sizeof(float)};
47 float inputValue[3] = {0, 1, 2}; member
50 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 3*sizeof(float)};
64 float inputValue[3][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; member
67 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 9*sizeof(float)};
84 float* inputValue = {}; member
87 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 0*sizeof(float)};
H A Dflatten_test.cpp28 float inputValue[3][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; member
31 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 9*sizeof(float)};
43 float inputValue[2][2][2] = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; member
46 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 8*sizeof(float)};
58 float inputValue[9] = {1, 2, 3, 4, 5, 6, 7, 8, 9}; member
61 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 9*sizeof(float)};
72 float* inputValue = {}; member
75 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 0*sizeof(float)};
H A Dreducesum_test.cpp31 float inputValue[2][3] = {{1, 2, 3}, {4, 5, 6}}; member
35 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
53 float inputValue[2][3] = {{1, 2, 3}, {4, 5, 6}}; member
57 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
75 float inputValue[2][3] = {{1, 2, 3}, {4, 5, 6}}; member
79 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
97 float inputValue[2][3] = {{1, 2, 3}, {4, 5, 6}}; member
101 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
119 float inputValue[2][3] = {{1, 2, 3}, {4, 5, 6}}; member
123 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue,
[all...]
H A Dreducel2_test.cpp32 float inputValue[2][2] = {{1, 2}, {3, 4}}; member
36 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 4*sizeof(float)};
56 float inputValue[2][2] = {{1, 2}, {3, 4}}; member
60 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 4*sizeof(float)};
80 float inputValue[2][2][2] = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; member
84 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 8*sizeof(float)};
104 float inputValue[2][2][2] = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; member
108 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 8*sizeof(float)};
128 float inputValue[2][2][2] = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; member
132 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue,
[all...]
H A Drange_test.cpp30 int32_t inputValue[3] = {0}; member
33 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, 3*sizeof(int32_t)};
50 int32_t inputValue[1] = {0}; member
53 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, sizeof(int32_t)};
70 int32_t inputValue[1] = {0}; member
73 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, sizeof(int32_t)};
90 float inputValue[2] = {0}; member
93 OHNNOperandTest input = {OH_NN_FLOAT16, OH_NN_TENSOR, tensor_shape, inputValue, 2*sizeof(float)};
110 int32_t inputValue[2] = {0}; member
113 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue,
[all...]
H A Dreducemin_test.cpp30 float inputValue[2][3] = {{1, 2, 3}, {4, 0, 6}}; member
34 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
50 float inputValue[2][3] = {{1, 2, 3}, {4, 0, 6}}; member
54 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
70 float inputValue[3][2] = {{7, 8}, {3, 4}, {5, 1}}; member
74 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
90 float inputValue[2][3] = {{1, 2, 3}, {4, 0, 6}}; member
94 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
110 float inputValue[2][2] = {{2, 3}, {6, 1}}; member
114 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue,
[all...]
H A Dreducemax_test.cpp30 float inputValue[2][3] = {{1, 2, 3}, {4, 0, 6}}; member
34 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
50 float inputValue[2][3] = {{1, 2, 3}, {4, 0, 6}}; member
54 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
70 float inputValue[3][2] = {{7, 8}, {3, 4}, {5, 1}}; member
74 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
90 float inputValue[2][3] = {{1, 2, 3}, {4, 0, 6}}; member
94 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 6*sizeof(float)};
110 float inputValue[2][2] = {{2, 3}, {6, 1}}; member
114 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue,
[all...]
H A Dclip_test.cpp30 float inputValue[7] = {-3, -2, -1, 0, 1, 2, 3}; member
33 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 7*sizeof(float)};
49 float inputValue[7] = {-3, -2, -1, 0, 1, 2, 3}; member
52 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 7*sizeof(float)};
68 float inputValue[7] = {-3, -2, -1, 0, 1, 2, 3}; member
71 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 7*sizeof(float)};
87 float inputValue[7] = {-3, -2, -1, 0, 1, 2, 3}; member
90 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue, 7*sizeof(float)};
106 float* inputValue = {}; member
109 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, input_shape, inputValue,
[all...]
H A Dswish_test.cpp27 float inputValue[3][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}}; member
30 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 9*sizeof(float)};
41 float inputValue[2][3] = {{-1, 0, 1}, {2, -2, 3}}; member
44 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 6*sizeof(float)};
55 float inputValue[2][2] = {{0, 0}, {0, 0}}; member
58 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 4*sizeof(float)};
H A Dquant_dtype_cast_test.cpp30 int32_t inputValue[4] = {0.5, 1.0, 1.5, 2.0}; member
33 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, 4*sizeof(int32_t)};
50 int32_t inputValue[4] = {0.5, 1.0, 1.5, 2.0}; member
53 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, 4*sizeof(int32_t)};
70 int32_t inputValue[2][3] = {{1.5, 2.5, 3.5}, {4.5, 5.5, 6.5}}; member
73 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, 6*sizeof(int32_t)};
H A Dreciprocal_test.cpp27 float inputValue[2][2] = {{1, 2}, {3, 4}}; member
30 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 4*sizeof(float)};
41 float inputValue[3] = {-1, -2, -4}; member
44 OHNNOperandTest input = {OH_NN_FLOAT32, OH_NN_TENSOR, tensor_shape, inputValue, 3*sizeof(float)};
55 bool inputValue[1] = {false}; member
58 OHNNOperandTest input = {OH_NN_BOOL, OH_NN_TENSOR, tensor_shape, inputValue, sizeof(bool)};
/test/xts/acts/arkui/ace_standard/entry/src/main/js/MainAbility/pages/input/prop/
H A Dindex.js76 inputValue : null,
144 inputNameNone : this.inputNameNone, inputValue : this.inputValue,
220 this.inputValue = this.$element("inputValue").getInspector()
/test/xts/acts/arkui/ace_standard/entry/src/main/js/default/pages/input/prop/
H A Dindex.js76 inputValue : null,
144 inputNameNone : this.inputNameNone, inputValue : this.inputValue,
220 this.inputValue = this.$element("inputValue").getInspector()
/test/xts/acts/arkui/ace_standard/entry/src/ohosTest/js/MainAbility/pages/input/prop/
H A Dindex.js76 inputValue : null,
144 inputNameNone : this.inputNameNone, inputValue : this.inputValue,
220 this.inputValue = this.$element("inputValue").getInspector()
/test/xts/acts/arkui/ace_standard/entry/src/ohosTest/js/default/pages/input/prop/
H A Dindex.js76 inputValue : null,
144 inputNameNone : this.inputNameNone, inputValue : this.inputValue,
220 this.inputValue = this.$element("inputValue").getInspector()
/test/xts/hats/ai/nnrt/hdi/v2_0/nnrtStabilityTest/src/
H A Dhdi_stability_test.cpp66 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in RunModelTest() local
67 for (uint32_t i = 0; i < inputValue.size(); i++) { in RunModelTest()
68 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in RunModelTest()
/test/xts/hats/ai/nnrt/hdi/v1_0/nnrtStabilityTest/src/
H A Dhdi_stability_test.cpp66 std::vector<float> inputValue = {ADD_VALUE_1, ADD_VALUE_2}; in RunModelTest() local
67 for (uint32_t i = 0; i < inputValue.size(); i++) { in RunModelTest()
68 std::vector<float> data(ADDEND_DATA_SIZE, inputValue[i]); in RunModelTest()
/test/xts/acts/ai/neural_network_runtime/v2_0/common/
H A Dmodel.h46 float inputValue[9] = {0, 1, 2, 3, 4, 5, 6, 7, 8}; member
54 OHNNOperandTest dynamicInput = {OH_NN_FLOAT32, OH_NN_TENSOR, {-1, -1, -1, -1}, inputValue, AVG_INPUT_LENGTH};
/test/xts/acts/ai/neural_network_runtime/v1_0/common/
H A Dmodel.h46 float inputValue[9] = {0, 1, 2, 3, 4, 5, 6, 7, 8}; member
54 OHNNOperandTest dynamicInput = {OH_NN_FLOAT32, OH_NN_TENSOR, {-1, -1, -1, -1}, inputValue, AVG_INPUT_LENGTH};

Completed in 31 milliseconds

123