Automated Code Change

PiperOrigin-RevId: 818968250
This commit is contained in:
A. Unique TensorFlower 2025-10-13 20:46:01 -07:00 committed by TensorFlower Gardener
parent 267f1b7fd7
commit ab00f6c182
3 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,7 @@ xla_cc_test(
"//xla/service/gpu/model/experimental:symbolic_expr",
"//xla/tsl/platform:status_matchers",
"//xla/tsl/platform:statusor",
"@com_google_absl//absl/status:status_matchers",
"@com_google_googletest//:gtest_main",
"@llvm-project//mlir:IR",
],
@ -152,6 +153,7 @@ cc_library(
hdrs = ["affine_map_evaluator.h"],
deps = [
"@com_google_absl//absl/log",
"@com_google_absl//absl/log:check",
"@com_google_absl//absl/types:span",
"@llvm-project//llvm:Support",
"@llvm-project//mlir:IR",

View File

@ -17,6 +17,7 @@ limitations under the License.
#include <cstdint>
#include "absl/log/check.h"
#include "absl/log/log.h"
#include "absl/types/span.h"
#include "llvm/Support/MathExtras.h"

View File

@ -19,6 +19,7 @@ limitations under the License.
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "absl/status/status_matchers.h"
#include "mlir/IR/MLIRContext.h"
#include "xla/hlo/analysis/indexing_map.h"
#include "xla/hlo/analysis/indexing_test_utils.h"