[PATCH] D79441: [mlir][rocdl] Fix typo. NFC.
Alex Zinenko via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu May 7 03:21:48 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf649aca9f3a2: [mlir][rocdl] Fix typo. NFC. (authored by whchung, committed by ftynse).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D79441/new/
https://reviews.llvm.org/D79441
Files:
mlir/include/mlir/InitAllTranslations.h
mlir/lib/Target/LLVMIR/ConvertToROCDLIR.cpp
Index: mlir/lib/Target/LLVMIR/ConvertToROCDLIR.cpp
===================================================================
--- mlir/lib/Target/LLVMIR/ConvertToROCDLIR.cpp
+++ mlir/lib/Target/LLVMIR/ConvertToROCDLIR.cpp
@@ -98,7 +98,7 @@
}
namespace mlir {
-void registerToROCLDIRTranslation() {
+void registerToROCDLIRTranslation() {
TranslateFromMLIRRegistration registration(
"mlir-to-rocdlir", [](ModuleOp module, raw_ostream &output) {
auto llvmModule = mlir::translateModuleToROCDLIR(module);
Index: mlir/include/mlir/InitAllTranslations.h
===================================================================
--- mlir/include/mlir/InitAllTranslations.h
+++ mlir/include/mlir/InitAllTranslations.h
@@ -21,7 +21,7 @@
void registerToLLVMIRTranslation();
void registerToSPIRVTranslation();
void registerToNVVMIRTranslation();
-void registerToROCLDIRTranslation();
+void registerToROCDLIRTranslation();
void registerAVX512ToLLVMIRTranslation();
// This function should be called before creating any MLIRContext if one
@@ -34,7 +34,7 @@
registerToLLVMIRTranslation();
registerToSPIRVTranslation();
registerToNVVMIRTranslation();
- registerToROCLDIRTranslation();
+ registerToROCDLIRTranslation();
registerAVX512ToLLVMIRTranslation();
return true;
}();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79441.262584.patch
Type: text/x-patch
Size: 1310 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200507/22c883d6/attachment.bin>
More information about the llvm-commits
mailing list