(self, program_cache_key)
| 1369 | self.program_caches[program_cache_key] = program |
| 1370 | |
| 1371 | def _get_pruned_program_cache(self, program_cache_key): |
| 1372 | return self.pruned_program_caches.get(program_cache_key, None) |
| 1373 | |
| 1374 | def _add_pruned_program_cache(self, program_cache_key, program): |
| 1375 | self.pruned_program_caches[program_cache_key] = program |