<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hi,<br class=""><br class="">We updated the proposal to use operators for most operations (with a lot of help from Michael Spencer!).I’ve added the updated section inline and the complete updated proposal can be found at the end of the mail.<br class=""><br class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Jan 18, 2020, at 12:01, Florian Hahn via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" class="">cfe-dev@lists.llvm.org</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="auto" class="" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;"><div dir="ltr" class=""><div dir="ltr" class=""><span class="">Thanks for the feedback! I’ve responded inline.<br class=""></span></div><div dir="ltr" class=""><br class=""><blockquote type="cite" class="">On 16 Jan 2020, at 23:06, Richard Smith <<a href="mailto:richard@metafoo.co.uk" class="">richard@metafoo.co.uk</a>> wrote:<br class=""><br class=""></blockquote></div><blockquote type="cite" class=""><div dir="ltr" class=""><div dir="ltr" class=""><div class="gmail_quote"><div class="">Do you anticipate providing builtin operators for matrices? If not, then the utility of a dedicated type and `matrix_type` attribute seems greatly diminished: the builtin matrix operators could instead -- in principle -- operate on a suitable vector type (either as a flat vector, matching the LLVM IR model, or as a vector of vectors, to support two-dimensional indexing). I think your proposal should express why those would be inferior choices (eg, do matrix types have different calling conventions, alignment requirements, ... on some target? Do you intend to provide matrix x matrix multiplication and matrix x vector multiplication via the * operator in the future?). Adding *only* builtin functions and no new matrix types would be a substantial simplification in the proposal.</div></div></div></div></blockquote><div dir="ltr" class=""><br class=""></div>I think it would make sense to provide builtin operators instead of the proposed builtins for math operations. Same for element insertion/extraction. However I am not sure how to provide the strided matrix load/store as operators. Would it be OK to just have builtins for those? The reason we went for builtins initially was that we thought that might make the proposal a bit more lightweight, but it sounds like builtin operators would be preferred with the type.<br class=""><br class="">I do not think ext_vector_type would be suitable for our proposal, as it matches LLVM’s vector alignment and the matrix type should match the alignment of the underlying data type, to allow easy interaction with existing matrix libraries. </div><div dir="ltr" class=""><br class=""></div><div dir="ltr" class="">A vector of vectors should work in principle, as long as we could fix both dimensions on a type level. Not having the dimensions guaranteed by the type would have a negative impact on the user-experience I think, as we would, for example, loose the ability to type-check if the dimensions match the operators and users would have to provide the dimensions for certain operations. Also, it would make supporting 3+ dimensions a bit more tricky.</div></div></div></blockquote><div><br class=""></div><div><br class=""></div><div><div class="">Below is a proposal for matrix type element access & binary operators:</div><div class=""><br class=""></div><div class=""><b class="">Matrix Type Element Access Operator<br class=""></b><br class="">An expression of the form `<i class="">postfix-expression [expression][expression]</i>` where the <i class="">postfix-expression</i> is of matrix type is a matrix element access expression. <i class="">expression</i> shall not be a comma expression, and shall be a prvalue of unscoped enumeration or integral type. Given the expression E1[E2][E3], the result is an lvalue of the same type as the underlying element type of the matrix that refers to the value at E2 row and E3 column in the matrix. The expression E1 is sequenced before E2 and E3. The expressions E2 and E3 are unsequenced.<br class=""><br class="">Note: We thought about providing an expression of the form  `<i class="">postfix-expression [expression]` </i>to access columns of a matrix. We think that such an expression would be problematic once both column and row major matrixes are supported: depending on the memory layout, either accessing columns or rows can be done efficiently, but not both. Instead, we propose to provide builtins to extract rows and columns from a matrix. This makes the operations more explicit.<br class=""><br class=""><br class=""><b class="">Matrix Type Binary Operators<br class=""></b><br class="">Each matrix type supports the following binary operators: +, -, *, /, and %. The * operator provides matrix multiplication, while +, -, /, and % are performed element-wise. There are also scalar versions of the operators, which take a matrix type and the underlying element type. The operation is applied to all elements of the matrix using the scalar value.<br class=""><br class="">The operands of +, -, *, and / shall have either matrix type, arithmetic or unscoped enumeration type. The operands of % shall have either matrix type with an element type of integral type, integral type or unscoped enumeration type. At least one of the operands shall be of matrix type.<br class=""><br class="">For <i class="">BIN_OP</i> in +, -, *, /, and %, given the expression <i class="">M1 BIN_OP M2 </i>where, for *, one of M1 or M2 is of arithmetic type:<br class=""><br class=""></div><div class="">* The usual arithmetic conversions are applied to M1 and M2. [ Note: if M1 or M2 are of arithmetic type, they are broadcast to matrices here. — end note ]<br class=""><br class="">* The matrix types of M1 and M2 shall have the same number of rows and columns.<br class=""><br class="">* The result is equivalent to Res in the following where col is the number of columns and row is the number of rows in the matrix type:<br class=""><br class="">decltype(M1) Res;<br class="">for (int C = 0; C < col; ++C)<br class="">  for (int R = 0; R < row; ++R)<br class="">    Res[R][C] = M1[R][C] BIN_OP M2[R][C];<br class=""><br class=""><br class="">Given the expression <i class="">M1 * M2</i> where M1 and M2 are of matrix type:<br class=""><br class=""> * The usual arithmetic conversions are applied to M1 and M2<br class=""><br class=""> * The type of M1 shall have the same number of columns as the type of M2 has rows.<br class=""><br class=""> * The resulting type, MTy, is the result of applying the usual arithmetic conversions to M1 and M2, but with the same number of rows as M1’s matrix type and the same number of columns as M2’s matrix type.<br class=""><br class=""> * The result is equivalent to Res in the following where col is the number of columns and row is the number of rows in MTy:</div><div class=""><br class="">MTy Res;<br class="">for (int C = 0; C < col; ++C) {<br class="">  for (int R = 0; R < row; ++R) {<br class="">    EltTy Elt = 0;<br class="">    for (int K = 0; K < inner; ++K) {<br class="">      Elt += M1[R][K] * M2[K][C];<br class="">  }<br class="">  Res[R][C] = Elt;<br class="">}<br class=""><br class=""><br class="">All operations on matrix types match the behavior of the underlying element type with respect to signed overflows.<br class=""><br class="">With respect to rounding errors, the the * operator preserves the behavior of the separate multiply and add operations by default. We propose to provide a Clang option to override this behavior and allow contraction of those operations (e.g. -ffp-contract=matrix).<br class=""><br class=""></div></div><div><br class=""></div><br class=""><blockquote type="cite" class=""><div class=""><div dir="auto" class="" style="caret-color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration: none;"><div dir="ltr" class=""><blockquote type="cite" class=""><div dir="ltr" class=""><div dir="ltr" class=""><div class="gmail_quote"><div class="">Have the Eigen developers indicated they would consider using this if it were available to them?</div><div class="">Have you reached out to the GCC developers to see if they would also be likely to support this extension?</div><div class="">We should be aiming to build critical mass behind this feature so that it gets adopted; it would be a waste of resources if a different technology ends up being adopted in this space and we're left maintaining a system that no-one outside Apple uses.</div></div></div></div></blockquote><div dir="ltr" class=""><br class=""></div>We hoped to get some initial feedback before reaching out, to make sure the proposal is in reasonably good shape. I plan to reach out to them early next week.</div></div></div></blockquote></div><div class=""><br class=""></div>I reached out on the Eigen mailing list and got an encouraging response: <a href="https://listengine.tuxfamily.org/lists.tuxfamily.org/eigen/2020/02/msg00000.html" class="">https://listengine.tuxfamily.org/lists.tuxfamily.org/eigen/2020/02/msg00000.html</a> <div class="">I’ve also added people involved in GCC to the WIP patch adding the type.<br class=""><br class=""></div><div class=""><br class=""></div><div class="">Cheers,</div><div class="">Florian</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><font size="2" class=""><b class="">Draft Specification<br class=""></b></font><br class=""><b class="">Matrix Type Attribute<br class=""></b><br class="">The attribute-token <i class="">matrix_type</i> is used to declare a matrix type. It shall appear at most once in each attribute-list. The attribute shall only appertain to a<i class=""> typedef-name</i> of a typedef of a non-volatile type that is a<i class=""> signed integer type</i>, an <i class="">unsigned integer type</i>, or a <i class="">floating-point type</i>. An <i class="">attribute-argument-clause</i> must be present and it shall have the form:<br class=""><br class="">(constant-expression, constant-expression)<br class=""><br class="">Both constant-expressions shall be a positive non-zero integral constant expressions. The maximum of the product of the constants is implementation defined. If that implementation defined limit is exceeded, the program is ill-formed.<br class=""><br class="">An <i class="">attribute</i> of the form<i class=""> matrix_type(R, C)</i> forms a matrix type with an element type of the cv-qualified type the attribute appertains to and <i class="">R</i> rows and <i class="">C</i> columns.<br class=""><br class="">If a declaration of a <i class="">typedef-name</i> has a <i class="">matrix_type</i> attribute, then all declaration of that <i class="">typedef-name</i> shall have a <i class="">matrix_type</i> attribute with the same element type, number of rows, and number of columns.<br class=""><br class=""><br class=""><b class="">Matrix Type<br class=""></b><br class="">A matrix type has an underlying <i class="">element type</i>, a constant number of rows, and a constant number of columns. Matrix types with the same element type, rows, and columns are the same type. A value of a matrix type contains <i class="">rows * columns</i> values of the element type laid out in column-major order without padding in a way compatible with an array of at least that many elements of the underlying <i class="">element type</i>.<br class=""><br class="">A matrix type is a scalar type with the same alignment as its underlying element type, but objects of matrix type are not usable in constant expressions.<br class=""><br class="">TODO: Allow reinterpret_cast from pointer to element type. Make aliasing work.<br class="">TODO: Does it make sense to allow M::element_type, M::rows, and M::columns where M is a matrix type? We don’t support this anywhere else, but it’s convenient. The alternative is using template deduction to extract this information.<br class="">Future Work: Initialization syntax.<br class="">Future Work: Conversions between matrix types with const qualified and unqualified element types.<br class=""><br class=""><br class=""><b class="">Standard Conversions<br class=""></b><br class="">The standard conversions are extended as follows.<br class=""><br class="">For integral promotions, floating-point promotion, integral conversions, floating-point conversions, and floating-integral conversions: apply the rules to the underlying type of the matrix type. The resulting type is a matrix type with that underlying element type. The resulting value is as follows:<div class=""><br class=""></div><div class=""> * If the original value was of matrix type, each element is converted element by element.<br class=""> * If the original value was not of matrix type, each element takes the value of the original value.<br class=""><br class=""><br class=""><b class="">Arithmetic Conversions<br class=""></b><br class="">The usual arithmetic conversions are extended as follows.<br class=""><br class="">Insert at the start:<br class=""><br class=""> * If either operand is of matrix type, apply the usual arithmetic conversions using its underlying element type. The resulting type is a matrix type with that underlying element type.<br class=""><br class=""><br class=""><b class="">Matrix Type Element Access Operator<br class=""></b><br class="">An expression of the form `<i class="">postfix-expression [expression][expression]</i>` where the <i class="">postfix-expression</i> is of matrix type is a matrix element access expression. <i class="">expression</i> shall not be a comma expression, and shall be a prvalue of unscoped enumeration or integral type. Given the expression E1[E2][E3], the result is an lvalue of the same type as the underlying element type of the matrix that refers to the value at E2 row and E3 column in the matrix. The expression E1 is sequenced before E2 and E3. The expressions E2 and E3 are unsequenced.<br class=""><br class="">Note: We thought about providing an expression of the form  `<i class="">postfix-expression [expression]` </i>to access columns of a matrix. We think that such an expression would be problematic once both column and row major matrixes are supported: depending on the memory layout, either accessing columns or rows can be done efficiently, but not both. Instead, we propose to provide builtins to extract rows and columns from a matrix. This makes the operations more explicit.<br class=""><br class=""><br class=""><b class="">Matrix Type Binary Operators<br class=""></b><br class="">Each matrix type supports the following binary operators: +, -, *, /, and %. The * operator provides matrix multiplication, while +, -, /, and % are performed element-wise. There are also scalar versions of the operators, which take a matrix type and the underlying element type. The operation is applied to all elements of the matrix using the scalar value.<br class=""><br class="">The operands of +, -, *, and / shall have either matrix type, arithmetic or unscoped enumeration type. The operands of % shall have either matrix type with an element type of integral type, integral type or unscoped enumeration type. At least one of the operands shall be of matrix type.<br class=""><br class="">For <i class="">BIN_OP</i> in +, -, *, /, and %, given the expression <i class="">M1 BIN_OP M2 </i>where, for *, one of M1 or M2 is of arithmetic type:<br class=""><br class=""></div><div class="">* The usual arithmetic conversions are applied to M1 and M2. [ Note: if M1 or M2 are of arithmetic type, they are broadcast to matrices here. — end note ]<br class=""><br class="">* The matrix types of M1 and M2 shall have the same number of rows and columns.<br class=""><br class="">* The result is equivalent to Res in the following where col is the number of columns and row is the number of rows in the matrix type:<br class=""><br class="">decltype(M1) Res;<br class="">for (int C = 0; C < col; ++C)<br class="">  for (int R = 0; R < row; ++R)<br class="">    Res[R][C] = M1[R][C] BIN_OP M2[R][C];<br class=""><br class=""><br class="">Given the expression <i class="">M1 * M2</i> where M1 and M2 are of matrix type:<br class=""><br class=""> * The usual arithmetic conversions are applied to M1 and M2<br class=""><br class=""> * The type of M1 shall have the same number of columns as the type of M2 has rows.<br class=""><br class=""> * The resulting type, MTy, is the result of applying the usual arithmetic conversions to M1 and M2, but with the same number of rows as M1’s matrix type and the same number of columns as M2’s matrix type.<br class=""><br class=""> * The result is equivalent to Res in the following where col is the number of columns and row is the number of rows in MTy:</div><div class=""><br class="">MTy Res;<br class="">for (int C = 0; C < col; ++C) {<br class="">  for (int R = 0; R < row; ++R) {<br class="">    EltTy Elt = 0;<br class="">    for (int K = 0; K < inner; ++K) {<br class="">      Elt += M1[R][K] * M2[K][C];<br class="">  }<br class="">  Res[R][C] = Elt;<br class="">}<br class=""><br class=""><br class="">All operations on matrix types match the behavior of the underlying element type with respect to signed overflows.<br class=""><br class="">With respect to rounding errors, the the * operator preserves the behavior of the separate multiply and add operations by default. We propose to provide a Clang option to override this behavior and allow contraction of those operations (e.g. -ffp-contract=matrix).<br class=""><br class=""><br class=""><b class="">Matrix Type Builtin Operations<br class=""></b><br class="">Each matrix type supports a collection of builtin expressions that look like function calls but do not form an overload set. Here they are described as function declarations with rules for how to construct the argument list types and return type and the library description elements from [library.description.structure.specifications]/3 in the C++ standard. <br class=""><br class="">Definitions:<br class=""><br class=""><i class=""> * M, M1, M2, M3</i> - Matrix types<br class=""><br class=""> * <i class="">T</i> - Element type<br class=""><br class=""> *<i class=""> row, col</i> - Row and column arguments respectively.<br class=""><br class=""><br class=""><br class=""><i class="">M2 __builtin_matrix_transpose(M1 matrix)<br class=""></i><br class="">Remarks: The return type is a cv-unqualified matrix type that has the same element type as M1 and has the the same number of rows as M1 has columns and the same number of columns as M1 has rows.<br class=""><br class="">Returns: A matrix Res equivalent to the code below, where col refers to the number of columns of M, and row to the number of rows of M.<br class=""><br class="">M Res;<br class="">for (int C = 0; C < col; ++C)<br class="">  for (int R = 0; R < row; ++R)<br class="">    Res[C][R] = matrix[R][C];<br class=""><br class=""><br class=""><br class=""><i class="">M __builtin_matrix_column_load(T *ptr, int row, int col, int stride)<br class=""></i><br class="">Mandates: row and col shall be integral constants greater than 0. <br class=""><br class="">Preconditions: stride >= row.<br class=""><br class="">Remarks: The return type is a cv-unqualified matrix type with an element type of the cv-unqualified version of T and a number of rows and columns equal to row and col respectively.<br class=""><br class="">Returns: A matrix Res equivalent to:<br class=""><br class="">M Res;<br class="">for (int C = 0; C < col; ++C) {<br class="">  for (int R = 0; R < row; ++K)<br class="">    Res[R][C] = ptr[R];<br class="">  ptr += stride<br class=""><br class="">}<br class=""><br class=""><br class=""><br class=""><i class="">void __builtin_matrix_column_store(M matrix, T *ptr, int stride)<br class=""></i><br class="">Preconditions: stride is greater than or equal to the number of rows in M.<br class=""><br class=""><div class="">Effects: Equivalent to:</div><div class=""><br class="">for (int C = 0; C < columns in M; ++C) {<br class="">  for (int R = 0; R < rows in M; ++K)<br class="">    ptr[R] = matrix[R][C];<br class="">  ptr += stride<br class="">}</div><div class=""><br class="">Remarks: The type T is the const-unqualified version of the matrix argument’s element type.<br class=""><br class=""><br class=""><b class="">Example</b> <br class=""><br class="">This code performs a matrix-multiply of two 4x4 matrices followed by an matrix addition:<br class=""><br class="">typedef float m4x4_t __attribute__((matrix_type(4, 4)));<br class=""><br class="">void f(m4x4_t *a, m4x4_t *b, m4x4_t *c, m4x4_t *r) {<br class="">  *r = *a +  (*b * *c);<br class="">}<div class=""><br class=""><br class="">This will get lowered by Clang to the LLVM IR below. In our current implementation, we use LLVM’s array type as storage type for the matrix data. Before accessing the data, we cast the array to a vector type. This allows us to use the element width as alignment, without running into issues with LLVM’s large default alignment for vector types, which is problematic in structs.<br class=""><br class="">define void @f([16 x float]* %a, [16 x float]* %b, [16 x float]* %c, [16 x float]* %r) #0 {<br class="">entry:<br class="">  %a.addr = alloca [16 x float]*, align 8<br class="">  %b.addr = alloca [16 x float]*, align 8<br class="">  %c.addr = alloca [16 x float]*, align 8<br class="">  %r.addr = alloca [16 x float]*, align 8<br class="">  store [16 x float]* %a, [16 x float]** %a.addr, align 8<br class="">  store [16 x float]* %b, [16 x float]** %b.addr, align 8<br class="">  store [16 x float]* %c, [16 x float]** %c.addr, align 8<br class="">  store [16 x float]* %r, [16 x float]** %r.addr, align 8<br class="">  %0 = load [16 x float]*, [16 x float]** %a.addr, align 8<br class="">  %1 = bitcast [16 x float]* %0 to <16 x float>*<br class="">  %2 = load <16 x float>, <16 x float>* %1, align 4<br class="">  %3 = load [16 x float]*, [16 x float]** %b.addr, align 8<br class="">  %4 = bitcast [16 x float]* %3 to <16 x float>*<br class="">  %5 = load <16 x float>, <16 x float>* %4, align 4<br class="">  %6 = call <16 x float> @llvm.matrix.multiply.v16f32.v16f32.v16f32(<16 x float> %2, <16 x float> %5, i32 4, i32 4, i32 4)<br class="">  %7 = load [16 x float]*, [16 x float]** %c.addr, align 8<br class="">  %8 = bitcast [16 x float]* %7 to <16 x float>*<br class="">  %9 = load <16 x float>, <16 x float>* %8, align 4<br class="">  %10 = fadd <16 x float> %6, %9<br class="">  %11 = load [16 x float]*, [16 x float]** %r.addr, align 8<br class="">  %12 = bitcast [16 x float]* %11 to <16 x float>*<br class="">  store <16 x float> %10, <16 x float>* %12, align 4<br class=""><br class="">  ret void<br class=""><br class="">}<br class=""><br class="">; Function Attrs: nounwind readnone speculatable willreturn<br class=""><br class="">declare <16 x float> @llvm.matrix.multiply.v16f32.v16f32.v16f32(<16 x float>, <16 x float>, i32 immarg, i32 immarg, i32 immarg)<br class=""><br class=""></div></div></div></div></body></html>