We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c84fc6d commit 0d70231Copy full SHA for 0d70231
python/paddle/fluid/executor.py
@@ -261,6 +261,7 @@ def run(self,
261
fetch_var_names = [var.desc.name() for var in fetch_list]
262
program_cache_key = str(feed_var_names + fetch_var_names)
263
program_cache = self.program_caches.get(program_cache_key, None)
264
+ # TODO(qiao): Should check program_cache and program are exactly the same.
265
266
if program_cache is None:
267
program_cache = program.clone()
0 commit comments