Skip to content

Commit

Permalink
Revert "[NPUW] Fix DCOFF closure being allocated in the bank"
Browse files Browse the repository at this point in the history
  • Loading branch information
dmatveev authored Oct 9, 2024
1 parent 072caa5 commit 7490f29
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,7 @@ void apply_remap(Subgraph& fcall, const ClosureRemap& m) {
// empty tensors by default.
for (auto&& i : m.closure_remap) {
new_lazy_closure.push_back(fcall._lazy_closure[i]);
// _closure is empty at this stage. To fill it for DCOFF, evaluate _lazy_closure
new_closure.push_back(fcall._lazy_closure[i].eval());
new_closure.push_back(fcall._closure[i]);

auto scale_iter = m.scale_remap.find(i);
auto zerop_iter = m.zerop_remap.find(i);
Expand Down

0 comments on commit 7490f29

Please sign in to comment.