blob: 7fb9c4b789d7b7f0629c5977dd197746b7dfdfcc [file]
# Copyright 2019 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
load("//iree:lit_test.bzl", "iree_lit_test_suite")
load("//build_tools/bazel:enforce_glob.bzl", "enforce_glob")
package(
default_visibility = ["//visibility:public"],
features = ["layering_check"],
licenses = ["notice"], # Apache 2.0
)
iree_lit_test_suite(
name = "lit",
srcs = enforce_glob(
[
"conv1x1_to_matmul.mlir",
"conv2d_to_img2col.mlir",
"convert_linalg_tensor_ops_after.mlir",
"convert_linalg_tensor_ops_before.mlir",
"deduplicate_executables.mlir",
"dispatch_linalg_on_tensors.mlir",
"dispatch_linalg_on_tensors_elementwise.mlir",
"dispatch_linalg_on_tensors_fusion.mlir",
"expand_variable_dynamic_dims.mlir",
"export_benchmark_funcs.mlir",
"form_streams.mlir",
"hoist_unstreamable_ops.mlir",
"inject_dispatch_tracing.mlir",
"insert_constant_clones.mlir",
"interchange_generic_ops.mlir",
"outline_dispatch_regions.mlir",
"outline_large_constants.mlir",
"pad_linalg_ops.mlir",
"pad_tensor_to_tensor.mlir",
"promote_i1_to_i8.mlir",
"promote_tensor_loads.mlir",
"simplify_variable_accesses.mlir",
"strip_and_splat_constant_variables.mlir",
"transformation.mlir",
"verify_input_ir.mlir",
],
include = ["*.mlir"],
),
data = [
"//iree/tools:IreeFileCheck",
"//iree/tools:iree-opt",
],
)