blob: 2fd0fcf369821c841c6d7c71fa5cf9a648f426b1 [file] [log] [blame]
# Copyright 2021 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
# Tests of end-to-end IREE support for individual ops in the XLA HLO dialect.
# Each test file should have a name matching the corresponding XLA HLO op and test only the
# functionality of that op (though may make use of other ops where necessary). Tests should be
# written using the IREE Check framework and should always pass on the reference VMLA backend.
# See https://github.com/google/iree/blob/main/docs/developers/developing_iree/testing_guide.md#iree-core-end-to-end-tests.
load("//build_tools/bazel:enforce_glob.bzl", "enforce_glob")
load("//iree:lit_test.bzl", "iree_lit_test_suite")
load("//build_tools/bazel:iree_check_test.bzl", "iree_check_single_backend_test_suite")
package(
default_visibility = ["//visibility:public"],
features = ["layering_check"],
licenses = ["notice"], # Apache 2.0
)
iree_lit_test_suite(
name = "lit",
srcs = [
"tensor_cast.mlir",
],
data = [
"//iree/tools:IreeFileCheck",
"//iree/tools:iree-benchmark-module",
"//iree/tools:iree-run-mlir",
"//iree/tools:iree-translate",
],
tags = ["hostonly"],
)
iree_check_single_backend_test_suite(
name = "check_dylib-llvm-aot_dylib",
srcs = enforce_glob(
# keep sorted
[
"extract_slice.mlir",
"tensor_insert_slice.mlir",
],
include = ["*.mlir"],
exclude = [
"tensor_cast.mlir",
],
),
driver = "dylib",
target_backend = "dylib-llvm-aot",
)
iree_check_single_backend_test_suite(
name = "check_cuda",
srcs = enforce_glob(
# keep sorted
[
"extract_slice.mlir",
"tensor_insert_slice.mlir",
],
include = ["*.mlir"],
exclude = [
"tensor_cast.mlir",
],
),
driver = "cuda",
tags = [
"noasan",
"nomsan",
"notsan",
"noubsan",
"requires-gpu-nvidia",
],
target_backend = "cuda",
)
iree_check_single_backend_test_suite(
name = "check_vulkan-spirv_vulkan",
srcs = enforce_glob(
# keep sorted
[
"extract_slice.mlir",
"tensor_insert_slice.mlir",
],
include = ["*.mlir"],
exclude = [
"tensor_cast.mlir",
],
),
driver = "vulkan",
target_backend = "vulkan-spirv",
)