1from numba.core import types
2
3
4class Dim3(types.Type):
5    """
6    A 3-tuple (x, y, z) representing the position of a block or thread.
7    """
8    def __init__(self):
9        super().__init__(name='Dim3')
10
11
12dim3 = Dim3()
13