[Mlir-commits] [mlir] e73cb43 - [mlir][xegpu] Remove unused custom pass declaration (#149278)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Fri Jul 18 08:16:50 PDT 2025


Author: Adam Siemieniuk
Date: 2025-07-18T17:16:46+02:00
New Revision: e73cb43b44ddd7aeae7217aa1c9e7f8364a5e6df

URL: https://github.com/llvm/llvm-project/commit/e73cb43b44ddd7aeae7217aa1c9e7f8364a5e6df
DIFF: https://github.com/llvm/llvm-project/commit/e73cb43b44ddd7aeae7217aa1c9e7f8364a5e6df.diff

LOG: [mlir][xegpu] Remove unused custom pass declaration (#149278)

Removes unused declaration for pass creation.
Only the create function auto-generated from tablegen should be used.

Added: 
    

Modified: 
    mlir/include/mlir/Conversion/VectorToXeGPU/VectorToXeGPU.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Conversion/VectorToXeGPU/VectorToXeGPU.h b/mlir/include/mlir/Conversion/VectorToXeGPU/VectorToXeGPU.h
index ac4915901fdec..ff99d7ce96daf 100644
--- a/mlir/include/mlir/Conversion/VectorToXeGPU/VectorToXeGPU.h
+++ b/mlir/include/mlir/Conversion/VectorToXeGPU/VectorToXeGPU.h
@@ -21,9 +21,6 @@ class RewritePatternSet;
 /// Collect a set of patterns to convert from the vector to XeGPU ops.
 void populateVectorToXeGPUConversionPatterns(RewritePatternSet &patterns);
 
-/// Create a pass to convert ops from vector to XeGPU.
-std::unique_ptr<Pass> createConvertVectorToXeGPUPass();
-
 } // namespace mlir
 
 #endif // MLIR_CONVERSION_VECTORTOXEGPU_VECTORTOXEGPU_H


        


More information about the Mlir-commits mailing list