Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 672974542
  • Loading branch information
wsmoses committed Oct 1, 2024
1 parent 4334292 commit 156570b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion enzyme/Enzyme/MLIR/Analysis/DataFlowActivityAnalysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ void traverseCallGraph(FunctionOpInterface root,

curr.walk([&](CallOpInterface call) {
auto neighbor = dyn_cast_if_present<FunctionOpInterface>(
call.resolveCallableInTable(symbolTable));
call.resolveCallable(symbolTable));
if (neighbor && !visited.contains(neighbor)) {
frontier.push_back(neighbor);
visited.insert(neighbor);
Expand Down
5 changes: 0 additions & 5 deletions enzyme/test/Integration/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ stdlib_tests = [
"@llvm-project//llvm:lli",
"@llvm-project//llvm:not",
] + glob(["**/*.h"]),
driver = "//test:run_lit",
toolchains = [
"//tools/cpp:cc_flags",
"//tools/cpp:current_cc_toolchain",
],
)
for src in glob(
[
Expand Down
1 change: 0 additions & 1 deletion enzyme/test/MLIR/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ load("@llvm-project//llvm:lit_test.bzl", "lit_test")
[
lit_test(
name = "%s.test" % src,
driver = "//test:run_lit",
srcs = [src],
data = [
"//:enzymemlir-opt",
Expand Down

0 comments on commit 156570b

Please sign in to comment.