diff options
Diffstat (limited to 'mlir/lib/Conversion')
3 files changed, 4 insertions, 4 deletions
diff --git a/mlir/lib/Conversion/GPUToNVVM/LowerGpuOpsToNVVMOps.cpp b/mlir/lib/Conversion/GPUToNVVM/LowerGpuOpsToNVVMOps.cpp index 8145ec4617d..b7b1109b491 100644 --- a/mlir/lib/Conversion/GPUToNVVM/LowerGpuOpsToNVVMOps.cpp +++ b/mlir/lib/Conversion/GPUToNVVM/LowerGpuOpsToNVVMOps.cpp @@ -350,7 +350,7 @@ private: static constexpr int kWarpSize = 32; }; -// A pass that replaces all occurences of GPU device operations with their +// A pass that replaces all occurrences of GPU device operations with their // corresponding NVVM equivalent. // // This pass only handles device code and is not meant to be run on GPU host diff --git a/mlir/lib/Conversion/GPUToROCDL/LowerGpuOpsToROCDLOps.cpp b/mlir/lib/Conversion/GPUToROCDL/LowerGpuOpsToROCDLOps.cpp index 1cff75de2d4..cab62ff457e 100644 --- a/mlir/lib/Conversion/GPUToROCDL/LowerGpuOpsToROCDLOps.cpp +++ b/mlir/lib/Conversion/GPUToROCDL/LowerGpuOpsToROCDLOps.cpp @@ -102,7 +102,7 @@ public: } }; -// A pass that replaces all occurences of GPU device operations with their +// A pass that replaces all occurrences of GPU device operations with their // corresponding ROCDL equivalent. // // This pass only handles device code and is not meant to be run on GPU host diff --git a/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp b/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp index 02d661a4270..c4bf7cdd9f7 100644 --- a/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp +++ b/mlir/lib/Conversion/StandardToLLVM/ConvertStandardToLLVM.cpp @@ -745,7 +745,7 @@ struct CallOpInterfaceLowering : public LLVMLegalizationPattern<CallOpType> { auto newOp = rewriter.create<LLVM::CallOp>(op->getLoc(), packedResult, promoted, op->getAttrs()); - // If < 2 results, packingdid not do anything and we can just return. + // If < 2 results, packing did not do anything and we can just return. if (numResults < 2) { SmallVector<Value *, 4> results(newOp.getResults()); rewriter.replaceOp(op, results); @@ -980,7 +980,7 @@ struct LoadOpLowering : public LoadStoreOpLowering<LoadOp> { } }; -// Store opreation is lowered to obtaining a pointer to the indexed element, +// Store operation is lowered to obtaining a pointer to the indexed element, // and storing the given value to it. struct StoreOpLowering : public LoadStoreOpLowering<StoreOp> { using Base::Base; |