diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD.bazel b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD.bazel index 6437fef7b1de4..61a98599d31b8 100644 --- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD.bazel +++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/BUILD.bazel @@ -21,6 +21,7 @@ iree_compiler_cc_library( "Patterns.h", ], deps = [ + "//compiler/src/iree/compiler/Dialect/Encoding/IR", "//compiler/src/iree/compiler/Dialect/HAL/IR", "//compiler/src/iree/compiler/Dialect/Stream/Conversion", "//compiler/src/iree/compiler/Dialect/Stream/IR", diff --git a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt index fedd69d3a3742..5bbed7dcf9e0b 100644 --- a/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt +++ b/compiler/src/iree/compiler/Dialect/Stream/Conversion/HALToStream/CMakeLists.txt @@ -24,6 +24,7 @@ iree_cc_library( MLIRIR MLIRTransformUtils MLIRTransforms + iree::compiler::Dialect::Encoding::IR iree::compiler::Dialect::HAL::IR iree::compiler::Dialect::Stream::Conversion iree::compiler::Dialect::Stream::IR diff --git a/tests/e2e/subbyte_types/BUILD.bazel b/tests/e2e/subbyte_types/BUILD.bazel index 716a058012583..8d709c76fc22f 100644 --- a/tests/e2e/subbyte_types/BUILD.bazel +++ b/tests/e2e/subbyte_types/BUILD.bazel @@ -18,18 +18,9 @@ package( licenses = ["notice"], # Apache 2.0 ) -LLVM_SRCS = enforce_glob( - # keep sorted - [ - "subbyte_types.mlir", - ], - include = ["*.mlir"], - exclude = [], -) - iree_check_single_backend_test_suite( name = "check_llvm-cpu_subbyte_emulation", - srcs = LLVM_SRCS, + srcs = ["subbyte_types.mlir"], compiler_flags = [ "--iree-llvmcpu-target-cpu=generic", "--iree-experimental-packed-i1-storage",