Arrangement# class nvmath.device.Arrangement(a: str, b: str, c: str)[source]# A namedtuple class that encapsulates the three arrangements in matrix allocation. a# The arrangement of two-dimensional array used to store the matrix A. Type: str b# The arrangement of two-dimensional array used to store the matrix B. Type: str c# The arrangement of two-dimensional array used to store the matrix C. Type: str static __new__(_cls, a: str, b: str, c: str)# Create new instance of Arrangement(a, b, c)