Skip to content
Snippets Groups Projects
Commit a1741f47 authored by Yaman Umuroglu's avatar Yaman Umuroglu
Browse files

[Wrapper] change make_new_valueinfo_name strategy to random

parent f7c47e8e
No related branches found
No related tags found
No related merge requests found
......@@ -243,9 +243,9 @@ class ModelWrapper:
def make_new_valueinfo_name(self):
"""Returns a name that can be used for a new value_info."""
names = self.get_all_tensor_names()
candidate = str(len(names) + 1)
candidate = util.random_string()
while candidate in names:
candidate = str(int(candidate) + 1)
candidate = util.random_string()
return candidate
def make_empty_exec_context(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment