Browse Source

fix device memory not free for constexpr

pull/14337/head
chujinjin 5 years ago
parent
commit
5474bf2eba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/pipeline/pynative/pynative_execute.cc

+ 1
- 1
mindspore/ccsrc/pipeline/pynative/pynative_execute.cc View File

@@ -812,8 +812,8 @@ abstract::AbstractBasePtr ForwardExecutor::CheckConstValue(const PrimitivePyPtr
MS_EXCEPTION_IF_NULL(new_abs);
new_abs = new_abs->Broaden(config);
MS_LOG(DEBUG) << "Broaden for " << prim->ToString() << " " << config;
node_abs_map_[id] = new_abs;
}
node_abs_map_[id] = new_abs;
}
return new_abs;
}


Loading…
Cancel
Save