Triton 是一种用于并行编程的语言和编译器。它旨在提供一个基于 Python 的编程环境,以高效编写自定义 DNN 计算内核,并能够在现代 GPU 硬件上以最大吞吐量运行。
更多 Triton 中文文档可访问 →https://triton.hyper.ai/
triton.language.arange(start, end)
返回半开区间 [start, end)
内的连续值。end - start
必须小于等于 TRITON_MAX_TENSOR_NUMEL = 1048576
。
参数**:**
- start (int32) - 区间的起始值。必须是 2 的幂。
- end (int32) - 区间的结束值。必须是大于
start
的 2 的幂。