| # Copyright 2023 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("//build_tools/bazel:iree_lit_test.bzl", "iree_lit_test_suite") |
| load("//build_tools/bazel:enforce_glob.bzl", "enforce_glob") |
| |
| package( |
| features = ["layering_check"], |
| licenses = ["notice"], # Apache 2.0 |
| ) |
| |
| iree_lit_test_suite( |
| name = "lit", |
| srcs = enforce_glob( |
| [ |
| "conv2d_to_img2col.mlir", |
| "conv_to_channels_last.mlir", |
| "make_single_dispatch_for_function.mlir", |
| "pad_linalg_ops.mlir", |
| "pad_to_intrinsics_mfma.mlir", |
| "pad_to_intrinsics_wmma.mlir", |
| "pdl_example.mlir", |
| "preprocessing_match_ops.mlir", |
| "transform_symbol_importing.mlir", |
| "transpose_matmul.mlir", |
| ], |
| include = ["*.mlir"], |
| exclude = [ |
| "external_function_spec.mlir", |
| "pdl_patterns.mlir", |
| ], |
| ), |
| cfg = "//compiler:lit.cfg.py", |
| data = [ |
| "external_function_spec.mlir", |
| "pdl_patterns.mlir", |
| ], |
| tools = [ |
| "//tools:iree-opt", |
| "@llvm-project//llvm:FileCheck", |
| ], |
| ) |