Skip to content

Commit 42ccc52

Browse files
authored
Minor build fix. (#1996)
1 parent fcf8c09 commit 42ccc52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

torch/csrc/jit/codegen/cuda/lower_allocation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class AllocationInserter : public kir::ExprMutator {
5959
// info.init_place_before, info.alloc_for_loop, info.alloc_place_before
6060
void fillAllocationInformation(AllocationInformation& info, Expr* expr) {
6161
auto loop_alloc_info =
62-
lower_loop_utils::getAllocInformation(info.buffer, for_loops_);
62+
lower_utils::getAllocInformation(info.buffer, for_loops_);
6363

6464
info.init_for_loop = loop_alloc_info.init_for_loop;
6565
info.alloc_for_loop = loop_alloc_info.alloc_for_loop;

0 commit comments

Comments
 (0)