Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ iree_compiler_cc_library(
"StripDebugOps.cpp",
"TestConversion.cpp",
"TestFloatRangeAnalysis.cpp",
"TestIntegerDivisibilityAnalysis.cpp",
"VerifyInitializationOrder.cpp",
"VerifyStructuredControlFlow.cpp",
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ iree_cc_library(
"StripDebugOps.cpp"
"TestConversion.cpp"
"TestFloatRangeAnalysis.cpp"
"TestIntegerDivisibilityAnalysis.cpp"
"VerifyInitializationOrder.cpp"
"VerifyStructuredControlFlow.cpp"
DEPS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ createHoistIntoGlobalsPass(const ExprHoistingOptions &options);
#define GEN_PASS_DECL_STRIPDEBUGOPSPASS
#define GEN_PASS_DECL_TESTCONVERSIONPASS
#define GEN_PASS_DECL_TESTFLOATRANGEANALYSISPASS
#define GEN_PASS_DECL_TESTINTEGERDIVISIBILITYANALYSISPASS
#define GEN_PASS_DECL_VERIFYINITIALIZATIONORDERPASS
#define GEN_PASS_DECL_VERIFYSTRUCTUREDCONTROLFLOWPASS
#include "iree/compiler/Dialect/Util/Transforms/Passes.h.inc" // IWYU pragma: keep
Expand Down
10 changes: 0 additions & 10 deletions compiler/src/iree/compiler/Dialect/Util/Transforms/Passes.td
Original file line number Diff line number Diff line change
Expand Up @@ -346,14 +346,4 @@ def TestFloatRangeAnalysisPass : Pass<"iree-util-test-float-range-analysis", "">
}];
}

def TestIntegerDivisibilityAnalysisPass :
Pass<"iree-util-test-integer-divisibility-analysis", ""> {
let summary = "Tests integer divisibility analysis.";
let description = [{
Tests integer divisibility analysis by evaluating any
'iree_unregistered.test_int_divisibility' op and setting the results on an
attribute.
}];
}

#endif // IREE_DIALECT_UTIL_PASSES

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ iree_lit_test_suite(
"strip_debug_ops.mlir",
"test_float_range_analysis.mlir",
"test_float_range_analysis_linalg.mlir",
"test_integer_divisibility_analysis.mlir",
"verify_initialization_order.mlir",
"verify_structured_control_flow.mlir",
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ iree_lit_test_suite(
"strip_debug_ops.mlir"
"test_float_range_analysis.mlir"
"test_float_range_analysis_linalg.mlir"
"test_integer_divisibility_analysis.mlir"
"verify_initialization_order.mlir"
"verify_structured_control_flow.mlir"
TOOLS
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ iree_compiler_cc_library(
"//compiler/src/iree/compiler/Dialect/TensorExt/IR",
"//compiler/src/iree/compiler/Dialect/Util/IR",
"@llvm-project//llvm:Support",
"@llvm-project//mlir:AffineDialect",
"@llvm-project//mlir:ArithDialect",
"@llvm-project//mlir:BufferizationInterfaces",
"@llvm-project//mlir:ControlFlowInterfaces",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ iree_cc_library(
"UtilExternalModels.cpp"
DEPS
LLVMSupport
MLIRAffineDialect
MLIRArithDialect
MLIRControlFlowInterfaces
MLIRGPUDialect
Expand Down
Loading
Loading