Skip to content

Commit

Permalink
Fix if
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnov-alexey committed Oct 3, 2024
1 parent 2ae943e commit 52fc4cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_npu/src/plugin/npuw/lazy_tensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ ov::Tensor LazyTensorImpl::get_orig_tensor() const {
}

bool LazyTensorImpl::has_transformations() const {
if (m_parent) {
if (m_parent == nullptr) {
return false;
}
return true;
Expand Down

0 comments on commit 52fc4cf

Please sign in to comment.