[all-commits] [llvm/llvm-project] aef087: [mlir][Linalg] NFC - Rename Linalg and Vector EDSC...
Nicolas Vasilache via All-commits
all-commits at lists.llvm.org
Thu Apr 2 18:12:06 PDT 2020
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: aef0877b1ba5f14eaeece956aa69df6c208b94de
https://github.com/llvm/llvm-project/commit/aef0877b1ba5f14eaeece956aa69df6c208b94de
Author: Nicolas Vasilache <ntv at google.com>
Date: 2020-04-02 (Thu, 02 Apr 2020)
Changed paths:
M mlir/include/mlir/Dialect/Linalg/EDSC/Builders.h
M mlir/include/mlir/Dialect/Linalg/EDSC/Intrinsics.h
M mlir/include/mlir/Dialect/Vector/EDSC/Builders.h
M mlir/include/mlir/Dialect/Vector/EDSC/Intrinsics.h
M mlir/lib/Dialect/Linalg/EDSC/Builders.cpp
M mlir/lib/Dialect/Vector/EDSC/Builders.cpp
M mlir/test/EDSC/builder-api-test.cpp
Log Message:
-----------
[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.
More information about the All-commits
mailing list