Disable some tests on internal CI
PiperOrigin-RevId: 303784690 Change-Id: I696c3f367fa57816f770552aed8075e26cbf559a
This commit is contained in:
parent
503179f662
commit
be8d751324
@ -8,6 +8,10 @@ glob_lit_tests(
|
||||
":test_utilities",
|
||||
],
|
||||
driver = "@llvm-project//mlir:run_lit.sh",
|
||||
exclude = [
|
||||
"**/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt",
|
||||
"**/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt",
|
||||
],
|
||||
test_file_exts = [
|
||||
"pbtxt",
|
||||
# "py", TODO(b/150304798)
|
||||
|
@ -1116,6 +1116,10 @@ tf_cc_test(
|
||||
name = "compile_mlir_util_test",
|
||||
size = "small",
|
||||
srcs = ["utils/compile_mlir_util_test.cc"],
|
||||
tags = [
|
||||
"manual",
|
||||
"notap",
|
||||
],
|
||||
deps = [
|
||||
":compile_mlir_util",
|
||||
"//tensorflow/compiler/tf2xla:common",
|
||||
|
2
third_party/mlir/BUILD
vendored
2
third_party/mlir/BUILD
vendored
@ -542,6 +542,7 @@ gentbl(
|
||||
td_file = "include/mlir/Dialect/Shape/IR/ShapeOps.td",
|
||||
td_srcs = [
|
||||
":StdOpsTdFiles",
|
||||
"include/mlir/Interfaces/InferTypeOpInterface.td",
|
||||
],
|
||||
)
|
||||
|
||||
@ -560,6 +561,7 @@ cc_library(
|
||||
":CallOpInterfaces",
|
||||
":CommonFolders",
|
||||
":IR",
|
||||
":InferTypeOpInterface",
|
||||
":ShapeOpsIncGen",
|
||||
":SideEffects",
|
||||
":Support",
|
||||
|
26
third_party/mlir/test.BUILD
vendored
26
third_party/mlir/test.BUILD
vendored
@ -48,35 +48,35 @@ gentbl(
|
||||
|
||||
gentbl(
|
||||
name = "TestOpsIncGen",
|
||||
strip_include_prefix = "lib/TestDialect",
|
||||
strip_include_prefix = "lib/Dialect/Test",
|
||||
tbl_outs = [
|
||||
(
|
||||
"-gen-op-decls",
|
||||
"lib/TestDialect/TestOps.h.inc",
|
||||
"lib/Dialect/Test/TestOps.h.inc",
|
||||
),
|
||||
(
|
||||
"-gen-op-defs",
|
||||
"lib/TestDialect/TestOps.cpp.inc",
|
||||
"lib/Dialect/Test/TestOps.cpp.inc",
|
||||
),
|
||||
(
|
||||
"-gen-dialect-decls",
|
||||
"lib/TestDialect/TestOpsDialect.h.inc",
|
||||
"lib/Dialect/Test/TestOpsDialect.h.inc",
|
||||
),
|
||||
(
|
||||
"-gen-enum-decls",
|
||||
"lib/TestDialect/TestOpEnums.h.inc",
|
||||
"lib/Dialect/Test/TestOpEnums.h.inc",
|
||||
),
|
||||
(
|
||||
"-gen-enum-defs",
|
||||
"lib/TestDialect/TestOpEnums.cpp.inc",
|
||||
"lib/Dialect/Test/TestOpEnums.cpp.inc",
|
||||
),
|
||||
(
|
||||
"-gen-rewriters",
|
||||
"lib/TestDialect/TestPatterns.inc",
|
||||
"lib/Dialect/Test/TestPatterns.inc",
|
||||
),
|
||||
],
|
||||
tblgen = "@llvm-project//mlir:mlir-tblgen",
|
||||
td_file = "lib/TestDialect/TestOps.td",
|
||||
td_file = "lib/Dialect/Test/TestOps.td",
|
||||
td_srcs = [
|
||||
"@llvm-project//mlir:OpBaseTdFiles",
|
||||
"@llvm-project//mlir:include/mlir/IR/OpAsmInterface.td",
|
||||
@ -91,15 +91,15 @@ gentbl(
|
||||
cc_library(
|
||||
name = "TestDialect",
|
||||
srcs = [
|
||||
"lib/TestDialect/TestDialect.cpp",
|
||||
"lib/TestDialect/TestPatterns.cpp",
|
||||
"lib/Dialect/Test/TestDialect.cpp",
|
||||
"lib/Dialect/Test/TestPatterns.cpp",
|
||||
],
|
||||
hdrs = [
|
||||
"lib/TestDialect/TestDialect.h",
|
||||
"lib/Dialect/Test/TestDialect.h",
|
||||
],
|
||||
includes = [
|
||||
"lib/DeclarativeTransforms",
|
||||
"lib/TestDialect",
|
||||
"lib/Dialect/Test",
|
||||
],
|
||||
deps = [
|
||||
":TestOpsIncGen",
|
||||
@ -154,7 +154,7 @@ cc_library(
|
||||
"lib/Transforms/*.cpp",
|
||||
]),
|
||||
defines = ["MLIR_CUDA_CONVERSIONS_ENABLED"],
|
||||
includes = ["lib/TestDialect"],
|
||||
includes = ["lib/Dialect/Test"],
|
||||
deps = [
|
||||
":TestDialect",
|
||||
":TestLinalgTransformPatternsIncGen",
|
||||
|
Loading…
x
Reference in New Issue
Block a user