Skip to content

Commit

Permalink
Minor build fix. (#1996)
Browse files Browse the repository at this point in the history
  • Loading branch information
csarofeen committed Sep 27, 2022
1 parent fcf8c09 commit 42ccc52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch/csrc/jit/codegen/cuda/lower_allocation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class AllocationInserter : public kir::ExprMutator {
// info.init_place_before, info.alloc_for_loop, info.alloc_place_before
void fillAllocationInformation(AllocationInformation& info, Expr* expr) {
auto loop_alloc_info =
lower_loop_utils::getAllocInformation(info.buffer, for_loops_);
lower_utils::getAllocInformation(info.buffer, for_loops_);

info.init_for_loop = loop_alloc_info.init_for_loop;
info.alloc_for_loop = loop_alloc_info.alloc_for_loop;
Expand Down

0 comments on commit 42ccc52

Please sign in to comment.