Skip to content

Commit

Permalink
Merge pull request openvinotoolkit#12 from dmatveev/revert-10-as/npuw…
Browse files Browse the repository at this point in the history
…_fix_closure_in_banks

Revert "[NPUW] Fix DCOFF closure being allocated in the bank"
  • Loading branch information
dmatveev authored Oct 9, 2024
2 parents 072caa5 + 7490f29 commit e63ff4c
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 e63ff4c

Please sign in to comment.