mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 03:56:16 +08:00
[mlir][Linalg] NFC - Rename Linalg and Vector EDSCs to avoid collisions
A certain number of EDSCs have a named form (e.g. `linalg.matmul`) and a generic form (e.g. `linalg.generic` with matmul traits). Despite living in different namespaces, using the same name is confusiong in clients. Rename them as `linalg_matmul` and `linalg_generic_matmul` respectively.
This commit is contained in:
@@ -30,7 +30,7 @@ Value mlir::edsc::ops::vector_contraction(
|
||||
ArrayRef<StringRef>{functional::map(toString, iteratorTypes)});
|
||||
}
|
||||
|
||||
Value mlir::edsc::ops::vector_matmul(Value A, Value B, Value C) {
|
||||
Value mlir::edsc::ops::vector_contraction_matmul(Value A, Value B, Value C) {
|
||||
AffineExpr m, n, k;
|
||||
bindDims(ScopedContext::getContext(), m, n, k);
|
||||
return vector_contraction(StructuredIndexed(A, {m, k}),
|
||||
|
||||
Reference in New Issue
Block a user