Searched defs:RangeModel2 (Results 1 – 1 of 1) sorted by relevance
| /test/xts/acts/ai/nncore/opstest/src/ |
| D | range_test.cpp | 45 struct RangeModel2 { struct 46 const std::vector<int32_t> tensor_shape = {1}; 47 std::vector<int64_t> startValue = {1}; 48 std::vector<int64_t> limitValue = {1}; 49 std::vector<int64_t> deltaValue = {4}; 50 int32_t inputValue[1] = {0}; 51 int32_t outputValue[1] = {0}; 53 OHNNOperandTest input = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, inputValue, sizeof(int32_t)}; 54 … OHNNOperandTest output = {OH_NN_INT32, OH_NN_TENSOR, tensor_shape, outputValue, sizeof(int32_t)}; 55 OHNNOperandTest start = {OH_NN_INT64, OH_NN_RANGE_START, {1}, &startValue, sizeof(int64_t)}; [all …]
|