Skip to content

Commit

Permalink
Update TorchToStd to TorchtoArith in bazel files too. (#1210)
Browse files Browse the repository at this point in the history
The CI didn't catch the missing rename of TorchToArith until the
merge had happened. This is following up from #1163
  • Loading branch information
Ramana Radhakrishnan authored Aug 10, 2022
1 parent 71c240a commit b8d51a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions utils/bazel/torch-mlir-overlay/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -406,13 +406,13 @@ cc_library(
)

cc_library(
name = "TorchMLIRTorchToStd",
name = "TorchMLIRTorchToArith",
srcs = [
"lib/Conversion/TorchToStd/TorchToStd.cpp",
"lib/Conversion/TorchToArith/TorchToArith.cpp",
"lib/Conversion/PassDetail.h"
],
hdrs = [
"include/torch-mlir/Conversion/TorchToStd/TorchToStd.h"
"include/torch-mlir/Conversion/TorchToArith/TorchToArith.h"
],
strip_include_prefix = "include",
deps = [
Expand Down Expand Up @@ -485,7 +485,7 @@ cc_library(
deps = [
":TorchMLIRTorchToLinalg",
":TorchMLIRTorchToSCF",
":TorchMLIRTorchToStd",
":TorchMLIRTorchToArith",
":TorchMLIRTorchToTosa",
":TorchMLIRTorchToTMTensor",
":TorchMLIRTorchToMhlo"
Expand Down Expand Up @@ -515,7 +515,7 @@ cc_library(
":TorchMLIRTorchConversionDialect",
":TorchMLIRTorchToLinalg",
":TorchMLIRTorchToSCF",
":TorchMLIRTorchToStd",
":TorchMLIRTorchToArith",
":TorchMLIRTorchToTosa",
":TorchMLIRTorchToTMTensor",
":TorchMLIRTorchToMhlo",
Expand Down

0 comments on commit b8d51a7

Please sign in to comment.