.. _l-onnx-doc-Range: ===== Range ===== .. contents:: :local: .. _l-onnx-op-range-11: Range - 11 ========== **Version** * **name**: `Range (GitHub) `_ * **domain**: **main** * **since_version**: **11** * **function**: True * **support_level**: SupportType.COMMON * **shape inference**: True This version of the operator has been available **since version 11**. **Summary** Generate a tensor containing a sequence of numbers that begin at `start` and extends by increments of `delta` up to `limit` (exclusive). The number of elements in the output of range is computed as below- `number_of_elements = max( ceil( (limit - start) / delta ) , 0 )` The pseudocode determining the contents of the output is shown below- `for(int i=0; i