Searched defs:RangeModel1 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | range_test.cpp | 25 struct RangeModel1 { struct 26 const std::vector<int32_t> tensor_shape = {3}; 27 std::vector<int64_t> startValue = {-1}; 28 std::vector<int64_t> limitValue = {10}; 29 std::vector<int64_t> deltaValue = {4}; 30 int32_t inputValue[3] = {0}; 31 int32_t outputValue[3] = {0}; 33 … OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, 3*sizeof(int32_t)}; 34 …OHNNOperandTest output = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, outputValue, 3*sizeof(int32_t)}; 35 OHNNOperandTest start = {OH_NN_INT64, OH_NN_RANGE_START, {1}, &startValue, sizeof(int64_t)}; [all …]
|